streamcombiner: Proxy all sink events downstream

Thanks to Mathieu Duponchelle for noticing this regression
introduced with the last change.

https://bugzilla.gnome.org/show_bug.cgi?id=704706
This commit is contained in:
Sebastian Dröge 2013-07-23 09:14:23 +02:00
parent b4365551d0
commit d4b48ec70d

View file

@ -157,7 +157,7 @@ gst_stream_combiner_sink_event (GstPad * pad, GstObject * parent,
/* FLUSH_STOP : lock, unmark as flushing, unlock, if was flushing forward */
/* OTHER : if selected pad forward */
if (event)
return gst_pad_event_default (pad, parent, event);
return gst_pad_push_event (stream_combiner->srcpad, event);
return FALSE;
}