mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-22 14:06:23 +00:00
videomixer: Don't set EOS to FALSE when the collectpad *is* EOS
https://bugzilla.gnome.org/show_bug.cgi?id=707238
This commit is contained in:
parent
349afc633a
commit
b68f419b6f
1 changed files with 2 additions and 1 deletions
|
@ -802,7 +802,8 @@ gst_videomixer2_fill_queues (GstVideoMixer2 * mix,
|
|||
if (!GST_COLLECT_PADS_STATE_IS_SET (mixcol,
|
||||
GST_COLLECT_PADS_STATE_EOS))
|
||||
need_more_data = TRUE;
|
||||
} else {
|
||||
} else if (!GST_COLLECT_PADS_STATE_IS_SET (mixcol,
|
||||
GST_COLLECT_PADS_STATE_EOS)) {
|
||||
eos = FALSE;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue