From 9442e37ea7c372d8b8aca39c901e23edeae93c61 Mon Sep 17 00:00:00 2001 From: Tim-Philipp Müller Date: Tue, 9 Dec 2008 10:28:11 +0000 Subject: ext/dv/gstdvdemux.c: Restore previous behaviour of not passing QoS and navigation events upstream, which presumably w... Original commit message from CVS: * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_src_event): Restore previous behaviour of not passing QoS and navigation events upstream, which presumably wasn't meant to be changed. --- ext/dv/gstdvdemux.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'ext/dv') diff --git a/ext/dv/gstdvdemux.c b/ext/dv/gstdvdemux.c index a12b2d67..39340116 100644 --- a/ext/dv/gstdvdemux.c +++ b/ext/dv/gstdvdemux.c @@ -1201,9 +1201,12 @@ gst_dvdemux_handle_src_event (GstPad * pad, GstEvent * event) break; case GST_EVENT_QOS: /* we can't really (yet) do QoS */ + res = FALSE; + break; case GST_EVENT_NAVIGATION: /* no navigation either... */ res = FALSE; + break; default: res = gst_pad_push_event (dvdemux->sinkpad, event); event = NULL; -- cgit