mpegpsdemux: minor clean-up
authorTim-Philipp Müller <tim@centricular.net>
Mon, 2 Sep 2013 22:28:38 +0000 (23:28 +0100)
committerTim-Philipp Müller <tim@centricular.net>
Mon, 2 Sep 2013 22:28:38 +0000 (23:28 +0100)
gst/mpegdemux/gstmpegdemux.c

index ec7f475..815fffa 100644 (file)
@@ -708,14 +708,12 @@ gst_flups_demux_send_event (GstFluPSDemux * demux, GstEvent * event)
     GstFluPSStream *stream = demux->streams_found[i];
 
     if (stream) {
-      (void) gst_event_ref (event);
-
-      if (!gst_pad_push_event (stream->pad, event)) {
-        GST_DEBUG_OBJECT (stream, "event %s was not handled correctly",
+      if (!gst_pad_push_event (stream->pad, gst_event_ref (event))) {
+        GST_DEBUG_OBJECT (stream->pad, "%s event was not handled",
             GST_EVENT_TYPE_NAME (event));
       } else {
         /* If at least one push returns TRUE, then we return TRUE. */
-        GST_DEBUG_OBJECT (stream, "event %s was handled correctly",
+        GST_DEBUG_OBJECT (stream->pad, "%s event was handled",
             GST_EVENT_TYPE_NAME (event));
         ret = TRUE;
       }