mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 01:45:33 +00:00
playbin3: fix source-setup signal emission
Previous code would pass 0 as source element.
This commit is contained in:
parent
466b868459
commit
22a6287b8e
1 changed files with 1 additions and 1 deletions
|
@ -4394,7 +4394,7 @@ source_setup_cb (GstElement * element, GstElement * source,
|
||||||
GstSourceGroup * group)
|
GstSourceGroup * group)
|
||||||
{
|
{
|
||||||
g_signal_emit (group->playbin, gst_play_bin3_signals[SIGNAL_SOURCE_SETUP], 0,
|
g_signal_emit (group->playbin, gst_play_bin3_signals[SIGNAL_SOURCE_SETUP], 0,
|
||||||
0, source);
|
source);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* must be called with PLAY_BIN_LOCK */
|
/* must be called with PLAY_BIN_LOCK */
|
||||||
|
|
Loading…
Reference in a new issue