]> git.sesse.net Git - ffmpeg/commitdiff
pthread_frame: Unreference hw_frames_ctx on per-thread codec contexts
authorMark Thompson <sw@jkqxz.net>
Thu, 3 Nov 2016 00:13:35 +0000 (00:13 +0000)
committerwm4 <nfxjfg@googlemail.com>
Tue, 21 Mar 2017 05:16:49 +0000 (06:16 +0100)
When decoding with threads enabled, the get_format callback will be
called with one of the per-thread codec contexts rather than with the
outer context.  If a hwaccel is in use too, this will add a reference
to the hardware frames context on that codec context, which will then
propagate to all of the other per-thread contexts for decoding.  Once
the decoder finishes, however, the per-thread contexts are not freed
normally, so these references leak.

Merges Libav commit fd0fae60.

Signed-off-by: wm4 <nfxjfg@googlemail.com>
libavcodec/pthread_frame.c

index 18f89ee73de805d0045842db4865372d97a2875d..b16c1b9928b4e5af00e31a2c24a6019eefd3d8af 100644 (file)
@@ -620,8 +620,11 @@ void ff_frame_thread_free(AVCodecContext *avctx, int thread_count)
             av_freep(&p->avctx->slice_offset);
         }
 
-        if (p->avctx)
+        if (p->avctx) {
             av_freep(&p->avctx->internal);
+            av_buffer_unref(&p->avctx->hw_frames_ctx);
+        }
+
         av_freep(&p->avctx);
     }