Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/GStreamer/gstreamer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Hervey <edward@centricular.com>2022-11-12 12:03:48 +0300
committerEdward Hervey <bilboed@bilboed.com>2022-11-12 12:33:51 +0300
commit9b670287597892ed0855bea4776358c7086cab3b (patch)
tree13e53252310c9ed97366d5590641cae2d7e16226
parent90a1d9f873954412323647208b4ea7022df0659a (diff)
transcodebin: Actually free the TranscodingStream structure
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/3390>
-rw-r--r--subprojects/gst-plugins-bad/gst/transcode/gsttranscodebin.c2
1 files changed, 2 insertions, 0 deletions
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