aggregator: drop GAP events until we handle them properly

This commit is contained in:
Tim-Philipp Müller 2015-02-13 23:45:20 +00:00
parent 1fe5f9db71
commit e1aba92514

View file

@ -910,6 +910,13 @@ gst_aggregator_default_sink_event (GstAggregator * self,
{ {
goto eat; goto eat;
} }
case GST_EVENT_GAP:
{
/* FIXME: need API to handle GAP events properly */
GST_FIXME_OBJECT (self, "implement support for GAP events");
/* don't forward GAP events downstream */
goto eat;
}
case GST_EVENT_TAG: case GST_EVENT_TAG:
{ {
GstTagList *tags; GstTagList *tags;