From: Jan Schmidt Date: Sat, 19 Nov 2022 08:50:38 +0000 (+1100) Subject: examples/sendrecv: Remove extra unref of webrtcbin X-Git-Tag: 1.22.0~322 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=81775882509c6db43e29aa63fcd2ad86f877ff94;p=platform%2Fupstream%2Fgstreamer.git examples/sendrecv: Remove extra unref of webrtcbin The code now constructs webrtcbin with a floating ref and then gives it to the pipeline. The extra unref is one too many. Part-of: --- diff --git a/subprojects/gst-examples/webrtc/sendrecv/gst/webrtc-sendrecv.c b/subprojects/gst-examples/webrtc/sendrecv/gst/webrtc-sendrecv.c index e71fe3b..7e1c88d 100644 --- a/subprojects/gst-examples/webrtc/sendrecv/gst/webrtc-sendrecv.c +++ b/subprojects/gst-examples/webrtc/sendrecv/gst/webrtc-sendrecv.c @@ -481,6 +481,7 @@ start_pipeline (gboolean create_offer, guint opus_pt, guint vp8_pt) g_assert_nonnull (webrtc1); gst_util_set_object_arg (G_OBJECT (webrtc1), "bundle-policy", "max-bundle"); + /* Takes ownership of each: */ gst_bin_add_many (GST_BIN (pipe1), audio_bin, video_bin, webrtc1, NULL); if (!gst_element_link (audio_bin, webrtc1)) { @@ -547,8 +548,6 @@ start_pipeline (gboolean create_offer, guint opus_pt, guint vp8_pt) /* Incoming streams will be exposed via this signal */ g_signal_connect (webrtc1, "pad-added", G_CALLBACK (on_incoming_stream), pipe1); - /* Lifetime is the same as the pipeline itself */ - gst_object_unref (webrtc1); g_timeout_add (100, (GSourceFunc) webrtcbin_get_stats, webrtc1);