diff options
author | Anton Khirnov <anton@khirnov.net> | 2014-02-27 21:36:33 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2014-02-28 21:55:46 +0100 |
commit | d1f9563d502037239185c11578cc614bdf0c5870 (patch) | |
tree | 37a1cf59e9042d64d9e89cf2a30ba6d8ab00cbca /libavcodec | |
parent | bc6461c2861b7d482a037d3b3e2b44ad48805fa0 (diff) | |
download | ffmpeg-streaming-d1f9563d502037239185c11578cc614bdf0c5870.zip ffmpeg-streaming-d1f9563d502037239185c11578cc614bdf0c5870.tar.gz |
pthread_frame: flush all threads on flush, not just the first one
avcodec_flush_buffers() must release all internally held references
according to its documentation, for which all the threads need to be
flushed.
CC:libav-stable@libav.org
Bug-Id: vlc/9665
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/pthread_frame.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libavcodec/pthread_frame.c b/libavcodec/pthread_frame.c index 36b4fff..1af8ff5 100644 --- a/libavcodec/pthread_frame.c +++ b/libavcodec/pthread_frame.c @@ -672,8 +672,6 @@ void ff_thread_flush(AVCodecContext *avctx) if (fctx->prev_thread) { if (fctx->prev_thread != &fctx->threads[0]) update_context_from_thread(fctx->threads[0].avctx, fctx->prev_thread->avctx, 0); - if (avctx->codec->flush) - avctx->codec->flush(fctx->threads[0].avctx); } fctx->next_decoding = fctx->next_finished = 0; @@ -686,6 +684,9 @@ void ff_thread_flush(AVCodecContext *avctx) av_frame_unref(p->frame); release_delayed_buffers(p); + + if (avctx->codec->flush) + avctx->codec->flush(p->avctx); } } |