]> git.sesse.net Git - ffmpeg/blob - libavcodec/pthread.c
atrac1: give a valid context pointer to av_log().
[ffmpeg] / libavcodec / pthread.c
1 /*
2  * Copyright (c) 2004 Roman Shaposhnik
3  * Copyright (c) 2008 Alexander Strange (astrange@ithinksw.com)
4  *
5  * Many thanks to Steven M. Schultz for providing clever ideas and
6  * to Michael Niedermayer <michaelni@gmx.at> for writing initial
7  * implementation.
8  *
9  * This file is part of FFmpeg.
10  *
11  * FFmpeg is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU Lesser General Public
13  * License as published by the Free Software Foundation; either
14  * version 2.1 of the License, or (at your option) any later version.
15  *
16  * FFmpeg is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19  * Lesser General Public License for more details.
20  *
21  * You should have received a copy of the GNU Lesser General Public
22  * License along with FFmpeg; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
24  */
25
26 /**
27  * @file
28  * Multithreading support functions
29  * @see doc/multithreading.txt
30  */
31
32 #include <pthread.h>
33
34 #include "avcodec.h"
35 #include "internal.h"
36 #include "thread.h"
37
38 typedef int (action_func)(AVCodecContext *c, void *arg);
39 typedef int (action_func2)(AVCodecContext *c, void *arg, int jobnr, int threadnr);
40
41 typedef struct ThreadContext {
42     pthread_t *workers;
43     action_func *func;
44     action_func2 *func2;
45     void *args;
46     int *rets;
47     int rets_count;
48     int job_count;
49     int job_size;
50
51     pthread_cond_t last_job_cond;
52     pthread_cond_t current_job_cond;
53     pthread_mutex_t current_job_lock;
54     int current_job;
55     int done;
56 } ThreadContext;
57
58 /// Max number of frame buffers that can be allocated when using frame threads.
59 #define MAX_BUFFERS (32+1)
60
61 /**
62  * Context used by codec threads and stored in their AVCodecContext thread_opaque.
63  */
64 typedef struct PerThreadContext {
65     struct FrameThreadContext *parent;
66
67     pthread_t      thread;
68     pthread_cond_t input_cond;      ///< Used to wait for a new packet from the main thread.
69     pthread_cond_t progress_cond;   ///< Used by child threads to wait for progress to change.
70     pthread_cond_t output_cond;     ///< Used by the main thread to wait for frames to finish.
71
72     pthread_mutex_t mutex;          ///< Mutex used to protect the contents of the PerThreadContext.
73     pthread_mutex_t progress_mutex; ///< Mutex used to protect frame progress values and progress_cond.
74
75     AVCodecContext *avctx;          ///< Context used to decode packets passed to this thread.
76
77     AVPacket       avpkt;           ///< Input packet (for decoding) or output (for encoding).
78     int            allocated_buf_size; ///< Size allocated for avpkt.data
79
80     AVFrame frame;                  ///< Output frame (for decoding) or input (for encoding).
81     int     got_frame;              ///< The output of got_picture_ptr from the last avcodec_decode_video() call.
82     int     result;                 ///< The result of the last codec decode/encode() call.
83
84     enum {
85         STATE_INPUT_READY,          ///< Set when the thread is awaiting a packet.
86         STATE_SETTING_UP,           ///< Set before the codec has called ff_thread_finish_setup().
87         STATE_GET_BUFFER,           /**<
88                                      * Set when the codec calls get_buffer().
89                                      * State is returned to STATE_SETTING_UP afterwards.
90                                      */
91         STATE_SETUP_FINISHED        ///< Set after the codec has called ff_thread_finish_setup().
92     } state;
93
94     /**
95      * Array of frames passed to ff_thread_release_buffer().
96      * Frames are released after all threads referencing them are finished.
97      */
98     AVFrame released_buffers[MAX_BUFFERS];
99     int     num_released_buffers;
100
101     /**
102      * Array of progress values used by ff_thread_get_buffer().
103      */
104     int     progress[MAX_BUFFERS][2];
105     uint8_t progress_used[MAX_BUFFERS];
106
107     AVFrame *requested_frame;       ///< AVFrame the codec passed to get_buffer()
108 } PerThreadContext;
109
110 /**
111  * Context stored in the client AVCodecContext thread_opaque.
112  */
113 typedef struct FrameThreadContext {
114     PerThreadContext *threads;     ///< The contexts for each thread.
115     PerThreadContext *prev_thread; ///< The last thread submit_packet() was called on.
116
117     pthread_mutex_t buffer_mutex;  ///< Mutex used to protect get/release_buffer().
118
119     int next_decoding;             ///< The next context to submit a packet to.
120     int next_finished;             ///< The next context to return output from.
121
122     int delaying;                  /**<
123                                     * Set for the first N packets, where N is the number of threads.
124                                     * While it is set, ff_thread_en/decode_frame won't return any results.
125                                     */
126
127     int die;                       ///< Set when threads should exit.
128 } FrameThreadContext;
129
130 static void* attribute_align_arg worker(void *v)
131 {
132     AVCodecContext *avctx = v;
133     ThreadContext *c = avctx->thread_opaque;
134     int our_job = c->job_count;
135     int thread_count = avctx->thread_count;
136     int self_id;
137
138     pthread_mutex_lock(&c->current_job_lock);
139     self_id = c->current_job++;
140     for (;;){
141         while (our_job >= c->job_count) {
142             if (c->current_job == thread_count + c->job_count)
143                 pthread_cond_signal(&c->last_job_cond);
144
145             pthread_cond_wait(&c->current_job_cond, &c->current_job_lock);
146             our_job = self_id;
147
148             if (c->done) {
149                 pthread_mutex_unlock(&c->current_job_lock);
150                 return NULL;
151             }
152         }
153         pthread_mutex_unlock(&c->current_job_lock);
154
155         c->rets[our_job%c->rets_count] = c->func ? c->func(avctx, (char*)c->args + our_job*c->job_size):
156                                                    c->func2(avctx, c->args, our_job, self_id);
157
158         pthread_mutex_lock(&c->current_job_lock);
159         our_job = c->current_job++;
160     }
161 }
162
163 static av_always_inline void avcodec_thread_park_workers(ThreadContext *c, int thread_count)
164 {
165     pthread_cond_wait(&c->last_job_cond, &c->current_job_lock);
166     pthread_mutex_unlock(&c->current_job_lock);
167 }
168
169 static void thread_free(AVCodecContext *avctx)
170 {
171     ThreadContext *c = avctx->thread_opaque;
172     int i;
173
174     pthread_mutex_lock(&c->current_job_lock);
175     c->done = 1;
176     pthread_cond_broadcast(&c->current_job_cond);
177     pthread_mutex_unlock(&c->current_job_lock);
178
179     for (i=0; i<avctx->thread_count; i++)
180          pthread_join(c->workers[i], NULL);
181
182     pthread_mutex_destroy(&c->current_job_lock);
183     pthread_cond_destroy(&c->current_job_cond);
184     pthread_cond_destroy(&c->last_job_cond);
185     av_free(c->workers);
186     av_freep(&avctx->thread_opaque);
187 }
188
189 static int avcodec_thread_execute(AVCodecContext *avctx, action_func* func, void *arg, int *ret, int job_count, int job_size)
190 {
191     ThreadContext *c= avctx->thread_opaque;
192     int dummy_ret;
193
194     if (!(avctx->active_thread_type&FF_THREAD_SLICE) || avctx->thread_count <= 1)
195         return avcodec_default_execute(avctx, func, arg, ret, job_count, job_size);
196
197     if (job_count <= 0)
198         return 0;
199
200     pthread_mutex_lock(&c->current_job_lock);
201
202     c->current_job = avctx->thread_count;
203     c->job_count = job_count;
204     c->job_size = job_size;
205     c->args = arg;
206     c->func = func;
207     if (ret) {
208         c->rets = ret;
209         c->rets_count = job_count;
210     } else {
211         c->rets = &dummy_ret;
212         c->rets_count = 1;
213     }
214     pthread_cond_broadcast(&c->current_job_cond);
215
216     avcodec_thread_park_workers(c, avctx->thread_count);
217
218     return 0;
219 }
220
221 static int avcodec_thread_execute2(AVCodecContext *avctx, action_func2* func2, void *arg, int *ret, int job_count)
222 {
223     ThreadContext *c= avctx->thread_opaque;
224     c->func2 = func2;
225     return avcodec_thread_execute(avctx, NULL, arg, ret, job_count, 0);
226 }
227
228 static int thread_init(AVCodecContext *avctx)
229 {
230     int i;
231     ThreadContext *c;
232     int thread_count = avctx->thread_count;
233
234     if (thread_count <= 1)
235         return 0;
236
237     c = av_mallocz(sizeof(ThreadContext));
238     if (!c)
239         return -1;
240
241     c->workers = av_mallocz(sizeof(pthread_t)*thread_count);
242     if (!c->workers) {
243         av_free(c);
244         return -1;
245     }
246
247     avctx->thread_opaque = c;
248     c->current_job = 0;
249     c->job_count = 0;
250     c->job_size = 0;
251     c->done = 0;
252     pthread_cond_init(&c->current_job_cond, NULL);
253     pthread_cond_init(&c->last_job_cond, NULL);
254     pthread_mutex_init(&c->current_job_lock, NULL);
255     pthread_mutex_lock(&c->current_job_lock);
256     for (i=0; i<thread_count; i++) {
257         if(pthread_create(&c->workers[i], NULL, worker, avctx)) {
258            avctx->thread_count = i;
259            pthread_mutex_unlock(&c->current_job_lock);
260            ff_thread_free(avctx);
261            return -1;
262         }
263     }
264
265     avcodec_thread_park_workers(c, thread_count);
266
267     avctx->execute = avcodec_thread_execute;
268     avctx->execute2 = avcodec_thread_execute2;
269     return 0;
270 }
271
272 /**
273  * Codec worker thread.
274  *
275  * Automatically calls ff_thread_finish_setup() if the codec does
276  * not provide an update_thread_context method, or if the codec returns
277  * before calling it.
278  */
279 static attribute_align_arg void *frame_worker_thread(void *arg)
280 {
281     PerThreadContext *p = arg;
282     FrameThreadContext *fctx = p->parent;
283     AVCodecContext *avctx = p->avctx;
284     AVCodec *codec = avctx->codec;
285
286     while (1) {
287         if (p->state == STATE_INPUT_READY && !fctx->die) {
288             pthread_mutex_lock(&p->mutex);
289             while (p->state == STATE_INPUT_READY && !fctx->die)
290                 pthread_cond_wait(&p->input_cond, &p->mutex);
291             pthread_mutex_unlock(&p->mutex);
292         }
293
294         if (fctx->die) break;
295
296         if (!codec->update_thread_context && avctx->thread_safe_callbacks)
297             ff_thread_finish_setup(avctx);
298
299         pthread_mutex_lock(&p->mutex);
300         avcodec_get_frame_defaults(&p->frame);
301         p->got_frame = 0;
302         p->result = codec->decode(avctx, &p->frame, &p->got_frame, &p->avpkt);
303
304         if (p->state == STATE_SETTING_UP) ff_thread_finish_setup(avctx);
305
306         p->state = STATE_INPUT_READY;
307
308         pthread_mutex_lock(&p->progress_mutex);
309         pthread_cond_signal(&p->output_cond);
310         pthread_mutex_unlock(&p->progress_mutex);
311
312         pthread_mutex_unlock(&p->mutex);
313     }
314
315     return NULL;
316 }
317
318 /**
319  * Updates the next thread's AVCodecContext with values from the reference thread's context.
320  *
321  * @param dst The destination context.
322  * @param src The source context.
323  * @param for_user 0 if the destination is a codec thread, 1 if the destination is the user's thread
324  */
325 static int update_context_from_thread(AVCodecContext *dst, AVCodecContext *src, int for_user)
326 {
327     int err = 0;
328
329     if (dst != src) {
330         dst->sub_id    = src->sub_id;
331         dst->time_base = src->time_base;
332         dst->width     = src->width;
333         dst->height    = src->height;
334         dst->pix_fmt   = src->pix_fmt;
335
336         dst->has_b_frames = src->has_b_frames;
337         dst->idct_algo    = src->idct_algo;
338         dst->slice_count  = src->slice_count;
339
340         dst->bits_per_coded_sample = src->bits_per_coded_sample;
341         dst->sample_aspect_ratio   = src->sample_aspect_ratio;
342         dst->dtg_active_format     = src->dtg_active_format;
343
344         dst->profile = src->profile;
345         dst->level   = src->level;
346
347         dst->bits_per_raw_sample = src->bits_per_raw_sample;
348         dst->ticks_per_frame     = src->ticks_per_frame;
349         dst->color_primaries     = src->color_primaries;
350
351         dst->color_trc   = src->color_trc;
352         dst->colorspace  = src->colorspace;
353         dst->color_range = src->color_range;
354         dst->chroma_sample_location = src->chroma_sample_location;
355     }
356
357     if (for_user) {
358         dst->coded_frame   = src->coded_frame;
359         dst->has_b_frames += src->thread_count - 1;
360     } else {
361         if (dst->codec->update_thread_context)
362             err = dst->codec->update_thread_context(dst, src);
363     }
364
365     return err;
366 }
367
368 /**
369  * Update the next thread's AVCodecContext with values set by the user.
370  *
371  * @param dst The destination context.
372  * @param src The source context.
373  */
374 static void update_context_from_user(AVCodecContext *dst, AVCodecContext *src)
375 {
376 #define copy_fields(s, e) memcpy(&dst->s, &src->s, (char*)&dst->e - (char*)&dst->s);
377     dst->flags          = src->flags;
378
379     dst->draw_horiz_band= src->draw_horiz_band;
380     dst->get_buffer     = src->get_buffer;
381     dst->release_buffer = src->release_buffer;
382
383     dst->opaque   = src->opaque;
384     dst->dsp_mask = src->dsp_mask;
385     dst->debug    = src->debug;
386     dst->debug_mv = src->debug_mv;
387
388     dst->slice_flags = src->slice_flags;
389     dst->flags2      = src->flags2;
390
391     copy_fields(skip_loop_filter, bidir_refine);
392
393     dst->frame_number     = src->frame_number;
394     dst->reordered_opaque = src->reordered_opaque;
395 #undef copy_fields
396 }
397
398 static void free_progress(AVFrame *f)
399 {
400     PerThreadContext *p = f->owner->thread_opaque;
401     int *progress = f->thread_opaque;
402
403     p->progress_used[(progress - p->progress[0]) / 2] = 0;
404 }
405
406 /// Releases the buffers that this decoding thread was the last user of.
407 static void release_delayed_buffers(PerThreadContext *p)
408 {
409     FrameThreadContext *fctx = p->parent;
410
411     while (p->num_released_buffers > 0) {
412         AVFrame *f;
413
414         pthread_mutex_lock(&fctx->buffer_mutex);
415         f = &p->released_buffers[--p->num_released_buffers];
416         free_progress(f);
417         f->thread_opaque = NULL;
418
419         f->owner->release_buffer(f->owner, f);
420         pthread_mutex_unlock(&fctx->buffer_mutex);
421     }
422 }
423
424 static int submit_packet(PerThreadContext *p, AVPacket *avpkt)
425 {
426     FrameThreadContext *fctx = p->parent;
427     PerThreadContext *prev_thread = fctx->prev_thread;
428     AVCodec *codec = p->avctx->codec;
429     uint8_t *buf = p->avpkt.data;
430
431     if (!avpkt->size && !(codec->capabilities & CODEC_CAP_DELAY)) return 0;
432
433     pthread_mutex_lock(&p->mutex);
434
435     release_delayed_buffers(p);
436
437     if (prev_thread) {
438         int err;
439         if (prev_thread->state == STATE_SETTING_UP) {
440             pthread_mutex_lock(&prev_thread->progress_mutex);
441             while (prev_thread->state == STATE_SETTING_UP)
442                 pthread_cond_wait(&prev_thread->progress_cond, &prev_thread->progress_mutex);
443             pthread_mutex_unlock(&prev_thread->progress_mutex);
444         }
445
446         err = update_context_from_thread(p->avctx, prev_thread->avctx, 0);
447         if (err) {
448             pthread_mutex_unlock(&p->mutex);
449             return err;
450         }
451     }
452
453     av_fast_malloc(&buf, &p->allocated_buf_size, avpkt->size + FF_INPUT_BUFFER_PADDING_SIZE);
454     p->avpkt = *avpkt;
455     p->avpkt.data = buf;
456     memcpy(buf, avpkt->data, avpkt->size);
457     memset(buf + avpkt->size, 0, FF_INPUT_BUFFER_PADDING_SIZE);
458
459     p->state = STATE_SETTING_UP;
460     pthread_cond_signal(&p->input_cond);
461     pthread_mutex_unlock(&p->mutex);
462
463     /*
464      * If the client doesn't have a thread-safe get_buffer(),
465      * then decoding threads call back to the main thread,
466      * and it calls back to the client here.
467      */
468
469     if (!p->avctx->thread_safe_callbacks &&
470          p->avctx->get_buffer != avcodec_default_get_buffer) {
471         while (p->state != STATE_SETUP_FINISHED && p->state != STATE_INPUT_READY) {
472             pthread_mutex_lock(&p->progress_mutex);
473             while (p->state == STATE_SETTING_UP)
474                 pthread_cond_wait(&p->progress_cond, &p->progress_mutex);
475
476             if (p->state == STATE_GET_BUFFER) {
477                 p->result = p->avctx->get_buffer(p->avctx, p->requested_frame);
478                 p->state  = STATE_SETTING_UP;
479                 pthread_cond_signal(&p->progress_cond);
480             }
481             pthread_mutex_unlock(&p->progress_mutex);
482         }
483     }
484
485     fctx->prev_thread = p;
486
487     return 0;
488 }
489
490 int ff_thread_decode_frame(AVCodecContext *avctx,
491                            AVFrame *picture, int *got_picture_ptr,
492                            AVPacket *avpkt)
493 {
494     FrameThreadContext *fctx = avctx->thread_opaque;
495     int finished = fctx->next_finished;
496     PerThreadContext *p;
497     int err;
498
499     /*
500      * Submit a packet to the next decoding thread.
501      */
502
503     p = &fctx->threads[fctx->next_decoding];
504     update_context_from_user(p->avctx, avctx);
505     err = submit_packet(p, avpkt);
506     if (err) return err;
507
508     fctx->next_decoding++;
509
510     /*
511      * If we're still receiving the initial packets, don't return a frame.
512      */
513
514     if (fctx->delaying && avpkt->size) {
515         if (fctx->next_decoding >= (avctx->thread_count-1)) fctx->delaying = 0;
516
517         *got_picture_ptr=0;
518         return 0;
519     }
520
521     /*
522      * Return the next available frame from the oldest thread.
523      * If we're at the end of the stream, then we have to skip threads that
524      * didn't output a frame, because we don't want to accidentally signal
525      * EOF (avpkt->size == 0 && *got_picture_ptr == 0).
526      */
527
528     do {
529         p = &fctx->threads[finished++];
530
531         if (p->state != STATE_INPUT_READY) {
532             pthread_mutex_lock(&p->progress_mutex);
533             while (p->state != STATE_INPUT_READY)
534                 pthread_cond_wait(&p->output_cond, &p->progress_mutex);
535             pthread_mutex_unlock(&p->progress_mutex);
536         }
537
538         *picture = p->frame;
539         *got_picture_ptr = p->got_frame;
540         picture->pkt_dts = p->avpkt.dts;
541
542         /*
543          * A later call with avkpt->size == 0 may loop over all threads,
544          * including this one, searching for a frame to return before being
545          * stopped by the "finished != fctx->next_finished" condition.
546          * Make sure we don't mistakenly return the same frame again.
547          */
548         p->got_frame = 0;
549
550         if (finished >= avctx->thread_count) finished = 0;
551     } while (!avpkt->size && !*got_picture_ptr && finished != fctx->next_finished);
552
553     update_context_from_thread(avctx, p->avctx, 1);
554
555     if (fctx->next_decoding >= avctx->thread_count) fctx->next_decoding = 0;
556
557     fctx->next_finished = finished;
558
559     return p->result;
560 }
561
562 void ff_thread_report_progress(AVFrame *f, int n, int field)
563 {
564     PerThreadContext *p;
565     int *progress = f->thread_opaque;
566
567     if (!progress || progress[field] >= n) return;
568
569     p = f->owner->thread_opaque;
570
571     if (f->owner->debug&FF_DEBUG_THREADS)
572         av_log(f->owner, AV_LOG_DEBUG, "%p finished %d field %d\n", progress, n, field);
573
574     pthread_mutex_lock(&p->progress_mutex);
575     progress[field] = n;
576     pthread_cond_broadcast(&p->progress_cond);
577     pthread_mutex_unlock(&p->progress_mutex);
578 }
579
580 void ff_thread_await_progress(AVFrame *f, int n, int field)
581 {
582     PerThreadContext *p;
583     int *progress = f->thread_opaque;
584
585     if (!progress || progress[field] >= n) return;
586
587     p = f->owner->thread_opaque;
588
589     if (f->owner->debug&FF_DEBUG_THREADS)
590         av_log(f->owner, AV_LOG_DEBUG, "thread awaiting %d field %d from %p\n", n, field, progress);
591
592     pthread_mutex_lock(&p->progress_mutex);
593     while (progress[field] < n)
594         pthread_cond_wait(&p->progress_cond, &p->progress_mutex);
595     pthread_mutex_unlock(&p->progress_mutex);
596 }
597
598 void ff_thread_finish_setup(AVCodecContext *avctx) {
599     PerThreadContext *p = avctx->thread_opaque;
600
601     if (!(avctx->active_thread_type&FF_THREAD_FRAME)) return;
602
603     if(p->state == STATE_SETUP_FINISHED){
604         av_log(avctx, AV_LOG_WARNING, "Multiple ff_thread_finish_setup() calls\n");
605     }
606
607     pthread_mutex_lock(&p->progress_mutex);
608     p->state = STATE_SETUP_FINISHED;
609     pthread_cond_broadcast(&p->progress_cond);
610     pthread_mutex_unlock(&p->progress_mutex);
611 }
612
613 /// Waits for all threads to finish.
614 static void park_frame_worker_threads(FrameThreadContext *fctx, int thread_count)
615 {
616     int i;
617
618     for (i = 0; i < thread_count; i++) {
619         PerThreadContext *p = &fctx->threads[i];
620
621         if (p->state != STATE_INPUT_READY) {
622             pthread_mutex_lock(&p->progress_mutex);
623             while (p->state != STATE_INPUT_READY)
624                 pthread_cond_wait(&p->output_cond, &p->progress_mutex);
625             pthread_mutex_unlock(&p->progress_mutex);
626         }
627     }
628 }
629
630 static void frame_thread_free(AVCodecContext *avctx, int thread_count)
631 {
632     FrameThreadContext *fctx = avctx->thread_opaque;
633     AVCodec *codec = avctx->codec;
634     int i;
635
636     park_frame_worker_threads(fctx, thread_count);
637
638     if (fctx->prev_thread)
639         update_context_from_thread(fctx->threads->avctx, fctx->prev_thread->avctx, 0);
640
641     fctx->die = 1;
642
643     for (i = 0; i < thread_count; i++) {
644         PerThreadContext *p = &fctx->threads[i];
645
646         pthread_mutex_lock(&p->mutex);
647         pthread_cond_signal(&p->input_cond);
648         pthread_mutex_unlock(&p->mutex);
649
650         pthread_join(p->thread, NULL);
651
652         if (codec->close)
653             codec->close(p->avctx);
654
655         avctx->codec = NULL;
656
657         release_delayed_buffers(p);
658     }
659
660     for (i = 0; i < thread_count; i++) {
661         PerThreadContext *p = &fctx->threads[i];
662
663         avcodec_default_free_buffers(p->avctx);
664
665         pthread_mutex_destroy(&p->mutex);
666         pthread_mutex_destroy(&p->progress_mutex);
667         pthread_cond_destroy(&p->input_cond);
668         pthread_cond_destroy(&p->progress_cond);
669         pthread_cond_destroy(&p->output_cond);
670         av_freep(&p->avpkt.data);
671
672         if (i)
673             av_freep(&p->avctx->priv_data);
674
675         av_freep(&p->avctx);
676     }
677
678     av_freep(&fctx->threads);
679     pthread_mutex_destroy(&fctx->buffer_mutex);
680     av_freep(&avctx->thread_opaque);
681 }
682
683 static int frame_thread_init(AVCodecContext *avctx)
684 {
685     int thread_count = avctx->thread_count;
686     AVCodec *codec = avctx->codec;
687     AVCodecContext *src = avctx;
688     FrameThreadContext *fctx;
689     int i, err = 0;
690
691     if (thread_count <= 1) {
692         avctx->active_thread_type = 0;
693         return 0;
694     }
695
696     avctx->thread_opaque = fctx = av_mallocz(sizeof(FrameThreadContext));
697
698     fctx->threads = av_mallocz(sizeof(PerThreadContext) * thread_count);
699     pthread_mutex_init(&fctx->buffer_mutex, NULL);
700     fctx->delaying = 1;
701
702     for (i = 0; i < thread_count; i++) {
703         AVCodecContext *copy = av_malloc(sizeof(AVCodecContext));
704         PerThreadContext *p  = &fctx->threads[i];
705
706         pthread_mutex_init(&p->mutex, NULL);
707         pthread_mutex_init(&p->progress_mutex, NULL);
708         pthread_cond_init(&p->input_cond, NULL);
709         pthread_cond_init(&p->progress_cond, NULL);
710         pthread_cond_init(&p->output_cond, NULL);
711
712         p->parent = fctx;
713         p->avctx  = copy;
714
715         *copy = *src;
716         copy->thread_opaque = p;
717         copy->pkt = &p->avpkt;
718
719         if (!i) {
720             src = copy;
721
722             if (codec->init)
723                 err = codec->init(copy);
724
725             update_context_from_thread(avctx, copy, 1);
726         } else {
727             copy->is_copy   = 1;
728             copy->priv_data = av_malloc(codec->priv_data_size);
729             memcpy(copy->priv_data, src->priv_data, codec->priv_data_size);
730
731             if (codec->init_thread_copy)
732                 err = codec->init_thread_copy(copy);
733         }
734
735         if (err) goto error;
736
737         pthread_create(&p->thread, NULL, frame_worker_thread, p);
738     }
739
740     return 0;
741
742 error:
743     frame_thread_free(avctx, i+1);
744
745     return err;
746 }
747
748 void ff_thread_flush(AVCodecContext *avctx)
749 {
750     FrameThreadContext *fctx = avctx->thread_opaque;
751
752     if (!avctx->thread_opaque) return;
753
754     park_frame_worker_threads(fctx, avctx->thread_count);
755     if (fctx->prev_thread) {
756         if (fctx->prev_thread != &fctx->threads[0])
757             update_context_from_thread(fctx->threads[0].avctx, fctx->prev_thread->avctx, 0);
758         if (avctx->codec->flush)
759             avctx->codec->flush(fctx->threads[0].avctx);
760     }
761
762     fctx->next_decoding = fctx->next_finished = 0;
763     fctx->delaying = 1;
764     fctx->prev_thread = NULL;
765 }
766
767 static int *allocate_progress(PerThreadContext *p)
768 {
769     int i;
770
771     for (i = 0; i < MAX_BUFFERS; i++)
772         if (!p->progress_used[i]) break;
773
774     if (i == MAX_BUFFERS) {
775         av_log(p->avctx, AV_LOG_ERROR, "allocate_progress() overflow\n");
776         return NULL;
777     }
778
779     p->progress_used[i] = 1;
780
781     return p->progress[i];
782 }
783
784 int ff_thread_get_buffer(AVCodecContext *avctx, AVFrame *f)
785 {
786     PerThreadContext *p = avctx->thread_opaque;
787     int *progress, err;
788
789     f->owner = avctx;
790
791     ff_init_buffer_info(avctx, f);
792
793     if (!(avctx->active_thread_type&FF_THREAD_FRAME)) {
794         f->thread_opaque = NULL;
795         return avctx->get_buffer(avctx, f);
796     }
797
798     if (p->state != STATE_SETTING_UP &&
799         (avctx->codec->update_thread_context || !avctx->thread_safe_callbacks)) {
800         av_log(avctx, AV_LOG_ERROR, "get_buffer() cannot be called after ff_thread_finish_setup()\n");
801         return -1;
802     }
803
804     pthread_mutex_lock(&p->parent->buffer_mutex);
805     f->thread_opaque = progress = allocate_progress(p);
806
807     if (!progress) {
808         pthread_mutex_unlock(&p->parent->buffer_mutex);
809         return -1;
810     }
811
812     progress[0] =
813     progress[1] = -1;
814
815     if (avctx->thread_safe_callbacks ||
816         avctx->get_buffer == avcodec_default_get_buffer) {
817         err = avctx->get_buffer(avctx, f);
818     } else {
819         p->requested_frame = f;
820         p->state = STATE_GET_BUFFER;
821         pthread_mutex_lock(&p->progress_mutex);
822         pthread_cond_signal(&p->progress_cond);
823
824         while (p->state != STATE_SETTING_UP)
825             pthread_cond_wait(&p->progress_cond, &p->progress_mutex);
826
827         err = p->result;
828
829         pthread_mutex_unlock(&p->progress_mutex);
830
831         if (!avctx->codec->update_thread_context)
832             ff_thread_finish_setup(avctx);
833     }
834
835     pthread_mutex_unlock(&p->parent->buffer_mutex);
836
837     /*
838      * Buffer age is difficult to keep track of between
839      * multiple threads, and the optimizations it allows
840      * are not worth the effort. It is disabled for now.
841      */
842     f->age = INT_MAX;
843
844     return err;
845 }
846
847 void ff_thread_release_buffer(AVCodecContext *avctx, AVFrame *f)
848 {
849     PerThreadContext *p = avctx->thread_opaque;
850     FrameThreadContext *fctx;
851
852     if (!(avctx->active_thread_type&FF_THREAD_FRAME)) {
853         avctx->release_buffer(avctx, f);
854         return;
855     }
856
857     if (p->num_released_buffers >= MAX_BUFFERS) {
858         av_log(p->avctx, AV_LOG_ERROR, "too many thread_release_buffer calls!\n");
859         return;
860     }
861
862     if(avctx->debug & FF_DEBUG_BUFFERS)
863         av_log(avctx, AV_LOG_DEBUG, "thread_release_buffer called on pic %p, %d buffers used\n",
864                                     f, f->owner->internal_buffer_count);
865
866     fctx = p->parent;
867     pthread_mutex_lock(&fctx->buffer_mutex);
868     p->released_buffers[p->num_released_buffers++] = *f;
869     pthread_mutex_unlock(&fctx->buffer_mutex);
870     memset(f->data, 0, sizeof(f->data));
871 }
872
873 /**
874  * Set the threading algorithms used.
875  *
876  * Threading requires more than one thread.
877  * Frame threading requires entire frames to be passed to the codec,
878  * and introduces extra decoding delay, so is incompatible with low_delay.
879  *
880  * @param avctx The context.
881  */
882 static void validate_thread_parameters(AVCodecContext *avctx)
883 {
884     int frame_threading_supported = (avctx->codec->capabilities & CODEC_CAP_FRAME_THREADS)
885                                 && !(avctx->flags & CODEC_FLAG_TRUNCATED)
886                                 && !(avctx->flags & CODEC_FLAG_LOW_DELAY)
887                                 && !(avctx->flags2 & CODEC_FLAG2_CHUNKS);
888     if (avctx->thread_count == 1) {
889         avctx->active_thread_type = 0;
890     } else if (frame_threading_supported && (avctx->thread_type & FF_THREAD_FRAME)) {
891         avctx->active_thread_type = FF_THREAD_FRAME;
892     } else if (avctx->codec->capabilities & CODEC_CAP_SLICE_THREADS &&
893                avctx->thread_type & FF_THREAD_SLICE) {
894         avctx->active_thread_type = FF_THREAD_SLICE;
895     }
896 }
897
898 int ff_thread_init(AVCodecContext *avctx)
899 {
900     if (avctx->thread_opaque) {
901         av_log(avctx, AV_LOG_ERROR, "avcodec_thread_init is ignored after avcodec_open\n");
902         return -1;
903     }
904
905     if (avctx->codec) {
906         validate_thread_parameters(avctx);
907
908         if (avctx->active_thread_type&FF_THREAD_SLICE)
909             return thread_init(avctx);
910         else if (avctx->active_thread_type&FF_THREAD_FRAME)
911             return frame_thread_init(avctx);
912     }
913
914     return 0;
915 }
916
917 void ff_thread_free(AVCodecContext *avctx)
918 {
919     if (avctx->active_thread_type&FF_THREAD_FRAME)
920         frame_thread_free(avctx, avctx->thread_count);
921     else
922         thread_free(avctx);
923 }