mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 04:36:20 +00:00
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.
This commit is contained in:
parent
5dbebb29ff
commit
9442e37ea7
2 changed files with 9 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2008-12-09 Tim-Philipp Müller <tim.muller at collabora co uk>
|
||||||
|
|
||||||
|
* 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.
|
||||||
|
|
||||||
2008-12-09 Sebastian Dröge <sebastian.droege@collabora.co.uk>
|
2008-12-09 Sebastian Dröge <sebastian.droege@collabora.co.uk>
|
||||||
|
|
||||||
* ext/dv/gstdvdemux.c: (gst_dvdemux_add_video_pad),
|
* ext/dv/gstdvdemux.c: (gst_dvdemux_add_video_pad),
|
||||||
|
|
|
@ -1201,9 +1201,12 @@ gst_dvdemux_handle_src_event (GstPad * pad, GstEvent * event)
|
||||||
break;
|
break;
|
||||||
case GST_EVENT_QOS:
|
case GST_EVENT_QOS:
|
||||||
/* we can't really (yet) do QoS */
|
/* we can't really (yet) do QoS */
|
||||||
|
res = FALSE;
|
||||||
|
break;
|
||||||
case GST_EVENT_NAVIGATION:
|
case GST_EVENT_NAVIGATION:
|
||||||
/* no navigation either... */
|
/* no navigation either... */
|
||||||
res = FALSE;
|
res = FALSE;
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
res = gst_pad_push_event (dvdemux->sinkpad, event);
|
res = gst_pad_push_event (dvdemux->sinkpad, event);
|
||||||
event = NULL;
|
event = NULL;
|
||||||
|
|
Loading…
Reference in a new issue