]> git.sesse.net Git - ffmpeg/blob - libavcodec/pthread_frame.c
Deprecate avctx.coded_frame
[ffmpeg] / libavcodec / pthread_frame.c
1 /*
2  * This file is part of Libav.
3  *
4  * Libav is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * Libav is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with Libav; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17  */
18
19 /**
20  * @file
21  * Frame multithreading support functions
22  * @see doc/multithreading.txt
23  */
24
25 #include "config.h"
26
27 #include <stdint.h>
28
29 #if HAVE_PTHREADS
30 #include <pthread.h>
31 #elif HAVE_W32THREADS
32 #include "compat/w32pthreads.h"
33 #endif
34
35 #include "avcodec.h"
36 #include "internal.h"
37 #include "pthread_internal.h"
38 #include "thread.h"
39 #include "version.h"
40
41 #include "libavutil/avassert.h"
42 #include "libavutil/buffer.h"
43 #include "libavutil/common.h"
44 #include "libavutil/cpu.h"
45 #include "libavutil/frame.h"
46 #include "libavutil/internal.h"
47 #include "libavutil/log.h"
48 #include "libavutil/mem.h"
49
50 /**
51  * Context used by codec threads and stored in their AVCodecInternal thread_ctx.
52  */
53 typedef struct PerThreadContext {
54     struct FrameThreadContext *parent;
55
56     pthread_t      thread;
57     int            thread_init;
58     pthread_cond_t input_cond;      ///< Used to wait for a new packet from the main thread.
59     pthread_cond_t progress_cond;   ///< Used by child threads to wait for progress to change.
60     pthread_cond_t output_cond;     ///< Used by the main thread to wait for frames to finish.
61
62     pthread_mutex_t mutex;          ///< Mutex used to protect the contents of the PerThreadContext.
63     pthread_mutex_t progress_mutex; ///< Mutex used to protect frame progress values and progress_cond.
64
65     AVCodecContext *avctx;          ///< Context used to decode packets passed to this thread.
66
67     AVPacket       avpkt;           ///< Input packet (for decoding) or output (for encoding).
68
69     AVFrame *frame;                 ///< Output frame (for decoding) or input (for encoding).
70     int     got_frame;              ///< The output of got_picture_ptr from the last avcodec_decode_video() call.
71     int     result;                 ///< The result of the last codec decode/encode() call.
72
73     enum {
74         STATE_INPUT_READY,          ///< Set when the thread is awaiting a packet.
75         STATE_SETTING_UP,           ///< Set before the codec has called ff_thread_finish_setup().
76         STATE_GET_BUFFER,           /**<
77                                      * Set when the codec calls get_buffer().
78                                      * State is returned to STATE_SETTING_UP afterwards.
79                                      */
80         STATE_SETUP_FINISHED        ///< Set after the codec has called ff_thread_finish_setup().
81     } state;
82
83     /**
84      * Array of frames passed to ff_thread_release_buffer().
85      * Frames are released after all threads referencing them are finished.
86      */
87     AVFrame *released_buffers;
88     int  num_released_buffers;
89     int      released_buffers_allocated;
90
91     AVFrame *requested_frame;       ///< AVFrame the codec passed to get_buffer()
92     int      requested_flags;       ///< flags passed to get_buffer() for requested_frame
93 } PerThreadContext;
94
95 /**
96  * Context stored in the client AVCodecInternal thread_ctx.
97  */
98 typedef struct FrameThreadContext {
99     PerThreadContext *threads;     ///< The contexts for each thread.
100     PerThreadContext *prev_thread; ///< The last thread submit_packet() was called on.
101
102     pthread_mutex_t buffer_mutex;  ///< Mutex used to protect get/release_buffer().
103
104     int next_decoding;             ///< The next context to submit a packet to.
105     int next_finished;             ///< The next context to return output from.
106
107     int delaying;                  /**<
108                                     * Set for the first N packets, where N is the number of threads.
109                                     * While it is set, ff_thread_en/decode_frame won't return any results.
110                                     */
111
112     int die;                       ///< Set when threads should exit.
113 } FrameThreadContext;
114
115 /**
116  * Codec worker thread.
117  *
118  * Automatically calls ff_thread_finish_setup() if the codec does
119  * not provide an update_thread_context method, or if the codec returns
120  * before calling it.
121  */
122 static attribute_align_arg void *frame_worker_thread(void *arg)
123 {
124     PerThreadContext *p = arg;
125     FrameThreadContext *fctx = p->parent;
126     AVCodecContext *avctx = p->avctx;
127     const AVCodec *codec = avctx->codec;
128
129     while (1) {
130         if (p->state == STATE_INPUT_READY && !fctx->die) {
131             pthread_mutex_lock(&p->mutex);
132             while (p->state == STATE_INPUT_READY && !fctx->die)
133                 pthread_cond_wait(&p->input_cond, &p->mutex);
134             pthread_mutex_unlock(&p->mutex);
135         }
136
137         if (fctx->die) break;
138
139         if (!codec->update_thread_context && avctx->thread_safe_callbacks)
140             ff_thread_finish_setup(avctx);
141
142         pthread_mutex_lock(&p->mutex);
143         av_frame_unref(p->frame);
144         p->got_frame = 0;
145         p->result = codec->decode(avctx, p->frame, &p->got_frame, &p->avpkt);
146
147         if ((p->result < 0 || !p->got_frame) && p->frame->buf[0]) {
148             if (avctx->internal->allocate_progress)
149                 av_log(avctx, AV_LOG_ERROR, "A frame threaded decoder did not "
150                        "free the frame on failure. This is a bug, please report it.\n");
151             av_frame_unref(p->frame);
152         }
153
154         if (p->state == STATE_SETTING_UP) ff_thread_finish_setup(avctx);
155
156         p->state = STATE_INPUT_READY;
157
158         pthread_mutex_lock(&p->progress_mutex);
159         pthread_cond_signal(&p->output_cond);
160         pthread_mutex_unlock(&p->progress_mutex);
161
162         pthread_mutex_unlock(&p->mutex);
163     }
164
165     return NULL;
166 }
167
168 /**
169  * Update the next thread's AVCodecContext with values from the reference thread's context.
170  *
171  * @param dst The destination context.
172  * @param src The source context.
173  * @param for_user 0 if the destination is a codec thread, 1 if the destination is the user's thread
174  */
175 static int update_context_from_thread(AVCodecContext *dst, AVCodecContext *src, int for_user)
176 {
177     int err = 0;
178
179     if (dst != src) {
180         dst->time_base = src->time_base;
181         dst->framerate = src->framerate;
182         dst->width     = src->width;
183         dst->height    = src->height;
184         dst->pix_fmt   = src->pix_fmt;
185
186         dst->coded_width  = src->coded_width;
187         dst->coded_height = src->coded_height;
188
189         dst->has_b_frames = src->has_b_frames;
190         dst->idct_algo    = src->idct_algo;
191
192         dst->bits_per_coded_sample = src->bits_per_coded_sample;
193         dst->sample_aspect_ratio   = src->sample_aspect_ratio;
194 #if FF_API_AFD
195 FF_DISABLE_DEPRECATION_WARNINGS
196         dst->dtg_active_format     = src->dtg_active_format;
197 FF_ENABLE_DEPRECATION_WARNINGS
198 #endif /* FF_API_AFD */
199
200         dst->profile = src->profile;
201         dst->level   = src->level;
202
203         dst->bits_per_raw_sample = src->bits_per_raw_sample;
204         dst->ticks_per_frame     = src->ticks_per_frame;
205         dst->color_primaries     = src->color_primaries;
206
207         dst->color_trc   = src->color_trc;
208         dst->colorspace  = src->colorspace;
209         dst->color_range = src->color_range;
210         dst->chroma_sample_location = src->chroma_sample_location;
211
212         dst->hwaccel = src->hwaccel;
213         dst->hwaccel_context = src->hwaccel_context;
214         dst->internal->hwaccel_priv_data = src->internal->hwaccel_priv_data;
215     }
216
217     if (for_user) {
218 #if FF_API_CODED_FRAME
219 FF_DISABLE_DEPRECATION_WARNINGS
220         dst->coded_frame = src->coded_frame;
221 FF_ENABLE_DEPRECATION_WARNINGS
222 #endif
223     } else {
224         if (dst->codec->update_thread_context)
225             err = dst->codec->update_thread_context(dst, src);
226     }
227
228     return err;
229 }
230
231 /**
232  * Update the next thread's AVCodecContext with values set by the user.
233  *
234  * @param dst The destination context.
235  * @param src The source context.
236  * @return 0 on success, negative error code on failure
237  */
238 static int update_context_from_user(AVCodecContext *dst, AVCodecContext *src)
239 {
240 #define copy_fields(s, e) memcpy(&dst->s, &src->s, (char*)&dst->e - (char*)&dst->s);
241     dst->flags          = src->flags;
242
243     dst->draw_horiz_band= src->draw_horiz_band;
244     dst->get_buffer2    = src->get_buffer2;
245 #if FF_API_GET_BUFFER
246 FF_DISABLE_DEPRECATION_WARNINGS
247     dst->get_buffer     = src->get_buffer;
248     dst->release_buffer = src->release_buffer;
249 FF_ENABLE_DEPRECATION_WARNINGS
250 #endif
251
252     dst->opaque   = src->opaque;
253     dst->debug    = src->debug;
254
255     dst->slice_flags = src->slice_flags;
256     dst->flags2      = src->flags2;
257
258     copy_fields(skip_loop_filter, subtitle_header);
259
260     dst->frame_number     = src->frame_number;
261     dst->reordered_opaque = src->reordered_opaque;
262
263     if (src->slice_count && src->slice_offset) {
264         if (dst->slice_count < src->slice_count) {
265             int *tmp = av_realloc(dst->slice_offset, src->slice_count *
266                                   sizeof(*dst->slice_offset));
267             if (!tmp) {
268                 av_free(dst->slice_offset);
269                 return AVERROR(ENOMEM);
270             }
271             dst->slice_offset = tmp;
272         }
273         memcpy(dst->slice_offset, src->slice_offset,
274                src->slice_count * sizeof(*dst->slice_offset));
275     }
276     dst->slice_count = src->slice_count;
277     return 0;
278 #undef copy_fields
279 }
280
281 /// Releases the buffers that this decoding thread was the last user of.
282 static void release_delayed_buffers(PerThreadContext *p)
283 {
284     FrameThreadContext *fctx = p->parent;
285
286     while (p->num_released_buffers > 0) {
287         AVFrame *f;
288
289         pthread_mutex_lock(&fctx->buffer_mutex);
290
291         // fix extended data in case the caller screwed it up
292         av_assert0(p->avctx->codec_type == AVMEDIA_TYPE_VIDEO);
293         f = &p->released_buffers[--p->num_released_buffers];
294         f->extended_data = f->data;
295         av_frame_unref(f);
296
297         pthread_mutex_unlock(&fctx->buffer_mutex);
298     }
299 }
300
301 static int submit_packet(PerThreadContext *p, AVPacket *avpkt)
302 {
303     FrameThreadContext *fctx = p->parent;
304     PerThreadContext *prev_thread = fctx->prev_thread;
305     const AVCodec *codec = p->avctx->codec;
306
307     if (!avpkt->size && !(codec->capabilities & CODEC_CAP_DELAY)) return 0;
308
309     pthread_mutex_lock(&p->mutex);
310
311     release_delayed_buffers(p);
312
313     if (prev_thread) {
314         int err;
315         if (prev_thread->state == STATE_SETTING_UP) {
316             pthread_mutex_lock(&prev_thread->progress_mutex);
317             while (prev_thread->state == STATE_SETTING_UP)
318                 pthread_cond_wait(&prev_thread->progress_cond, &prev_thread->progress_mutex);
319             pthread_mutex_unlock(&prev_thread->progress_mutex);
320         }
321
322         err = update_context_from_thread(p->avctx, prev_thread->avctx, 0);
323         if (err) {
324             pthread_mutex_unlock(&p->mutex);
325             return err;
326         }
327     }
328
329     av_packet_unref(&p->avpkt);
330     av_packet_ref(&p->avpkt, avpkt);
331
332     p->state = STATE_SETTING_UP;
333     pthread_cond_signal(&p->input_cond);
334     pthread_mutex_unlock(&p->mutex);
335
336     /*
337      * If the client doesn't have a thread-safe get_buffer(),
338      * then decoding threads call back to the main thread,
339      * and it calls back to the client here.
340      */
341
342 FF_DISABLE_DEPRECATION_WARNINGS
343     if (!p->avctx->thread_safe_callbacks && (
344 #if FF_API_GET_BUFFER
345          p->avctx->get_buffer ||
346 #endif
347          p->avctx->get_buffer2 != avcodec_default_get_buffer2)) {
348 FF_ENABLE_DEPRECATION_WARNINGS
349         while (p->state != STATE_SETUP_FINISHED && p->state != STATE_INPUT_READY) {
350             pthread_mutex_lock(&p->progress_mutex);
351             while (p->state == STATE_SETTING_UP)
352                 pthread_cond_wait(&p->progress_cond, &p->progress_mutex);
353
354             if (p->state == STATE_GET_BUFFER) {
355                 p->result = ff_get_buffer(p->avctx, p->requested_frame, p->requested_flags);
356                 p->state  = STATE_SETTING_UP;
357                 pthread_cond_signal(&p->progress_cond);
358             }
359             pthread_mutex_unlock(&p->progress_mutex);
360         }
361     }
362
363     fctx->prev_thread = p;
364     fctx->next_decoding++;
365
366     return 0;
367 }
368
369 int ff_thread_decode_frame(AVCodecContext *avctx,
370                            AVFrame *picture, int *got_picture_ptr,
371                            AVPacket *avpkt)
372 {
373     FrameThreadContext *fctx = avctx->internal->thread_ctx;
374     int finished = fctx->next_finished;
375     PerThreadContext *p;
376     int err;
377
378     /*
379      * Submit a packet to the next decoding thread.
380      */
381
382     p = &fctx->threads[fctx->next_decoding];
383     err = update_context_from_user(p->avctx, avctx);
384     if (err) return err;
385     err = submit_packet(p, avpkt);
386     if (err) return err;
387
388     /*
389      * If we're still receiving the initial packets, don't return a frame.
390      */
391
392     if (fctx->delaying) {
393         if (fctx->next_decoding >= (avctx->thread_count-1)) fctx->delaying = 0;
394
395         *got_picture_ptr=0;
396         if (avpkt->size)
397             return avpkt->size;
398     }
399
400     /*
401      * Return the next available frame from the oldest thread.
402      * If we're at the end of the stream, then we have to skip threads that
403      * didn't output a frame, because we don't want to accidentally signal
404      * EOF (avpkt->size == 0 && *got_picture_ptr == 0).
405      */
406
407     do {
408         p = &fctx->threads[finished++];
409
410         if (p->state != STATE_INPUT_READY) {
411             pthread_mutex_lock(&p->progress_mutex);
412             while (p->state != STATE_INPUT_READY)
413                 pthread_cond_wait(&p->output_cond, &p->progress_mutex);
414             pthread_mutex_unlock(&p->progress_mutex);
415         }
416
417         av_frame_move_ref(picture, p->frame);
418         *got_picture_ptr = p->got_frame;
419         picture->pkt_dts = p->avpkt.dts;
420
421         /*
422          * A later call with avkpt->size == 0 may loop over all threads,
423          * including this one, searching for a frame to return before being
424          * stopped by the "finished != fctx->next_finished" condition.
425          * Make sure we don't mistakenly return the same frame again.
426          */
427         p->got_frame = 0;
428
429         if (finished >= avctx->thread_count) finished = 0;
430     } while (!avpkt->size && !*got_picture_ptr && finished != fctx->next_finished);
431
432     update_context_from_thread(avctx, p->avctx, 1);
433
434     if (fctx->next_decoding >= avctx->thread_count) fctx->next_decoding = 0;
435
436     fctx->next_finished = finished;
437
438     /* return the size of the consumed packet if no error occurred */
439     return (p->result >= 0) ? avpkt->size : p->result;
440 }
441
442 void ff_thread_report_progress(ThreadFrame *f, int n, int field)
443 {
444     PerThreadContext *p;
445     int *progress = f->progress ? (int*)f->progress->data : NULL;
446
447     if (!progress || progress[field] >= n) return;
448
449     p = f->owner->internal->thread_ctx;
450
451     if (f->owner->debug&FF_DEBUG_THREADS)
452         av_log(f->owner, AV_LOG_DEBUG, "%p finished %d field %d\n", progress, n, field);
453
454     pthread_mutex_lock(&p->progress_mutex);
455     progress[field] = n;
456     pthread_cond_broadcast(&p->progress_cond);
457     pthread_mutex_unlock(&p->progress_mutex);
458 }
459
460 void ff_thread_await_progress(ThreadFrame *f, int n, int field)
461 {
462     PerThreadContext *p;
463     int *progress = f->progress ? (int*)f->progress->data : NULL;
464
465     if (!progress || progress[field] >= n) return;
466
467     p = f->owner->internal->thread_ctx;
468
469     if (f->owner->debug&FF_DEBUG_THREADS)
470         av_log(f->owner, AV_LOG_DEBUG, "thread awaiting %d field %d from %p\n", n, field, progress);
471
472     pthread_mutex_lock(&p->progress_mutex);
473     while (progress[field] < n)
474         pthread_cond_wait(&p->progress_cond, &p->progress_mutex);
475     pthread_mutex_unlock(&p->progress_mutex);
476 }
477
478 void ff_thread_finish_setup(AVCodecContext *avctx) {
479     PerThreadContext *p = avctx->internal->thread_ctx;
480
481     if (!(avctx->active_thread_type&FF_THREAD_FRAME)) return;
482
483     pthread_mutex_lock(&p->progress_mutex);
484     p->state = STATE_SETUP_FINISHED;
485     pthread_cond_broadcast(&p->progress_cond);
486     pthread_mutex_unlock(&p->progress_mutex);
487 }
488
489 /// Waits for all threads to finish.
490 static void park_frame_worker_threads(FrameThreadContext *fctx, int thread_count)
491 {
492     int i;
493
494     for (i = 0; i < thread_count; i++) {
495         PerThreadContext *p = &fctx->threads[i];
496
497         if (p->state != STATE_INPUT_READY) {
498             pthread_mutex_lock(&p->progress_mutex);
499             while (p->state != STATE_INPUT_READY)
500                 pthread_cond_wait(&p->output_cond, &p->progress_mutex);
501             pthread_mutex_unlock(&p->progress_mutex);
502         }
503     }
504 }
505
506 void ff_frame_thread_free(AVCodecContext *avctx, int thread_count)
507 {
508     FrameThreadContext *fctx = avctx->internal->thread_ctx;
509     const AVCodec *codec = avctx->codec;
510     int i;
511
512     park_frame_worker_threads(fctx, thread_count);
513
514     if (fctx->prev_thread && fctx->prev_thread != fctx->threads)
515         update_context_from_thread(fctx->threads->avctx, fctx->prev_thread->avctx, 0);
516
517     fctx->die = 1;
518
519     for (i = 0; i < thread_count; i++) {
520         PerThreadContext *p = &fctx->threads[i];
521
522         pthread_mutex_lock(&p->mutex);
523         pthread_cond_signal(&p->input_cond);
524         pthread_mutex_unlock(&p->mutex);
525
526         if (p->thread_init)
527             pthread_join(p->thread, NULL);
528
529         if (codec->close)
530             codec->close(p->avctx);
531
532         avctx->codec = NULL;
533
534         release_delayed_buffers(p);
535         av_frame_free(&p->frame);
536     }
537
538     for (i = 0; i < thread_count; i++) {
539         PerThreadContext *p = &fctx->threads[i];
540
541         pthread_mutex_destroy(&p->mutex);
542         pthread_mutex_destroy(&p->progress_mutex);
543         pthread_cond_destroy(&p->input_cond);
544         pthread_cond_destroy(&p->progress_cond);
545         pthread_cond_destroy(&p->output_cond);
546         av_packet_unref(&p->avpkt);
547         av_freep(&p->released_buffers);
548
549         if (i) {
550             av_freep(&p->avctx->priv_data);
551             av_freep(&p->avctx->slice_offset);
552         }
553
554         av_freep(&p->avctx->internal);
555         av_freep(&p->avctx);
556     }
557
558     av_freep(&fctx->threads);
559     pthread_mutex_destroy(&fctx->buffer_mutex);
560     av_freep(&avctx->internal->thread_ctx);
561 }
562
563 int ff_frame_thread_init(AVCodecContext *avctx)
564 {
565     int thread_count = avctx->thread_count;
566     const AVCodec *codec = avctx->codec;
567     AVCodecContext *src = avctx;
568     FrameThreadContext *fctx;
569     int i, err = 0;
570
571 #if HAVE_W32THREADS
572     w32thread_init();
573 #endif
574
575     if (!thread_count) {
576         int nb_cpus = av_cpu_count();
577         av_log(avctx, AV_LOG_DEBUG, "detected %d logical cores\n", nb_cpus);
578         // use number of cores + 1 as thread count if there is more than one
579         if (nb_cpus > 1)
580             thread_count = avctx->thread_count = FFMIN(nb_cpus + 1, MAX_AUTO_THREADS);
581         else
582             thread_count = avctx->thread_count = 1;
583     }
584
585     if (thread_count <= 1) {
586         avctx->active_thread_type = 0;
587         return 0;
588     }
589
590     avctx->internal->thread_ctx = fctx = av_mallocz(sizeof(FrameThreadContext));
591     if (!fctx)
592         return AVERROR(ENOMEM);
593
594     fctx->threads = av_mallocz(sizeof(PerThreadContext) * thread_count);
595     if (!fctx->threads) {
596         av_freep(&avctx->internal->thread_ctx);
597         return AVERROR(ENOMEM);
598     }
599
600     pthread_mutex_init(&fctx->buffer_mutex, NULL);
601     fctx->delaying = 1;
602
603     for (i = 0; i < thread_count; i++) {
604         AVCodecContext *copy = av_malloc(sizeof(AVCodecContext));
605         PerThreadContext *p  = &fctx->threads[i];
606
607         pthread_mutex_init(&p->mutex, NULL);
608         pthread_mutex_init(&p->progress_mutex, NULL);
609         pthread_cond_init(&p->input_cond, NULL);
610         pthread_cond_init(&p->progress_cond, NULL);
611         pthread_cond_init(&p->output_cond, NULL);
612
613         p->frame = av_frame_alloc();
614         if (!p->frame) {
615             av_freep(&copy);
616             err = AVERROR(ENOMEM);
617             goto error;
618         }
619
620         p->parent = fctx;
621         p->avctx  = copy;
622
623         if (!copy) {
624             err = AVERROR(ENOMEM);
625             goto error;
626         }
627
628         *copy = *src;
629
630         copy->internal = av_malloc(sizeof(AVCodecInternal));
631         if (!copy->internal) {
632             err = AVERROR(ENOMEM);
633             goto error;
634         }
635         *copy->internal = *src->internal;
636         copy->internal->thread_ctx = p;
637         copy->internal->pkt = &p->avpkt;
638
639         if (!i) {
640             src = copy;
641
642             if (codec->init)
643                 err = codec->init(copy);
644
645             update_context_from_thread(avctx, copy, 1);
646         } else {
647             copy->priv_data = av_malloc(codec->priv_data_size);
648             if (!copy->priv_data) {
649                 err = AVERROR(ENOMEM);
650                 goto error;
651             }
652             memcpy(copy->priv_data, src->priv_data, codec->priv_data_size);
653             copy->internal->is_copy = 1;
654
655             if (codec->init_thread_copy)
656                 err = codec->init_thread_copy(copy);
657         }
658
659         if (err) goto error;
660
661         if (!pthread_create(&p->thread, NULL, frame_worker_thread, p))
662             p->thread_init = 1;
663     }
664
665     return 0;
666
667 error:
668     ff_frame_thread_free(avctx, i+1);
669
670     return err;
671 }
672
673 void ff_thread_flush(AVCodecContext *avctx)
674 {
675     int i;
676     FrameThreadContext *fctx = avctx->internal->thread_ctx;
677
678     if (!fctx) return;
679
680     park_frame_worker_threads(fctx, avctx->thread_count);
681     if (fctx->prev_thread) {
682         if (fctx->prev_thread != &fctx->threads[0])
683             update_context_from_thread(fctx->threads[0].avctx, fctx->prev_thread->avctx, 0);
684     }
685
686     fctx->next_decoding = fctx->next_finished = 0;
687     fctx->delaying = 1;
688     fctx->prev_thread = NULL;
689     for (i = 0; i < avctx->thread_count; i++) {
690         PerThreadContext *p = &fctx->threads[i];
691         // Make sure decode flush calls with size=0 won't return old frames
692         p->got_frame = 0;
693         av_frame_unref(p->frame);
694
695         release_delayed_buffers(p);
696
697         if (avctx->codec->flush)
698             avctx->codec->flush(p->avctx);
699     }
700 }
701
702 int ff_thread_get_buffer(AVCodecContext *avctx, ThreadFrame *f, int flags)
703 {
704     PerThreadContext *p = avctx->internal->thread_ctx;
705     int err;
706
707     f->owner = avctx;
708
709     if (!(avctx->active_thread_type & FF_THREAD_FRAME))
710         return ff_get_buffer(avctx, f->f, flags);
711
712     if (p->state != STATE_SETTING_UP &&
713         (avctx->codec->update_thread_context || !avctx->thread_safe_callbacks)) {
714         av_log(avctx, AV_LOG_ERROR, "get_buffer() cannot be called after ff_thread_finish_setup()\n");
715         return -1;
716     }
717
718     if (avctx->internal->allocate_progress) {
719         int *progress;
720         f->progress = av_buffer_alloc(2 * sizeof(int));
721         if (!f->progress) {
722             return AVERROR(ENOMEM);
723         }
724         progress = (int*)f->progress->data;
725
726         progress[0] = progress[1] = -1;
727     }
728
729     pthread_mutex_lock(&p->parent->buffer_mutex);
730 FF_DISABLE_DEPRECATION_WARNINGS
731     if (avctx->thread_safe_callbacks || (
732 #if FF_API_GET_BUFFER
733         !avctx->get_buffer &&
734 #endif
735         avctx->get_buffer2 == avcodec_default_get_buffer2)) {
736 FF_ENABLE_DEPRECATION_WARNINGS
737         err = ff_get_buffer(avctx, f->f, flags);
738     } else {
739         p->requested_frame = f->f;
740         p->requested_flags = flags;
741         p->state = STATE_GET_BUFFER;
742         pthread_mutex_lock(&p->progress_mutex);
743         pthread_cond_signal(&p->progress_cond);
744
745         while (p->state != STATE_SETTING_UP)
746             pthread_cond_wait(&p->progress_cond, &p->progress_mutex);
747
748         err = p->result;
749
750         pthread_mutex_unlock(&p->progress_mutex);
751
752     }
753     if (!avctx->thread_safe_callbacks && !avctx->codec->update_thread_context)
754         ff_thread_finish_setup(avctx);
755
756     if (err)
757         av_buffer_unref(&f->progress);
758
759     pthread_mutex_unlock(&p->parent->buffer_mutex);
760
761     return err;
762 }
763
764 void ff_thread_release_buffer(AVCodecContext *avctx, ThreadFrame *f)
765 {
766     PerThreadContext *p = avctx->internal->thread_ctx;
767     FrameThreadContext *fctx;
768     AVFrame *dst, *tmp;
769 FF_DISABLE_DEPRECATION_WARNINGS
770     int can_direct_free = !(avctx->active_thread_type & FF_THREAD_FRAME) ||
771                           avctx->thread_safe_callbacks                   ||
772                           (
773 #if FF_API_GET_BUFFER
774                            !avctx->get_buffer &&
775 #endif
776                            avctx->get_buffer2 == avcodec_default_get_buffer2);
777 FF_ENABLE_DEPRECATION_WARNINGS
778
779     if (!f->f || !f->f->buf[0])
780         return;
781
782     if (avctx->debug & FF_DEBUG_BUFFERS)
783         av_log(avctx, AV_LOG_DEBUG, "thread_release_buffer called on pic %p\n", f);
784
785     av_buffer_unref(&f->progress);
786     f->owner    = NULL;
787
788     if (can_direct_free) {
789         av_frame_unref(f->f);
790         return;
791     }
792
793     fctx = p->parent;
794     pthread_mutex_lock(&fctx->buffer_mutex);
795
796     if (p->num_released_buffers + 1 >= INT_MAX / sizeof(*p->released_buffers))
797         goto fail;
798     tmp = av_fast_realloc(p->released_buffers, &p->released_buffers_allocated,
799                           (p->num_released_buffers + 1) *
800                           sizeof(*p->released_buffers));
801     if (!tmp)
802         goto fail;
803     p->released_buffers = tmp;
804
805     dst = &p->released_buffers[p->num_released_buffers];
806     av_frame_move_ref(dst, f->f);
807
808     p->num_released_buffers++;
809
810 fail:
811     pthread_mutex_unlock(&fctx->buffer_mutex);
812 }