mpegpsdemux: minor clean-up

This commit is contained in:
Tim-Philipp Müller 2013-09-02 23:28:38 +01:00
parent e43d1959a8
commit 310a633afb

View 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;
}