| 70 | } |
| 71 | |
| 72 | void ff_slice_buffer_flush(slice_buffer * buf) |
| 73 | { |
| 74 | int i; |
| 75 | for(i = 0; i < buf->line_count; i++){ |
| 76 | if (buf->line[i]) |
| 77 | ff_slice_buffer_release(buf, i); |
| 78 | } |
| 79 | } |
| 80 | |
| 81 | void ff_slice_buffer_destroy(slice_buffer * buf) |
| 82 | { |
no test coverage detected