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:04:26 +0300
committerEdward Hervey <bilboed@bilboed.com>2022-11-12 12:33:51 +0300
commita301c92ca30efa460f57c5e3a323ae353439d2e5 (patch)
tree34f7f59bda6cef9909995b9287b1b126feace45e
parent9b670287597892ed0855bea4776358c7086cab3b (diff)
transcodebin: Don't leak profile
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/3390>
-rw-r--r--subprojects/gst-plugins-bad/gst/transcode/gsttranscodebin.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/subprojects/gst-plugins-bad/gst/transcode/gsttranscodebin.c b/subprojects/gst-plugins-bad/gst/transcode/gsttranscodebin.c
index d8536c54cb..42dfbf458e 100644
--- a/subprojects/gst-plugins-bad/gst/transcode/gsttranscodebin.c
+++ b/subprojects/gst-plugins-bad/gst/transcode/gsttranscodebin.c
@@ -854,6 +854,7 @@ gst_transcode_bin_dispose (GObject * object)
g_clear_object (&self->video_filter);
g_clear_object (&self->audio_filter);
g_clear_pointer (&self->transcoding_streams, g_ptr_array_unref);
+ gst_clear_object (&self->profile);
G_OBJECT_CLASS (gst_transcode_bin_parent_class)->dispose (object);
}