| 82 | } |
| 83 | |
| 84 | av_cold void ff_thread_free(AVCodecContext *avctx) |
| 85 | { |
| 86 | if (avctx->active_thread_type&FF_THREAD_FRAME) |
| 87 | ff_frame_thread_free(avctx, avctx->thread_count); |
| 88 | else |
| 89 | ff_slice_thread_free(avctx); |
| 90 | } |
| 91 | |
| 92 | av_cold void ff_pthread_free(void *obj, const unsigned offsets[]) |
| 93 | { |
no test coverage detected