| 134 | } |
| 135 | |
| 136 | static int avcodec_thread_execute2(AVCodecContext *avctx, action_func2* func2, void *arg, int *ret, int job_count) |
| 137 | { |
| 138 | ThreadContext *c= avctx->thread_opaque; |
| 139 | c->func2 = func2; |
| 140 | return avcodec_thread_execute(avctx, NULL, arg, ret, job_count, 0); |
| 141 | } |
| 142 | |
| 143 | int avcodec_thread_init(AVCodecContext *avctx, int thread_count) |
| 144 | { |
nothing calls this directly
no test coverage detected