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