mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-05 23:59:55 +00:00
/me is an idiot
Original commit message from CVS: /me is an idiot
This commit is contained in:
parent
9a476d9362
commit
114c923c9f
1 changed files with 2 additions and 1 deletions
|
@ -1203,7 +1203,8 @@ gst_schedule_add_element (GstSchedule *sched, GstElement *element)
|
|||
|
||||
// if the peer element exists and is a candidate
|
||||
if (GST_PAD_PEER(pad)) {
|
||||
if (GST_ELEMENT_SCHED(GST_PAD_PARENT(pad)) == GST_ELEMENT_SCHED(GST_PAD_PARENT(GST_PAD_PEER(pad)))) {
|
||||
peerelement = GST_PAD_PARENT( GST_PAD_PEER (pad) );
|
||||
if (GST_ELEMENT_SCHED(element) == GST_ELEMENT_SCHED(peerelement)) {
|
||||
GST_INFO (GST_CAT_SCHEDULING, "peer is in same schedule, chaining together");
|
||||
// make sure that the two elements are in the same chain
|
||||
gst_schedule_chain_elements (sched,element,peerelement);
|
||||
|
|
Loading…
Reference in a new issue