mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
Added more funky cases
Original commit message from CVS: Added more funky cases
This commit is contained in:
parent
52e2ba6b1e
commit
73f7bf6677
1 changed files with 9 additions and 4 deletions
|
@ -66,13 +66,18 @@ dynamic_connect (GstElement * element, GstPad * newpad, gpointer data)
|
|||
return;
|
||||
}
|
||||
}
|
||||
|
||||
/* try to find a target pad if we don't know it yet */
|
||||
if (!dc->target_pad) {
|
||||
if (!GST_PAD_IS_CONNECTED (newpad)) {
|
||||
dc->target_pad = gst_element_get_compatible_pad (dc->target_element, newpad);
|
||||
warn = FALSE;
|
||||
}
|
||||
|
||||
if (!GST_PAD_IS_CONNECTED (newpad)) {
|
||||
else {
|
||||
return;
|
||||
}
|
||||
}
|
||||
if (!GST_PAD_IS_CONNECTED (dc->target_pad)) {
|
||||
gst_element_set_state (dc->pipeline, GST_STATE_PAUSED);
|
||||
if (!gst_pad_connect (newpad, dc->target_pad) && warn) {
|
||||
g_warning ("could not connect %s:%s to %s:%s", GST_DEBUG_PAD_NAME (newpad),
|
||||
|
|
Loading…
Reference in a new issue