| 67 | } |
| 68 | |
| 69 | av_cold void ff_slice_thread_free(AVCodecContext *avctx) |
| 70 | { |
| 71 | SliceThreadContext *c = avctx->internal->thread_ctx; |
| 72 | |
| 73 | avpriv_slicethread_free(&c->thread); |
| 74 | |
| 75 | av_freep(&avctx->internal->thread_ctx); |
| 76 | } |
| 77 | |
| 78 | static int thread_execute(AVCodecContext *avctx, action_func* func, void *arg, int *ret, int job_count, int job_size) |
| 79 | { |
no test coverage detected