From fce68c93554803801c32c1b20509bfa8d496b02a Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Mon, 11 Mar 2013 18:04:58 +0100 Subject: pthread: unref the decoded but not returned frames on close. Fixes memleaks when frame mt is used and the decoder is not flushed at the end. --- libavcodec/pthread.c | 1 + 1 file changed, 1 insertion(+) (limited to 'libavcodec/pthread.c') diff --git a/libavcodec/pthread.c b/libavcodec/pthread.c index 280c08ed8b..70610909fb 100644 --- a/libavcodec/pthread.c +++ b/libavcodec/pthread.c @@ -749,6 +749,7 @@ static void frame_thread_free(AVCodecContext *avctx, int thread_count) avctx->codec = NULL; release_delayed_buffers(p); + av_frame_unref(&p->frame); } for (i = 0; i < thread_count; i++) { -- cgit v1.2.3