dvdemux: Let upstream events go through upstream

There's no real reason to avoid sending QOS/NAVIGATION events upstrea.
Some elements might want to have that information.

Also remove downstream-only CAPS event handling and minimize code
This commit is contained in:
Edward Hervey 2016-06-23 15:17:36 +02:00 committed by Edward Hervey
parent 67c2b93106
commit 14978d9229

View file

@ -1220,7 +1220,7 @@ static gboolean
gst_dvdemux_handle_src_event (GstPad * pad, GstObject * parent,
GstEvent * event)
{
gboolean res = TRUE;
gboolean res = FALSE;
GstDVDemux *dvdemux;
dvdemux = GST_DVDEMUX (parent);
@ -1230,25 +1230,12 @@ gst_dvdemux_handle_src_event (GstPad * pad, GstObject * parent,
/* seek handler is installed based on scheduling mode */
if (dvdemux->seek_handler)
res = dvdemux->seek_handler (dvdemux, pad, event);
else
res = FALSE;
break;
case GST_EVENT_QOS:
/* we can't really (yet) do QoS */
res = FALSE;
break;
case GST_EVENT_NAVIGATION:
case GST_EVENT_CAPS:
/* no navigation or caps either... */
res = FALSE;
gst_event_unref (event);
break;
default:
res = gst_pad_push_event (dvdemux->sinkpad, event);
event = NULL;
break;
}
if (event)
gst_event_unref (event);
return res;
}