From 22a6287b8e021428f958216db9995e8dacebcaa7 Mon Sep 17 00:00:00 2001 From: Philippe Normand Date: Wed, 14 Feb 2018 10:21:49 +0000 Subject: [PATCH] playbin3: fix source-setup signal emission Previous code would pass 0 as source element. --- gst/playback/gstplaybin3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/playback/gstplaybin3.c b/gst/playback/gstplaybin3.c index 6e4bf72d6a..d5cc5d1c5b 100644 --- a/gst/playback/gstplaybin3.c +++ b/gst/playback/gstplaybin3.c @@ -4394,7 +4394,7 @@ source_setup_cb (GstElement * element, GstElement * source, GstSourceGroup * group) { g_signal_emit (group->playbin, gst_play_bin3_signals[SIGNAL_SOURCE_SETUP], 0, - 0, source); + source); } /* must be called with PLAY_BIN_LOCK */