mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-29 19:50:40 +00:00
aggregator: drop GAP events until we handle them properly
This commit is contained in:
parent
413a60959d
commit
282dbcee0b
1 changed files with 7 additions and 0 deletions
|
@ -910,6 +910,13 @@ gst_aggregator_default_sink_event (GstAggregator * self,
|
|||
{
|
||||
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:
|
||||
{
|
||||
GstTagList *tags;
|
||||
|
|
Loading…
Reference in a new issue