]> git.sesse.net Git - ffmpeg/blob - libavcodec/pthread.c
aacenc: Fix bug in writing libavcodec_ident.
[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 "config.h"
33
34 #if HAVE_SCHED_GETAFFINITY
35 #define _GNU_SOURCE
36 #include <sched.h>
37 #endif
38 #if HAVE_GETPROCESSAFFINITYMASK
39 #include <windows.h>
40 #endif
41 #if HAVE_SYSCTL
42 #if HAVE_SYS_PARAM_H
43 #include <sys/param.h>
44 #endif
45 #include <sys/types.h>
46 #include <sys/param.h>
47 #include <sys/sysctl.h>
48 #endif
49 #if HAVE_SYSCONF
50 #include <unistd.h>
51 #endif
52
53 #include "avcodec.h"
54 #include "internal.h"
55 #include "thread.h"
56
57 #if HAVE_PTHREADS
58 #include <pthread.h>
59 #elif HAVE_W32THREADS
60 #include "w32pthreads.h"
61 #elif HAVE_OS2THREADS
62 #include "os2threads.h"
63 #endif
64
65 typedef int (action_func)(AVCodecContext *c, void *arg);
66 typedef int (action_func2)(AVCodecContext *c, void *arg, int jobnr, int threadnr);
67
68 typedef struct ThreadContext {
69     pthread_t *workers;
70     action_func *func;
71     action_func2 *func2;
72     void *args;
73     int *rets;
74     int rets_count;
75     int job_count;
76     int job_size;
77
78     pthread_cond_t last_job_cond;
79     pthread_cond_t current_job_cond;
80     pthread_mutex_t current_job_lock;
81     int current_job;
82     int done;
83 } ThreadContext;
84
85 /// Max number of frame buffers that can be allocated when using frame threads.
86 #define MAX_BUFFERS (32+1)
87
88 /**
89  * Context used by codec threads and stored in their AVCodecContext thread_opaque.
90  */
91 typedef struct PerThreadContext {
92     struct FrameThreadContext *parent;
93
94     pthread_t      thread;
95     int            thread_init;
96     pthread_cond_t input_cond;      ///< Used to wait for a new packet from the main thread.
97     pthread_cond_t progress_cond;   ///< Used by child threads to wait for progress to change.
98     pthread_cond_t output_cond;     ///< Used by the main thread to wait for frames to finish.
99
100     pthread_mutex_t mutex;          ///< Mutex used to protect the contents of the PerThreadContext.
101     pthread_mutex_t progress_mutex; ///< Mutex used to protect frame progress values and progress_cond.
102
103     AVCodecContext *avctx;          ///< Context used to decode packets passed to this thread.
104
105     AVPacket       avpkt;           ///< Input packet (for decoding) or output (for encoding).
106     int            allocated_buf_size; ///< Size allocated for avpkt.data
107
108     AVFrame frame;                  ///< Output frame (for decoding) or input (for encoding).
109     int     got_frame;              ///< The output of got_picture_ptr from the last avcodec_decode_video() call.
110     int     result;                 ///< The result of the last codec decode/encode() call.
111
112     enum {
113         STATE_INPUT_READY,          ///< Set when the thread is awaiting a packet.
114         STATE_SETTING_UP,           ///< Set before the codec has called ff_thread_finish_setup().
115         STATE_GET_BUFFER,           /**<
116                                      * Set when the codec calls get_buffer().
117                                      * State is returned to STATE_SETTING_UP afterwards.
118                                      */
119         STATE_SETUP_FINISHED        ///< Set after the codec has called ff_thread_finish_setup().
120     } state;
121
122     /**
123      * Array of frames passed to ff_thread_release_buffer().
124      * Frames are released after all threads referencing them are finished.
125      */
126     AVFrame released_buffers[MAX_BUFFERS];
127     int     num_released_buffers;
128
129     /**
130      * Array of progress values used by ff_thread_get_buffer().
131      */
132     int     progress[MAX_BUFFERS][2];
133     uint8_t progress_used[MAX_BUFFERS];
134
135     AVFrame *requested_frame;       ///< AVFrame the codec passed to get_buffer()
136 } PerThreadContext;
137
138 /**
139  * Context stored in the client AVCodecContext thread_opaque.
140  */
141 typedef struct FrameThreadContext {
142     PerThreadContext *threads;     ///< The contexts for each thread.
143     PerThreadContext *prev_thread; ///< The last thread submit_packet() was called on.
144
145     pthread_mutex_t buffer_mutex;  ///< Mutex used to protect get/release_buffer().
146
147     int next_decoding;             ///< The next context to submit a packet to.
148     int next_finished;             ///< The next context to return output from.
149
150     int delaying;                  /**<
151                                     * Set for the first N packets, where N is the number of threads.
152                                     * While it is set, ff_thread_en/decode_frame won't return any results.
153                                     */
154
155     int die;                       ///< Set when threads should exit.
156 } FrameThreadContext;
157
158
159 /* H264 slice threading seems to be buggy with more than 16 threads,
160  * limit the number of threads to 16 for automatic detection */
161 #define MAX_AUTO_THREADS 16
162
163 static int get_logical_cpus(AVCodecContext *avctx)
164 {
165     int ret, nb_cpus = 1;
166 #if HAVE_SCHED_GETAFFINITY && defined(CPU_COUNT)
167     cpu_set_t cpuset;
168
169     CPU_ZERO(&cpuset);
170
171     ret = sched_getaffinity(0, sizeof(cpuset), &cpuset);
172     if (!ret) {
173         nb_cpus = CPU_COUNT(&cpuset);
174     }
175 #elif HAVE_GETPROCESSAFFINITYMASK
176     DWORD_PTR proc_aff, sys_aff;
177     ret = GetProcessAffinityMask(GetCurrentProcess(), &proc_aff, &sys_aff);
178     if (ret)
179         nb_cpus = av_popcount64(proc_aff);
180 #elif HAVE_SYSCTL && defined(HW_NCPU)
181     int mib[2] = { CTL_HW, HW_NCPU };
182     size_t len = sizeof(nb_cpus);
183
184     ret = sysctl(mib, 2, &nb_cpus, &len, NULL, 0);
185     if (ret == -1)
186         nb_cpus = 0;
187 #elif HAVE_SYSCONF && defined(_SC_NPROC_ONLN)
188     nb_cpus = sysconf(_SC_NPROC_ONLN);
189 #elif HAVE_SYSCONF && defined(_SC_NPROCESSORS_ONLN)
190     nb_cpus = sysconf(_SC_NPROCESSORS_ONLN);
191 #endif
192     av_log(avctx, AV_LOG_DEBUG, "detected %d logical cores\n", nb_cpus);
193
194     if  (avctx->height)
195         nb_cpus = FFMIN(nb_cpus, (avctx->height+15)/16);
196
197     return nb_cpus;
198 }
199
200
201 static void* attribute_align_arg worker(void *v)
202 {
203     AVCodecContext *avctx = v;
204     ThreadContext *c = avctx->thread_opaque;
205     int our_job = c->job_count;
206     int thread_count = avctx->thread_count;
207     int self_id;
208
209     pthread_mutex_lock(&c->current_job_lock);
210     self_id = c->current_job++;
211     for (;;){
212         while (our_job >= c->job_count) {
213             if (c->current_job == thread_count + c->job_count)
214                 pthread_cond_signal(&c->last_job_cond);
215
216             pthread_cond_wait(&c->current_job_cond, &c->current_job_lock);
217             our_job = self_id;
218
219             if (c->done) {
220                 pthread_mutex_unlock(&c->current_job_lock);
221                 return NULL;
222             }
223         }
224         pthread_mutex_unlock(&c->current_job_lock);
225
226         c->rets[our_job%c->rets_count] = c->func ? c->func(avctx, (char*)c->args + our_job*c->job_size):
227                                                    c->func2(avctx, c->args, our_job, self_id);
228
229         pthread_mutex_lock(&c->current_job_lock);
230         our_job = c->current_job++;
231     }
232 }
233
234 static av_always_inline void avcodec_thread_park_workers(ThreadContext *c, int thread_count)
235 {
236     pthread_cond_wait(&c->last_job_cond, &c->current_job_lock);
237     pthread_mutex_unlock(&c->current_job_lock);
238 }
239
240 static void thread_free(AVCodecContext *avctx)
241 {
242     ThreadContext *c = avctx->thread_opaque;
243     int i;
244
245     pthread_mutex_lock(&c->current_job_lock);
246     c->done = 1;
247     pthread_cond_broadcast(&c->current_job_cond);
248     pthread_mutex_unlock(&c->current_job_lock);
249
250     for (i=0; i<avctx->thread_count; i++)
251          pthread_join(c->workers[i], NULL);
252
253     pthread_mutex_destroy(&c->current_job_lock);
254     pthread_cond_destroy(&c->current_job_cond);
255     pthread_cond_destroy(&c->last_job_cond);
256     av_free(c->workers);
257     av_freep(&avctx->thread_opaque);
258 }
259
260 static int avcodec_thread_execute(AVCodecContext *avctx, action_func* func, void *arg, int *ret, int job_count, int job_size)
261 {
262     ThreadContext *c= avctx->thread_opaque;
263     int dummy_ret;
264
265     if (!(avctx->active_thread_type&FF_THREAD_SLICE) || avctx->thread_count <= 1)
266         return avcodec_default_execute(avctx, func, arg, ret, job_count, job_size);
267
268     if (job_count <= 0)
269         return 0;
270
271     pthread_mutex_lock(&c->current_job_lock);
272
273     c->current_job = avctx->thread_count;
274     c->job_count = job_count;
275     c->job_size = job_size;
276     c->args = arg;
277     c->func = func;
278     if (ret) {
279         c->rets = ret;
280         c->rets_count = job_count;
281     } else {
282         c->rets = &dummy_ret;
283         c->rets_count = 1;
284     }
285     pthread_cond_broadcast(&c->current_job_cond);
286
287     avcodec_thread_park_workers(c, avctx->thread_count);
288
289     return 0;
290 }
291
292 static int avcodec_thread_execute2(AVCodecContext *avctx, action_func2* func2, void *arg, int *ret, int job_count)
293 {
294     ThreadContext *c= avctx->thread_opaque;
295     c->func2 = func2;
296     return avcodec_thread_execute(avctx, NULL, arg, ret, job_count, 0);
297 }
298
299 static int thread_init(AVCodecContext *avctx)
300 {
301     int i;
302     ThreadContext *c;
303     int thread_count = avctx->thread_count;
304
305     if (!thread_count) {
306         int nb_cpus = get_logical_cpus(avctx);
307         // use number of cores + 1 as thread count if there is more than one
308         if (nb_cpus > 1)
309             thread_count = avctx->thread_count = FFMIN(nb_cpus + 1, MAX_AUTO_THREADS);
310         else
311             thread_count = avctx->thread_count = 1;
312     }
313
314     if (thread_count <= 1) {
315         avctx->active_thread_type = 0;
316         return 0;
317     }
318
319     c = av_mallocz(sizeof(ThreadContext));
320     if (!c)
321         return -1;
322
323     c->workers = av_mallocz(sizeof(pthread_t)*thread_count);
324     if (!c->workers) {
325         av_free(c);
326         return -1;
327     }
328
329     avctx->thread_opaque = c;
330     c->current_job = 0;
331     c->job_count = 0;
332     c->job_size = 0;
333     c->done = 0;
334     pthread_cond_init(&c->current_job_cond, NULL);
335     pthread_cond_init(&c->last_job_cond, NULL);
336     pthread_mutex_init(&c->current_job_lock, NULL);
337     pthread_mutex_lock(&c->current_job_lock);
338     for (i=0; i<thread_count; i++) {
339         if(pthread_create(&c->workers[i], NULL, worker, avctx)) {
340            avctx->thread_count = i;
341            pthread_mutex_unlock(&c->current_job_lock);
342            ff_thread_free(avctx);
343            return -1;
344         }
345     }
346
347     avcodec_thread_park_workers(c, thread_count);
348
349     avctx->execute = avcodec_thread_execute;
350     avctx->execute2 = avcodec_thread_execute2;
351     return 0;
352 }
353
354 /**
355  * Codec worker thread.
356  *
357  * Automatically calls ff_thread_finish_setup() if the codec does
358  * not provide an update_thread_context method, or if the codec returns
359  * before calling it.
360  */
361 static attribute_align_arg void *frame_worker_thread(void *arg)
362 {
363     PerThreadContext *p = arg;
364     FrameThreadContext *fctx = p->parent;
365     AVCodecContext *avctx = p->avctx;
366     AVCodec *codec = avctx->codec;
367
368     while (1) {
369         if (p->state == STATE_INPUT_READY && !fctx->die) {
370             pthread_mutex_lock(&p->mutex);
371             while (p->state == STATE_INPUT_READY && !fctx->die)
372                 pthread_cond_wait(&p->input_cond, &p->mutex);
373             pthread_mutex_unlock(&p->mutex);
374         }
375
376         if (fctx->die) break;
377
378         if (!codec->update_thread_context && (avctx->thread_safe_callbacks || avctx->get_buffer == avcodec_default_get_buffer))
379             ff_thread_finish_setup(avctx);
380
381         pthread_mutex_lock(&p->mutex);
382         avcodec_get_frame_defaults(&p->frame);
383         p->got_frame = 0;
384         p->result = codec->decode(avctx, &p->frame, &p->got_frame, &p->avpkt);
385
386         if (p->state == STATE_SETTING_UP) ff_thread_finish_setup(avctx);
387
388         p->state = STATE_INPUT_READY;
389
390         pthread_mutex_lock(&p->progress_mutex);
391         pthread_cond_signal(&p->output_cond);
392         pthread_mutex_unlock(&p->progress_mutex);
393
394         pthread_mutex_unlock(&p->mutex);
395     }
396
397     return NULL;
398 }
399
400 /**
401  * Update the next thread's AVCodecContext with values from the reference thread's context.
402  *
403  * @param dst The destination context.
404  * @param src The source context.
405  * @param for_user 0 if the destination is a codec thread, 1 if the destination is the user's thread
406  */
407 static int update_context_from_thread(AVCodecContext *dst, AVCodecContext *src, int for_user)
408 {
409     int err = 0;
410
411     if (dst != src) {
412         dst->sub_id    = src->sub_id;
413         dst->time_base = src->time_base;
414         dst->width     = src->width;
415         dst->height    = src->height;
416         dst->pix_fmt   = src->pix_fmt;
417
418         dst->coded_width  = src->coded_width;
419         dst->coded_height = src->coded_height;
420
421         dst->has_b_frames = src->has_b_frames;
422         dst->idct_algo    = src->idct_algo;
423
424         dst->bits_per_coded_sample = src->bits_per_coded_sample;
425         dst->sample_aspect_ratio   = src->sample_aspect_ratio;
426         dst->dtg_active_format     = src->dtg_active_format;
427
428         dst->profile = src->profile;
429         dst->level   = src->level;
430
431         dst->bits_per_raw_sample = src->bits_per_raw_sample;
432         dst->ticks_per_frame     = src->ticks_per_frame;
433         dst->color_primaries     = src->color_primaries;
434
435         dst->color_trc   = src->color_trc;
436         dst->colorspace  = src->colorspace;
437         dst->color_range = src->color_range;
438         dst->chroma_sample_location = src->chroma_sample_location;
439     }
440
441     if (for_user) {
442         dst->delay       = src->thread_count - 1;
443         dst->coded_frame = src->coded_frame;
444     } else {
445         if (dst->codec->update_thread_context)
446             err = dst->codec->update_thread_context(dst, src);
447     }
448
449     return err;
450 }
451
452 /**
453  * Update the next thread's AVCodecContext with values set by the user.
454  *
455  * @param dst The destination context.
456  * @param src The source context.
457  * @return 0 on success, negative error code on failure
458  */
459 static int update_context_from_user(AVCodecContext *dst, AVCodecContext *src)
460 {
461 #define copy_fields(s, e) memcpy(&dst->s, &src->s, (char*)&dst->e - (char*)&dst->s);
462     dst->flags          = src->flags;
463
464     dst->draw_horiz_band= src->draw_horiz_band;
465     dst->get_buffer     = src->get_buffer;
466     dst->release_buffer = src->release_buffer;
467
468     dst->opaque   = src->opaque;
469     dst->dsp_mask = src->dsp_mask;
470     dst->debug    = src->debug;
471     dst->debug_mv = src->debug_mv;
472
473     dst->slice_flags = src->slice_flags;
474     dst->flags2      = src->flags2;
475
476     copy_fields(skip_loop_filter, bidir_refine);
477
478     dst->frame_number     = src->frame_number;
479     dst->reordered_opaque = src->reordered_opaque;
480     dst->thread_safe_callbacks = src->thread_safe_callbacks;
481
482     if (src->slice_count && src->slice_offset) {
483         if (dst->slice_count < src->slice_count) {
484             int *tmp = av_realloc(dst->slice_offset, src->slice_count *
485                                   sizeof(*dst->slice_offset));
486             if (!tmp) {
487                 av_free(dst->slice_offset);
488                 return AVERROR(ENOMEM);
489             }
490             dst->slice_offset = tmp;
491         }
492         memcpy(dst->slice_offset, src->slice_offset,
493                src->slice_count * sizeof(*dst->slice_offset));
494     }
495     dst->slice_count = src->slice_count;
496     return 0;
497 #undef copy_fields
498 }
499
500 static void free_progress(AVFrame *f)
501 {
502     PerThreadContext *p = f->owner->thread_opaque;
503     int *progress = f->thread_opaque;
504
505     p->progress_used[(progress - p->progress[0]) / 2] = 0;
506 }
507
508 /// Releases the buffers that this decoding thread was the last user of.
509 static void release_delayed_buffers(PerThreadContext *p)
510 {
511     FrameThreadContext *fctx = p->parent;
512
513     while (p->num_released_buffers > 0) {
514         AVFrame *f;
515
516         pthread_mutex_lock(&fctx->buffer_mutex);
517         f = &p->released_buffers[--p->num_released_buffers];
518         free_progress(f);
519         f->thread_opaque = NULL;
520
521         f->owner->release_buffer(f->owner, f);
522         pthread_mutex_unlock(&fctx->buffer_mutex);
523     }
524 }
525
526 static int submit_packet(PerThreadContext *p, AVPacket *avpkt)
527 {
528     FrameThreadContext *fctx = p->parent;
529     PerThreadContext *prev_thread = fctx->prev_thread;
530     AVCodec *codec = p->avctx->codec;
531     uint8_t *buf = p->avpkt.data;
532
533     if (!avpkt->size && !(codec->capabilities & CODEC_CAP_DELAY)) return 0;
534
535     pthread_mutex_lock(&p->mutex);
536
537     release_delayed_buffers(p);
538
539     if (prev_thread) {
540         int err;
541         if (prev_thread->state == STATE_SETTING_UP) {
542             pthread_mutex_lock(&prev_thread->progress_mutex);
543             while (prev_thread->state == STATE_SETTING_UP)
544                 pthread_cond_wait(&prev_thread->progress_cond, &prev_thread->progress_mutex);
545             pthread_mutex_unlock(&prev_thread->progress_mutex);
546         }
547
548         err = update_context_from_thread(p->avctx, prev_thread->avctx, 0);
549         if (err) {
550             pthread_mutex_unlock(&p->mutex);
551             return err;
552         }
553     }
554
555     av_fast_malloc(&buf, &p->allocated_buf_size, avpkt->size + FF_INPUT_BUFFER_PADDING_SIZE);
556     p->avpkt = *avpkt;
557     p->avpkt.data = buf;
558     memcpy(buf, avpkt->data, avpkt->size);
559     memset(buf + avpkt->size, 0, FF_INPUT_BUFFER_PADDING_SIZE);
560
561     p->state = STATE_SETTING_UP;
562     pthread_cond_signal(&p->input_cond);
563     pthread_mutex_unlock(&p->mutex);
564
565     /*
566      * If the client doesn't have a thread-safe get_buffer(),
567      * then decoding threads call back to the main thread,
568      * and it calls back to the client here.
569      */
570
571     if (!p->avctx->thread_safe_callbacks &&
572          p->avctx->get_buffer != avcodec_default_get_buffer) {
573         while (p->state != STATE_SETUP_FINISHED && p->state != STATE_INPUT_READY) {
574             pthread_mutex_lock(&p->progress_mutex);
575             while (p->state == STATE_SETTING_UP)
576                 pthread_cond_wait(&p->progress_cond, &p->progress_mutex);
577
578             if (p->state == STATE_GET_BUFFER) {
579                 p->result = p->avctx->get_buffer(p->avctx, p->requested_frame);
580                 p->state  = STATE_SETTING_UP;
581                 pthread_cond_signal(&p->progress_cond);
582             }
583             pthread_mutex_unlock(&p->progress_mutex);
584         }
585     }
586
587     fctx->prev_thread = p;
588     fctx->next_decoding++;
589
590     return 0;
591 }
592
593 int ff_thread_decode_frame(AVCodecContext *avctx,
594                            AVFrame *picture, int *got_picture_ptr,
595                            AVPacket *avpkt)
596 {
597     FrameThreadContext *fctx = avctx->thread_opaque;
598     int finished = fctx->next_finished;
599     PerThreadContext *p;
600     int err;
601
602     /*
603      * Submit a packet to the next decoding thread.
604      */
605
606     p = &fctx->threads[fctx->next_decoding];
607     err = update_context_from_user(p->avctx, avctx);
608     if (err) return err;
609     err = submit_packet(p, avpkt);
610     if (err) return err;
611
612     /*
613      * If we're still receiving the initial packets, don't return a frame.
614      */
615
616     if (fctx->delaying && avpkt->size) {
617         if (fctx->next_decoding >= (avctx->thread_count-1)) fctx->delaying = 0;
618
619         *got_picture_ptr=0;
620         return avpkt->size;
621     }
622
623     /*
624      * Return the next available frame from the oldest thread.
625      * If we're at the end of the stream, then we have to skip threads that
626      * didn't output a frame, because we don't want to accidentally signal
627      * EOF (avpkt->size == 0 && *got_picture_ptr == 0).
628      */
629
630     do {
631         p = &fctx->threads[finished++];
632
633         if (p->state != STATE_INPUT_READY) {
634             pthread_mutex_lock(&p->progress_mutex);
635             while (p->state != STATE_INPUT_READY)
636                 pthread_cond_wait(&p->output_cond, &p->progress_mutex);
637             pthread_mutex_unlock(&p->progress_mutex);
638         }
639
640         *picture = p->frame;
641         *got_picture_ptr = p->got_frame;
642         picture->pkt_dts = p->avpkt.dts;
643         picture->sample_aspect_ratio = avctx->sample_aspect_ratio;
644         picture->width  = avctx->width;
645         picture->height = avctx->height;
646         picture->format = avctx->pix_fmt;
647
648         /*
649          * A later call with avkpt->size == 0 may loop over all threads,
650          * including this one, searching for a frame to return before being
651          * stopped by the "finished != fctx->next_finished" condition.
652          * Make sure we don't mistakenly return the same frame again.
653          */
654         p->got_frame = 0;
655
656         if (finished >= avctx->thread_count) finished = 0;
657     } while (!avpkt->size && !*got_picture_ptr && finished != fctx->next_finished);
658
659     update_context_from_thread(avctx, p->avctx, 1);
660
661     if (fctx->next_decoding >= avctx->thread_count) fctx->next_decoding = 0;
662
663     fctx->next_finished = finished;
664
665     /* return the size of the consumed packet if no error occurred */
666     return (p->result >= 0) ? avpkt->size : p->result;
667 }
668
669 void ff_thread_report_progress(AVFrame *f, int n, int field)
670 {
671     PerThreadContext *p;
672     int *progress = f->thread_opaque;
673
674     if (!progress || progress[field] >= n) return;
675
676     p = f->owner->thread_opaque;
677
678     if (f->owner->debug&FF_DEBUG_THREADS)
679         av_log(f->owner, AV_LOG_DEBUG, "%p finished %d field %d\n", progress, n, field);
680
681     pthread_mutex_lock(&p->progress_mutex);
682     progress[field] = n;
683     pthread_cond_broadcast(&p->progress_cond);
684     pthread_mutex_unlock(&p->progress_mutex);
685 }
686
687 void ff_thread_await_progress(AVFrame *f, int n, int field)
688 {
689     PerThreadContext *p;
690     int *progress = f->thread_opaque;
691
692     if (!progress || progress[field] >= n) return;
693
694     p = f->owner->thread_opaque;
695
696     if (f->owner->debug&FF_DEBUG_THREADS)
697         av_log(f->owner, AV_LOG_DEBUG, "thread awaiting %d field %d from %p\n", n, field, progress);
698
699     pthread_mutex_lock(&p->progress_mutex);
700     while (progress[field] < n)
701         pthread_cond_wait(&p->progress_cond, &p->progress_mutex);
702     pthread_mutex_unlock(&p->progress_mutex);
703 }
704
705 void ff_thread_finish_setup(AVCodecContext *avctx) {
706     PerThreadContext *p = avctx->thread_opaque;
707
708     if (!(avctx->active_thread_type&FF_THREAD_FRAME)) return;
709
710     if(p->state == STATE_SETUP_FINISHED){
711         av_log(avctx, AV_LOG_WARNING, "Multiple ff_thread_finish_setup() calls\n");
712     }
713
714     pthread_mutex_lock(&p->progress_mutex);
715     p->state = STATE_SETUP_FINISHED;
716     pthread_cond_broadcast(&p->progress_cond);
717     pthread_mutex_unlock(&p->progress_mutex);
718 }
719
720 /// Waits for all threads to finish.
721 static void park_frame_worker_threads(FrameThreadContext *fctx, int thread_count)
722 {
723     int i;
724
725     for (i = 0; i < thread_count; i++) {
726         PerThreadContext *p = &fctx->threads[i];
727
728         if (p->state != STATE_INPUT_READY) {
729             pthread_mutex_lock(&p->progress_mutex);
730             while (p->state != STATE_INPUT_READY)
731                 pthread_cond_wait(&p->output_cond, &p->progress_mutex);
732             pthread_mutex_unlock(&p->progress_mutex);
733         }
734     }
735 }
736
737 static void frame_thread_free(AVCodecContext *avctx, int thread_count)
738 {
739     FrameThreadContext *fctx = avctx->thread_opaque;
740     AVCodec *codec = avctx->codec;
741     int i;
742
743     park_frame_worker_threads(fctx, thread_count);
744
745     if (fctx->prev_thread && fctx->prev_thread != fctx->threads)
746         update_context_from_thread(fctx->threads->avctx, fctx->prev_thread->avctx, 0);
747
748     fctx->die = 1;
749
750     for (i = 0; i < thread_count; i++) {
751         PerThreadContext *p = &fctx->threads[i];
752
753         pthread_mutex_lock(&p->mutex);
754         pthread_cond_signal(&p->input_cond);
755         pthread_mutex_unlock(&p->mutex);
756
757         if (p->thread_init)
758             pthread_join(p->thread, NULL);
759         p->thread_init=0;
760
761         if (codec->close)
762             codec->close(p->avctx);
763
764         avctx->codec = NULL;
765
766         release_delayed_buffers(p);
767     }
768
769     for (i = 0; i < thread_count; i++) {
770         PerThreadContext *p = &fctx->threads[i];
771
772         avcodec_default_free_buffers(p->avctx);
773
774         pthread_mutex_destroy(&p->mutex);
775         pthread_mutex_destroy(&p->progress_mutex);
776         pthread_cond_destroy(&p->input_cond);
777         pthread_cond_destroy(&p->progress_cond);
778         pthread_cond_destroy(&p->output_cond);
779         av_freep(&p->avpkt.data);
780
781         if (i) {
782             av_freep(&p->avctx->priv_data);
783             av_freep(&p->avctx->internal);
784             av_freep(&p->avctx->slice_offset);
785         }
786
787         av_freep(&p->avctx);
788     }
789
790     av_freep(&fctx->threads);
791     pthread_mutex_destroy(&fctx->buffer_mutex);
792     av_freep(&avctx->thread_opaque);
793 }
794
795 static int frame_thread_init(AVCodecContext *avctx)
796 {
797     int thread_count = avctx->thread_count;
798     AVCodec *codec = avctx->codec;
799     AVCodecContext *src = avctx;
800     FrameThreadContext *fctx;
801     int i, err = 0;
802
803     if (!thread_count) {
804         int nb_cpus = get_logical_cpus(avctx);
805         if ((avctx->debug & (FF_DEBUG_VIS_QP | FF_DEBUG_VIS_MB_TYPE)) || avctx->debug_mv)
806             nb_cpus = 1;
807         // use number of cores + 1 as thread count if there is more than one
808         if (nb_cpus > 1)
809             thread_count = avctx->thread_count = FFMIN(nb_cpus + 1, MAX_AUTO_THREADS);
810         else
811             thread_count = avctx->thread_count = 1;
812     }
813
814     if (thread_count <= 1) {
815         avctx->active_thread_type = 0;
816         return 0;
817     }
818
819     avctx->thread_opaque = fctx = av_mallocz(sizeof(FrameThreadContext));
820
821     fctx->threads = av_mallocz(sizeof(PerThreadContext) * thread_count);
822     pthread_mutex_init(&fctx->buffer_mutex, NULL);
823     fctx->delaying = 1;
824
825     for (i = 0; i < thread_count; i++) {
826         AVCodecContext *copy = av_malloc(sizeof(AVCodecContext));
827         PerThreadContext *p  = &fctx->threads[i];
828
829         pthread_mutex_init(&p->mutex, NULL);
830         pthread_mutex_init(&p->progress_mutex, NULL);
831         pthread_cond_init(&p->input_cond, NULL);
832         pthread_cond_init(&p->progress_cond, NULL);
833         pthread_cond_init(&p->output_cond, NULL);
834
835         p->parent = fctx;
836         p->avctx  = copy;
837
838         if (!copy) {
839             err = AVERROR(ENOMEM);
840             goto error;
841         }
842
843         *copy = *src;
844         copy->thread_opaque = p;
845         copy->pkt = &p->avpkt;
846
847         if (!i) {
848             src = copy;
849
850             if (codec->init)
851                 err = codec->init(copy);
852
853             update_context_from_thread(avctx, copy, 1);
854         } else {
855             copy->priv_data = av_malloc(codec->priv_data_size);
856             if (!copy->priv_data) {
857                 err = AVERROR(ENOMEM);
858                 goto error;
859             }
860             memcpy(copy->priv_data, src->priv_data, codec->priv_data_size);
861             copy->internal = av_malloc(sizeof(AVCodecInternal));
862             if (!copy->internal) {
863                 err = AVERROR(ENOMEM);
864                 goto error;
865             }
866             *copy->internal = *src->internal;
867             copy->internal->is_copy = 1;
868
869             if (codec->init_thread_copy)
870                 err = codec->init_thread_copy(copy);
871         }
872
873         if (err) goto error;
874
875         p->thread_init= !pthread_create(&p->thread, NULL, frame_worker_thread, p);
876         if(!p->thread_init)
877             goto error;
878     }
879
880     return 0;
881
882 error:
883     frame_thread_free(avctx, i+1);
884
885     return err;
886 }
887
888 void ff_thread_flush(AVCodecContext *avctx)
889 {
890     FrameThreadContext *fctx = avctx->thread_opaque;
891
892     if (!avctx->thread_opaque) return;
893
894     park_frame_worker_threads(fctx, avctx->thread_count);
895     if (fctx->prev_thread) {
896         if (fctx->prev_thread != &fctx->threads[0])
897             update_context_from_thread(fctx->threads[0].avctx, fctx->prev_thread->avctx, 0);
898         if (avctx->codec->flush)
899             avctx->codec->flush(fctx->threads[0].avctx);
900     }
901
902     fctx->next_decoding = fctx->next_finished = 0;
903     fctx->delaying = 1;
904     fctx->prev_thread = NULL;
905 }
906
907 static int *allocate_progress(PerThreadContext *p)
908 {
909     int i;
910
911     for (i = 0; i < MAX_BUFFERS; i++)
912         if (!p->progress_used[i]) break;
913
914     if (i == MAX_BUFFERS) {
915         av_log(p->avctx, AV_LOG_ERROR, "allocate_progress() overflow\n");
916         return NULL;
917     }
918
919     p->progress_used[i] = 1;
920
921     return p->progress[i];
922 }
923
924 int ff_thread_get_buffer(AVCodecContext *avctx, AVFrame *f)
925 {
926     PerThreadContext *p = avctx->thread_opaque;
927     int *progress, err;
928
929     f->owner = avctx;
930
931     ff_init_buffer_info(avctx, f);
932
933     if (!(avctx->active_thread_type&FF_THREAD_FRAME)) {
934         f->thread_opaque = NULL;
935         return avctx->get_buffer(avctx, f);
936     }
937
938     if (p->state != STATE_SETTING_UP &&
939         (avctx->codec->update_thread_context || (!avctx->thread_safe_callbacks &&
940                 avctx->get_buffer != avcodec_default_get_buffer))) {
941         av_log(avctx, AV_LOG_ERROR, "get_buffer() cannot be called after ff_thread_finish_setup()\n");
942         return -1;
943     }
944
945     pthread_mutex_lock(&p->parent->buffer_mutex);
946     f->thread_opaque = progress = allocate_progress(p);
947
948     if (!progress) {
949         pthread_mutex_unlock(&p->parent->buffer_mutex);
950         return -1;
951     }
952
953     progress[0] =
954     progress[1] = -1;
955
956     if (avctx->thread_safe_callbacks ||
957         avctx->get_buffer == avcodec_default_get_buffer) {
958         err = avctx->get_buffer(avctx, f);
959     } else {
960         p->requested_frame = f;
961         p->state = STATE_GET_BUFFER;
962         pthread_mutex_lock(&p->progress_mutex);
963         pthread_cond_signal(&p->progress_cond);
964
965         while (p->state != STATE_SETTING_UP)
966             pthread_cond_wait(&p->progress_cond, &p->progress_mutex);
967
968         err = p->result;
969
970         pthread_mutex_unlock(&p->progress_mutex);
971
972         if (!avctx->codec->update_thread_context)
973             ff_thread_finish_setup(avctx);
974     }
975
976     pthread_mutex_unlock(&p->parent->buffer_mutex);
977
978     return err;
979 }
980
981 void ff_thread_release_buffer(AVCodecContext *avctx, AVFrame *f)
982 {
983     PerThreadContext *p = avctx->thread_opaque;
984     FrameThreadContext *fctx;
985
986     if (!(avctx->active_thread_type&FF_THREAD_FRAME)) {
987         avctx->release_buffer(avctx, f);
988         return;
989     }
990
991     if (p->num_released_buffers >= MAX_BUFFERS) {
992         av_log(p->avctx, AV_LOG_ERROR, "too many thread_release_buffer calls!\n");
993         return;
994     }
995
996     if(avctx->debug & FF_DEBUG_BUFFERS)
997         av_log(avctx, AV_LOG_DEBUG, "thread_release_buffer called on pic %p\n", f);
998
999     fctx = p->parent;
1000     pthread_mutex_lock(&fctx->buffer_mutex);
1001     p->released_buffers[p->num_released_buffers++] = *f;
1002     pthread_mutex_unlock(&fctx->buffer_mutex);
1003     memset(f->data, 0, sizeof(f->data));
1004 }
1005
1006 /**
1007  * Set the threading algorithms used.
1008  *
1009  * Threading requires more than one thread.
1010  * Frame threading requires entire frames to be passed to the codec,
1011  * and introduces extra decoding delay, so is incompatible with low_delay.
1012  *
1013  * @param avctx The context.
1014  */
1015 static void validate_thread_parameters(AVCodecContext *avctx)
1016 {
1017     int frame_threading_supported = (avctx->codec->capabilities & CODEC_CAP_FRAME_THREADS)
1018                                 && !(avctx->flags & CODEC_FLAG_TRUNCATED)
1019                                 && !(avctx->flags & CODEC_FLAG_LOW_DELAY)
1020                                 && !(avctx->flags2 & CODEC_FLAG2_CHUNKS);
1021     if (avctx->thread_count == 1) {
1022         avctx->active_thread_type = 0;
1023     } else if (frame_threading_supported && (avctx->thread_type & FF_THREAD_FRAME)) {
1024         avctx->active_thread_type = FF_THREAD_FRAME;
1025     } else if (avctx->codec->capabilities & CODEC_CAP_SLICE_THREADS &&
1026                avctx->thread_type & FF_THREAD_SLICE) {
1027         avctx->active_thread_type = FF_THREAD_SLICE;
1028     } else if (!(avctx->codec->capabilities & CODEC_CAP_AUTO_THREADS)) {
1029         avctx->thread_count       = 1;
1030         avctx->active_thread_type = 0;
1031     }
1032 }
1033
1034 int ff_thread_init(AVCodecContext *avctx)
1035 {
1036     if (avctx->thread_opaque) {
1037         av_log(avctx, AV_LOG_ERROR, "avcodec_thread_init is ignored after avcodec_open\n");
1038         return -1;
1039     }
1040
1041 #if HAVE_W32THREADS
1042     w32thread_init();
1043 #endif
1044
1045     if (avctx->codec) {
1046         validate_thread_parameters(avctx);
1047
1048         if (avctx->active_thread_type&FF_THREAD_SLICE)
1049             return thread_init(avctx);
1050         else if (avctx->active_thread_type&FF_THREAD_FRAME)
1051             return frame_thread_init(avctx);
1052     }
1053
1054     return 0;
1055 }
1056
1057 void ff_thread_free(AVCodecContext *avctx)
1058 {
1059     if (avctx->active_thread_type&FF_THREAD_FRAME)
1060         frame_thread_free(avctx, avctx->thread_count);
1061     else
1062         thread_free(avctx);
1063 }