]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/pthread_frame.c
lavu/log: add device categories
[ffmpeg] / libavcodec / pthread_frame.c
index 42a3c9b247676c4870bbbb69a0a02c1c8733535f..d7479d21429a17fd42adbed04d94bd97a68bd05b 100644 (file)
@@ -727,8 +727,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;
@@ -741,6 +739,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);
     }
 }