| 90 | } |
| 91 | |
| 92 | void ff_slice_buffer_flush(slice_buffer *buf) |
| 93 | { |
| 94 | int i; |
| 95 | |
| 96 | if (!buf->line) |
| 97 | return; |
| 98 | |
| 99 | for (i = 0; i < buf->line_count; i++) |
| 100 | if (buf->line[i]) |
| 101 | ff_slice_buffer_release(buf, i); |
| 102 | } |
| 103 | |
| 104 | void ff_slice_buffer_destroy(slice_buffer *buf) |
| 105 | { |
no test coverage detected