]> git.sesse.net Git - ffmpeg/blob - libavcodec/pthread_frame.c
lavc: deprecate the use of AVCodecContext.time_base for decoding
[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         dst->coded_frame = src->coded_frame;
219     } else {
220         if (dst->codec->update_thread_context)
221             err = dst->codec->update_thread_context(dst, src);
222     }
223
224     return err;
225 }
226
227 /**
228  * Update the next thread's AVCodecContext with values set by the user.
229  *
230  * @param dst The destination context.
231  * @param src The source context.
232  * @return 0 on success, negative error code on failure
233  */
234 static int update_context_from_user(AVCodecContext *dst, AVCodecContext *src)
235 {
236 #define copy_fields(s, e) memcpy(&dst->s, &src->s, (char*)&dst->e - (char*)&dst->s);
237     dst->flags          = src->flags;
238
239     dst->draw_horiz_band= src->draw_horiz_band;
240     dst->get_buffer2    = src->get_buffer2;
241 #if FF_API_GET_BUFFER
242 FF_DISABLE_DEPRECATION_WARNINGS
243     dst->get_buffer     = src->get_buffer;
244     dst->release_buffer = src->release_buffer;
245 FF_ENABLE_DEPRECATION_WARNINGS
246 #endif
247
248     dst->opaque   = src->opaque;
249     dst->debug    = src->debug;
250
251     dst->slice_flags = src->slice_flags;
252     dst->flags2      = src->flags2;
253
254     copy_fields(skip_loop_filter, subtitle_header);
255
256     dst->frame_number     = src->frame_number;
257     dst->reordered_opaque = src->reordered_opaque;
258
259     if (src->slice_count && src->slice_offset) {
260         if (dst->slice_count < src->slice_count) {
261             int *tmp = av_realloc(dst->slice_offset, src->slice_count *
262                                   sizeof(*dst->slice_offset));
263             if (!tmp) {
264                 av_free(dst->slice_offset);
265                 return AVERROR(ENOMEM);
266             }
267             dst->slice_offset = tmp;
268         }
269         memcpy(dst->slice_offset, src->slice_offset,
270                src->slice_count * sizeof(*dst->slice_offset));
271     }
272     dst->slice_count = src->slice_count;
273     return 0;
274 #undef copy_fields
275 }
276
277 /// Releases the buffers that this decoding thread was the last user of.
278 static void release_delayed_buffers(PerThreadContext *p)
279 {
280     FrameThreadContext *fctx = p->parent;
281
282     while (p->num_released_buffers > 0) {
283         AVFrame *f;
284
285         pthread_mutex_lock(&fctx->buffer_mutex);
286
287         // fix extended data in case the caller screwed it up
288         av_assert0(p->avctx->codec_type == AVMEDIA_TYPE_VIDEO);
289         f = &p->released_buffers[--p->num_released_buffers];
290         f->extended_data = f->data;
291         av_frame_unref(f);
292
293         pthread_mutex_unlock(&fctx->buffer_mutex);
294     }
295 }
296
297 static int submit_packet(PerThreadContext *p, AVPacket *avpkt)
298 {
299     FrameThreadContext *fctx = p->parent;
300     PerThreadContext *prev_thread = fctx->prev_thread;
301     const AVCodec *codec = p->avctx->codec;
302
303     if (!avpkt->size && !(codec->capabilities & CODEC_CAP_DELAY)) return 0;
304
305     pthread_mutex_lock(&p->mutex);
306
307     release_delayed_buffers(p);
308
309     if (prev_thread) {
310         int err;
311         if (prev_thread->state == STATE_SETTING_UP) {
312             pthread_mutex_lock(&prev_thread->progress_mutex);
313             while (prev_thread->state == STATE_SETTING_UP)
314                 pthread_cond_wait(&prev_thread->progress_cond, &prev_thread->progress_mutex);
315             pthread_mutex_unlock(&prev_thread->progress_mutex);
316         }
317
318         err = update_context_from_thread(p->avctx, prev_thread->avctx, 0);
319         if (err) {
320             pthread_mutex_unlock(&p->mutex);
321             return err;
322         }
323     }
324
325     av_packet_unref(&p->avpkt);
326     av_packet_ref(&p->avpkt, avpkt);
327
328     p->state = STATE_SETTING_UP;
329     pthread_cond_signal(&p->input_cond);
330     pthread_mutex_unlock(&p->mutex);
331
332     /*
333      * If the client doesn't have a thread-safe get_buffer(),
334      * then decoding threads call back to the main thread,
335      * and it calls back to the client here.
336      */
337
338 FF_DISABLE_DEPRECATION_WARNINGS
339     if (!p->avctx->thread_safe_callbacks && (
340 #if FF_API_GET_BUFFER
341          p->avctx->get_buffer ||
342 #endif
343          p->avctx->get_buffer2 != avcodec_default_get_buffer2)) {
344 FF_ENABLE_DEPRECATION_WARNINGS
345         while (p->state != STATE_SETUP_FINISHED && p->state != STATE_INPUT_READY) {
346             pthread_mutex_lock(&p->progress_mutex);
347             while (p->state == STATE_SETTING_UP)
348                 pthread_cond_wait(&p->progress_cond, &p->progress_mutex);
349
350             if (p->state == STATE_GET_BUFFER) {
351                 p->result = ff_get_buffer(p->avctx, p->requested_frame, p->requested_flags);
352                 p->state  = STATE_SETTING_UP;
353                 pthread_cond_signal(&p->progress_cond);
354             }
355             pthread_mutex_unlock(&p->progress_mutex);
356         }
357     }
358
359     fctx->prev_thread = p;
360     fctx->next_decoding++;
361
362     return 0;
363 }
364
365 int ff_thread_decode_frame(AVCodecContext *avctx,
366                            AVFrame *picture, int *got_picture_ptr,
367                            AVPacket *avpkt)
368 {
369     FrameThreadContext *fctx = avctx->internal->thread_ctx;
370     int finished = fctx->next_finished;
371     PerThreadContext *p;
372     int err;
373
374     /*
375      * Submit a packet to the next decoding thread.
376      */
377
378     p = &fctx->threads[fctx->next_decoding];
379     err = update_context_from_user(p->avctx, avctx);
380     if (err) return err;
381     err = submit_packet(p, avpkt);
382     if (err) return err;
383
384     /*
385      * If we're still receiving the initial packets, don't return a frame.
386      */
387
388     if (fctx->delaying) {
389         if (fctx->next_decoding >= (avctx->thread_count-1)) fctx->delaying = 0;
390
391         *got_picture_ptr=0;
392         if (avpkt->size)
393             return avpkt->size;
394     }
395
396     /*
397      * Return the next available frame from the oldest thread.
398      * If we're at the end of the stream, then we have to skip threads that
399      * didn't output a frame, because we don't want to accidentally signal
400      * EOF (avpkt->size == 0 && *got_picture_ptr == 0).
401      */
402
403     do {
404         p = &fctx->threads[finished++];
405
406         if (p->state != STATE_INPUT_READY) {
407             pthread_mutex_lock(&p->progress_mutex);
408             while (p->state != STATE_INPUT_READY)
409                 pthread_cond_wait(&p->output_cond, &p->progress_mutex);
410             pthread_mutex_unlock(&p->progress_mutex);
411         }
412
413         av_frame_move_ref(picture, p->frame);
414         *got_picture_ptr = p->got_frame;
415         picture->pkt_dts = p->avpkt.dts;
416
417         /*
418          * A later call with avkpt->size == 0 may loop over all threads,
419          * including this one, searching for a frame to return before being
420          * stopped by the "finished != fctx->next_finished" condition.
421          * Make sure we don't mistakenly return the same frame again.
422          */
423         p->got_frame = 0;
424
425         if (finished >= avctx->thread_count) finished = 0;
426     } while (!avpkt->size && !*got_picture_ptr && finished != fctx->next_finished);
427
428     update_context_from_thread(avctx, p->avctx, 1);
429
430     if (fctx->next_decoding >= avctx->thread_count) fctx->next_decoding = 0;
431
432     fctx->next_finished = finished;
433
434     /* return the size of the consumed packet if no error occurred */
435     return (p->result >= 0) ? avpkt->size : p->result;
436 }
437
438 void ff_thread_report_progress(ThreadFrame *f, int n, int field)
439 {
440     PerThreadContext *p;
441     int *progress = f->progress ? (int*)f->progress->data : NULL;
442
443     if (!progress || progress[field] >= n) return;
444
445     p = f->owner->internal->thread_ctx;
446
447     if (f->owner->debug&FF_DEBUG_THREADS)
448         av_log(f->owner, AV_LOG_DEBUG, "%p finished %d field %d\n", progress, n, field);
449
450     pthread_mutex_lock(&p->progress_mutex);
451     progress[field] = n;
452     pthread_cond_broadcast(&p->progress_cond);
453     pthread_mutex_unlock(&p->progress_mutex);
454 }
455
456 void ff_thread_await_progress(ThreadFrame *f, int n, int field)
457 {
458     PerThreadContext *p;
459     int *progress = f->progress ? (int*)f->progress->data : NULL;
460
461     if (!progress || progress[field] >= n) return;
462
463     p = f->owner->internal->thread_ctx;
464
465     if (f->owner->debug&FF_DEBUG_THREADS)
466         av_log(f->owner, AV_LOG_DEBUG, "thread awaiting %d field %d from %p\n", n, field, progress);
467
468     pthread_mutex_lock(&p->progress_mutex);
469     while (progress[field] < n)
470         pthread_cond_wait(&p->progress_cond, &p->progress_mutex);
471     pthread_mutex_unlock(&p->progress_mutex);
472 }
473
474 void ff_thread_finish_setup(AVCodecContext *avctx) {
475     PerThreadContext *p = avctx->internal->thread_ctx;
476
477     if (!(avctx->active_thread_type&FF_THREAD_FRAME)) return;
478
479     pthread_mutex_lock(&p->progress_mutex);
480     p->state = STATE_SETUP_FINISHED;
481     pthread_cond_broadcast(&p->progress_cond);
482     pthread_mutex_unlock(&p->progress_mutex);
483 }
484
485 /// Waits for all threads to finish.
486 static void park_frame_worker_threads(FrameThreadContext *fctx, int thread_count)
487 {
488     int i;
489
490     for (i = 0; i < thread_count; i++) {
491         PerThreadContext *p = &fctx->threads[i];
492
493         if (p->state != STATE_INPUT_READY) {
494             pthread_mutex_lock(&p->progress_mutex);
495             while (p->state != STATE_INPUT_READY)
496                 pthread_cond_wait(&p->output_cond, &p->progress_mutex);
497             pthread_mutex_unlock(&p->progress_mutex);
498         }
499     }
500 }
501
502 void ff_frame_thread_free(AVCodecContext *avctx, int thread_count)
503 {
504     FrameThreadContext *fctx = avctx->internal->thread_ctx;
505     const AVCodec *codec = avctx->codec;
506     int i;
507
508     park_frame_worker_threads(fctx, thread_count);
509
510     if (fctx->prev_thread && fctx->prev_thread != fctx->threads)
511         update_context_from_thread(fctx->threads->avctx, fctx->prev_thread->avctx, 0);
512
513     fctx->die = 1;
514
515     for (i = 0; i < thread_count; i++) {
516         PerThreadContext *p = &fctx->threads[i];
517
518         pthread_mutex_lock(&p->mutex);
519         pthread_cond_signal(&p->input_cond);
520         pthread_mutex_unlock(&p->mutex);
521
522         if (p->thread_init)
523             pthread_join(p->thread, NULL);
524
525         if (codec->close)
526             codec->close(p->avctx);
527
528         avctx->codec = NULL;
529
530         release_delayed_buffers(p);
531         av_frame_free(&p->frame);
532     }
533
534     for (i = 0; i < thread_count; i++) {
535         PerThreadContext *p = &fctx->threads[i];
536
537         pthread_mutex_destroy(&p->mutex);
538         pthread_mutex_destroy(&p->progress_mutex);
539         pthread_cond_destroy(&p->input_cond);
540         pthread_cond_destroy(&p->progress_cond);
541         pthread_cond_destroy(&p->output_cond);
542         av_packet_unref(&p->avpkt);
543         av_freep(&p->released_buffers);
544
545         if (i) {
546             av_freep(&p->avctx->priv_data);
547             av_freep(&p->avctx->slice_offset);
548         }
549
550         av_freep(&p->avctx->internal);
551         av_freep(&p->avctx);
552     }
553
554     av_freep(&fctx->threads);
555     pthread_mutex_destroy(&fctx->buffer_mutex);
556     av_freep(&avctx->internal->thread_ctx);
557 }
558
559 int ff_frame_thread_init(AVCodecContext *avctx)
560 {
561     int thread_count = avctx->thread_count;
562     const AVCodec *codec = avctx->codec;
563     AVCodecContext *src = avctx;
564     FrameThreadContext *fctx;
565     int i, err = 0;
566
567 #if HAVE_W32THREADS
568     w32thread_init();
569 #endif
570
571     if (!thread_count) {
572         int nb_cpus = av_cpu_count();
573         av_log(avctx, AV_LOG_DEBUG, "detected %d logical cores\n", nb_cpus);
574         // use number of cores + 1 as thread count if there is more than one
575         if (nb_cpus > 1)
576             thread_count = avctx->thread_count = FFMIN(nb_cpus + 1, MAX_AUTO_THREADS);
577         else
578             thread_count = avctx->thread_count = 1;
579     }
580
581     if (thread_count <= 1) {
582         avctx->active_thread_type = 0;
583         return 0;
584     }
585
586     avctx->internal->thread_ctx = fctx = av_mallocz(sizeof(FrameThreadContext));
587
588     fctx->threads = av_mallocz(sizeof(PerThreadContext) * thread_count);
589     pthread_mutex_init(&fctx->buffer_mutex, NULL);
590     fctx->delaying = 1;
591
592     for (i = 0; i < thread_count; i++) {
593         AVCodecContext *copy = av_malloc(sizeof(AVCodecContext));
594         PerThreadContext *p  = &fctx->threads[i];
595
596         pthread_mutex_init(&p->mutex, NULL);
597         pthread_mutex_init(&p->progress_mutex, NULL);
598         pthread_cond_init(&p->input_cond, NULL);
599         pthread_cond_init(&p->progress_cond, NULL);
600         pthread_cond_init(&p->output_cond, NULL);
601
602         p->frame = av_frame_alloc();
603         if (!p->frame) {
604             err = AVERROR(ENOMEM);
605             goto error;
606         }
607
608         p->parent = fctx;
609         p->avctx  = copy;
610
611         if (!copy) {
612             err = AVERROR(ENOMEM);
613             goto error;
614         }
615
616         *copy = *src;
617
618         copy->internal = av_malloc(sizeof(AVCodecInternal));
619         if (!copy->internal) {
620             err = AVERROR(ENOMEM);
621             goto error;
622         }
623         *copy->internal = *src->internal;
624         copy->internal->thread_ctx = p;
625         copy->internal->pkt = &p->avpkt;
626
627         if (!i) {
628             src = copy;
629
630             if (codec->init)
631                 err = codec->init(copy);
632
633             update_context_from_thread(avctx, copy, 1);
634         } else {
635             copy->priv_data = av_malloc(codec->priv_data_size);
636             if (!copy->priv_data) {
637                 err = AVERROR(ENOMEM);
638                 goto error;
639             }
640             memcpy(copy->priv_data, src->priv_data, codec->priv_data_size);
641             copy->internal->is_copy = 1;
642
643             if (codec->init_thread_copy)
644                 err = codec->init_thread_copy(copy);
645         }
646
647         if (err) goto error;
648
649         if (!pthread_create(&p->thread, NULL, frame_worker_thread, p))
650             p->thread_init = 1;
651     }
652
653     return 0;
654
655 error:
656     ff_frame_thread_free(avctx, i+1);
657
658     return err;
659 }
660
661 void ff_thread_flush(AVCodecContext *avctx)
662 {
663     int i;
664     FrameThreadContext *fctx = avctx->internal->thread_ctx;
665
666     if (!fctx) return;
667
668     park_frame_worker_threads(fctx, avctx->thread_count);
669     if (fctx->prev_thread) {
670         if (fctx->prev_thread != &fctx->threads[0])
671             update_context_from_thread(fctx->threads[0].avctx, fctx->prev_thread->avctx, 0);
672     }
673
674     fctx->next_decoding = fctx->next_finished = 0;
675     fctx->delaying = 1;
676     fctx->prev_thread = NULL;
677     for (i = 0; i < avctx->thread_count; i++) {
678         PerThreadContext *p = &fctx->threads[i];
679         // Make sure decode flush calls with size=0 won't return old frames
680         p->got_frame = 0;
681         av_frame_unref(p->frame);
682
683         release_delayed_buffers(p);
684
685         if (avctx->codec->flush)
686             avctx->codec->flush(p->avctx);
687     }
688 }
689
690 int ff_thread_get_buffer(AVCodecContext *avctx, ThreadFrame *f, int flags)
691 {
692     PerThreadContext *p = avctx->internal->thread_ctx;
693     int err;
694
695     f->owner = avctx;
696
697     if (!(avctx->active_thread_type & FF_THREAD_FRAME))
698         return ff_get_buffer(avctx, f->f, flags);
699
700     if (p->state != STATE_SETTING_UP &&
701         (avctx->codec->update_thread_context || !avctx->thread_safe_callbacks)) {
702         av_log(avctx, AV_LOG_ERROR, "get_buffer() cannot be called after ff_thread_finish_setup()\n");
703         return -1;
704     }
705
706     if (avctx->internal->allocate_progress) {
707         int *progress;
708         f->progress = av_buffer_alloc(2 * sizeof(int));
709         if (!f->progress) {
710             return AVERROR(ENOMEM);
711         }
712         progress = (int*)f->progress->data;
713
714         progress[0] = progress[1] = -1;
715     }
716
717     pthread_mutex_lock(&p->parent->buffer_mutex);
718 FF_DISABLE_DEPRECATION_WARNINGS
719     if (avctx->thread_safe_callbacks || (
720 #if FF_API_GET_BUFFER
721         !avctx->get_buffer &&
722 #endif
723         avctx->get_buffer2 == avcodec_default_get_buffer2)) {
724 FF_ENABLE_DEPRECATION_WARNINGS
725         err = ff_get_buffer(avctx, f->f, flags);
726     } else {
727         p->requested_frame = f->f;
728         p->requested_flags = flags;
729         p->state = STATE_GET_BUFFER;
730         pthread_mutex_lock(&p->progress_mutex);
731         pthread_cond_signal(&p->progress_cond);
732
733         while (p->state != STATE_SETTING_UP)
734             pthread_cond_wait(&p->progress_cond, &p->progress_mutex);
735
736         err = p->result;
737
738         pthread_mutex_unlock(&p->progress_mutex);
739
740     }
741     if (!avctx->thread_safe_callbacks && !avctx->codec->update_thread_context)
742         ff_thread_finish_setup(avctx);
743
744     if (err)
745         av_buffer_unref(&f->progress);
746
747     pthread_mutex_unlock(&p->parent->buffer_mutex);
748
749     return err;
750 }
751
752 void ff_thread_release_buffer(AVCodecContext *avctx, ThreadFrame *f)
753 {
754     PerThreadContext *p = avctx->internal->thread_ctx;
755     FrameThreadContext *fctx;
756     AVFrame *dst, *tmp;
757 FF_DISABLE_DEPRECATION_WARNINGS
758     int can_direct_free = !(avctx->active_thread_type & FF_THREAD_FRAME) ||
759                           avctx->thread_safe_callbacks                   ||
760                           (
761 #if FF_API_GET_BUFFER
762                            !avctx->get_buffer &&
763 #endif
764                            avctx->get_buffer2 == avcodec_default_get_buffer2);
765 FF_ENABLE_DEPRECATION_WARNINGS
766
767     if (!f->f || !f->f->buf[0])
768         return;
769
770     if (avctx->debug & FF_DEBUG_BUFFERS)
771         av_log(avctx, AV_LOG_DEBUG, "thread_release_buffer called on pic %p\n", f);
772
773     av_buffer_unref(&f->progress);
774     f->owner    = NULL;
775
776     if (can_direct_free) {
777         av_frame_unref(f->f);
778         return;
779     }
780
781     fctx = p->parent;
782     pthread_mutex_lock(&fctx->buffer_mutex);
783
784     if (p->num_released_buffers + 1 >= INT_MAX / sizeof(*p->released_buffers))
785         goto fail;
786     tmp = av_fast_realloc(p->released_buffers, &p->released_buffers_allocated,
787                           (p->num_released_buffers + 1) *
788                           sizeof(*p->released_buffers));
789     if (!tmp)
790         goto fail;
791     p->released_buffers = tmp;
792
793     dst = &p->released_buffers[p->num_released_buffers];
794     av_frame_move_ref(dst, f->f);
795
796     p->num_released_buffers++;
797
798 fail:
799     pthread_mutex_unlock(&fctx->buffer_mutex);
800 }