summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian.droege@collabora.co.uk>2013-05-09 12:15:48 +0200
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2013-05-09 12:15:48 +0200
commit1d404780145950c597d6b7c78b4a48463641b5cb (patch)
tree9f11c89ef8e9864b02378de6b0d05f7e07eff0f9 /plugins
parent8bedcf450f2863798385e43802e74f7a5d0cbe5b (diff)
inputselector: Forward all sticky events, including stream-start
Diffstat (limited to 'plugins')
-rw-r--r--plugins/elements/gstinputselector.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/elements/gstinputselector.c b/plugins/elements/gstinputselector.c
index a769f5d50..0d6d0ffef 100644
--- a/plugins/elements/gstinputselector.c
+++ b/plugins/elements/gstinputselector.c
@@ -745,7 +745,7 @@ forward_sticky_events (GstPad * sinkpad, GstEvent ** event, gpointer user_data)
gst_event_set_seqnum (e, GST_SELECTOR_PAD_CAST (sinkpad)->segment_seqnum);
gst_pad_push_event (sel->srcpad, e);
- } else if (GST_EVENT_TYPE (*event) != GST_EVENT_STREAM_START) {
+ } else {
gst_pad_push_event (sel->srcpad, gst_event_ref (*event));
}