From d4b48ec70d74ba81a52251bb347a13851de85eac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Tue, 23 Jul 2013 09:14:23 +0200 Subject: [PATCH] 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 --- gst/encoding/gststreamcombiner.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/encoding/gststreamcombiner.c b/gst/encoding/gststreamcombiner.c index e41914fe71..42c959d1f7 100644 --- a/gst/encoding/gststreamcombiner.c +++ b/gst/encoding/gststreamcombiner.c @@ -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; }