ext/dv/gstdvdemux.c: Forward all events upstream unless it's something we really...
authorSebastian Dröge <slomo@circular-chaos.org>
Mon, 8 Dec 2008 18:31:00 +0000 (18:31 +0000)
committerSebastian Dröge <slomo@circular-chaos.org>
Mon, 8 Dec 2008 18:31:00 +0000 (18:31 +0000)
Original commit message from CVS:
* ext/dv/gstdvdemux.c: (gst_dvdemux_handle_src_event):
Forward all events upstream unless it's something we really
don't handle. This fixes latency configuration of pipelines.

ChangeLog
ext/dv/gstdvdemux.c

index 0fef830..83ff611 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
 2008-12-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
 
+       * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_src_event):
+       Forward all events upstream unless it's something we really
+       don't handle. This fixes latency configuration of pipelines.
+
+2008-12-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
+
        * ext/dv/gstdv.c: (plugin_init):
        * ext/dv/gstdvdec.c: (gst_dvdec_class_init):
        * ext/dv/gstdvdemux.c: (gst_dvdemux_class_init):
index 0233c1f..916a34d 100644 (file)
@@ -1166,11 +1166,14 @@ gst_dvdemux_handle_src_event (GstPad * pad, GstEvent * event)
       /* we can't really (yet) do QoS */
     case GST_EVENT_NAVIGATION:
       /* no navigation either... */
-    default:
       res = FALSE;
+    default:
+      res = gst_pad_push_event (dvdemux->sinkpad, event);
+      event = NULL;
       break;
   }
-  gst_event_unref (event);
+  if (event)
+    gst_event_unref (event);
 
   gst_object_unref (dvdemux);