From 9b670287597892ed0855bea4776358c7086cab3b Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Sat, 12 Nov 2022 10:03:48 +0100 Subject: [PATCH] transcodebin: Actually free the TranscodingStream structure Part-of: --- subprojects/gst-plugins-bad/gst/transcode/gsttranscodebin.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/subprojects/gst-plugins-bad/gst/transcode/gsttranscodebin.c b/subprojects/gst-plugins-bad/gst/transcode/gsttranscodebin.c index 3e764714a4..d8536c54cb 100644 --- a/subprojects/gst-plugins-bad/gst/transcode/gsttranscodebin.c +++ b/subprojects/gst-plugins-bad/gst/transcode/gsttranscodebin.c @@ -90,6 +90,8 @@ transcoding_stream_free (TranscodingStream * tstream) { gst_object_unref (tstream->stream); gst_object_unref (tstream->encodebin_pad); + + g_free (tstream); } typedef struct -- 2.34.1