mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 22:36:33 +00:00
playbin2: Only consider the audio/video sinks in autoplug_continue for the normal uridecodebin
Considering them for the subtitle uridecodebin will add audio/video streams that might be in a file used as subtitle file.
This commit is contained in:
parent
a08227505f
commit
4e49d58917
1 changed files with 8 additions and 0 deletions
|
@ -2972,9 +2972,17 @@ autoplug_continue_cb (GstElement * element, GstPad * pad, GstCaps * caps,
|
|||
ret = !gst_caps_can_intersect (caps, subcaps);
|
||||
gst_caps_unref (subcaps);
|
||||
}
|
||||
/* If autoplugging can stop don't do additional checks */
|
||||
if (!ret)
|
||||
goto done;
|
||||
|
||||
/* If this is from the subtitle uridecodebin we don't need to
|
||||
* check the audio and video sink */
|
||||
if (group->suburidecodebin
|
||||
&& gst_object_has_ancestor (GST_OBJECT_CAST (element),
|
||||
GST_OBJECT_CAST (group->suburidecodebin)))
|
||||
goto done;
|
||||
|
||||
if ((sink = group->playbin->audio_sink)) {
|
||||
sinkpad = gst_element_get_static_pad (sink, "sink");
|
||||
if (sinkpad) {
|
||||
|
|
Loading…
Reference in a new issue