summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libavcodec/pthread.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/pthread.c b/libavcodec/pthread.c
index 4a02823dde..2e4c6a880e 100644
--- a/libavcodec/pthread.c
+++ b/libavcodec/pthread.c
@@ -884,6 +884,9 @@ void ff_thread_flush(AVCodecContext *avctx)
fctx->next_decoding = fctx->next_finished = 0;
fctx->delaying = 1;
fctx->prev_thread = NULL;
+ // Make sure decode flush calls with size=0 won't return old frames
+ for (int i = 0; i < avctx->thread_count; i++)
+ fctx->threads[i].got_frame = 0;
}
static int *allocate_progress(PerThreadContext *p)