mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
gme: Forward other non-EOS events downstream
Allow most events through as-is so at least we don't warn about missing stream-start. Drop segment and caps, as those are sent internally.
This commit is contained in:
parent
5c99f9cf37
commit
60f41c7b81
1 changed files with 4 additions and 0 deletions
|
@ -162,7 +162,11 @@ gst_gme_dec_sink_event (GstPad * pad, GstObject * parent, GstEvent * event)
|
|||
forward = TRUE;
|
||||
}
|
||||
break;
|
||||
case GST_EVENT_CAPS:
|
||||
case GST_EVENT_SEGMENT:
|
||||
break;
|
||||
default:
|
||||
forward = TRUE;
|
||||
break;
|
||||
}
|
||||
if (forward)
|
||||
|
|
Loading…
Reference in a new issue