mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-22 22:16:22 +00:00
jpegparse: Chain up to parent class' sink event handler
Call base class's sink_event handler after handling GST_EVENT_FLUSH_STOP event, so that base class doesn't get stuck in a 'flushing' state https://bugzilla.gnome.org/show_bug.cgi?id=777097
This commit is contained in:
parent
800aca8161
commit
e81e029aa2
1 changed files with 1 additions and 0 deletions
|
@ -871,6 +871,7 @@ gst_jpeg_parse_sink_event (GstBaseParse * bparse, GstEvent * event)
|
|||
parse->priv->last_offset = 0;
|
||||
parse->priv->last_entropy_len = 0;
|
||||
parse->priv->last_resync = FALSE;
|
||||
res = GST_BASE_PARSE_CLASS (parent_class)->sink_event (bparse, event);
|
||||
break;
|
||||
case GST_EVENT_TAG:{
|
||||
if (gst_pad_has_current_caps (GST_BASE_PARSE_SRC_PAD (parse)))
|
||||
|
|
Loading…
Reference in a new issue