mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-28 20:51:13 +00:00
aggregator: drop GAP events until we handle them properly
This commit is contained in:
parent
1fe5f9db71
commit
e1aba92514
1 changed files with 7 additions and 0 deletions
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue