mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 06:46:38 +00:00
pad: only serialized events can't pass after EOS
Only serialized events can't be sent on pads that are EOS. Otherwise a seek event would be refused as well. Fixes https://bugzilla.gnome.org/show_bug.cgi?id=677520
This commit is contained in:
parent
4e06fccf41
commit
d907544ab1
1 changed files with 3 additions and 3 deletions
|
@ -4637,10 +4637,10 @@ gst_pad_send_event_unchecked (GstPad * pad, GstEvent * event,
|
||||||
if (G_UNLIKELY (GST_PAD_IS_FLUSHING (pad)))
|
if (G_UNLIKELY (GST_PAD_IS_FLUSHING (pad)))
|
||||||
goto flushing;
|
goto flushing;
|
||||||
|
|
||||||
if (G_UNLIKELY (GST_PAD_IS_EOS (pad)))
|
|
||||||
goto eos;
|
|
||||||
|
|
||||||
if (serialized) {
|
if (serialized) {
|
||||||
|
if (G_UNLIKELY (GST_PAD_IS_EOS (pad)))
|
||||||
|
goto eos;
|
||||||
|
|
||||||
/* lock order: STREAM_LOCK, LOCK, recheck flushing. */
|
/* lock order: STREAM_LOCK, LOCK, recheck flushing. */
|
||||||
GST_OBJECT_UNLOCK (pad);
|
GST_OBJECT_UNLOCK (pad);
|
||||||
GST_PAD_STREAM_LOCK (pad);
|
GST_PAD_STREAM_LOCK (pad);
|
||||||
|
|
Loading…
Reference in a new issue