mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
nlecomposition: Drop all group-done but the last one
This commit is contained in:
parent
99c45d42cf
commit
91ff8a8110
1 changed files with 7 additions and 0 deletions
|
@ -1347,6 +1347,13 @@ ghost_event_probe_handler (GstPad * ghostpad G_GNUC_UNUSED,
|
|||
retval = GST_PAD_PROBE_DROP;
|
||||
}
|
||||
break;
|
||||
case GST_EVENT_STREAM_GROUP_DONE:
|
||||
if (GST_EVENT_SEQNUM (event) != comp->priv->real_eos_seqnum) {
|
||||
GST_INFO_OBJECT (comp, "Dropping STREAM_GROUP_DONE %d != %d",
|
||||
GST_EVENT_SEQNUM (event), comp->priv->real_eos_seqnum);
|
||||
retval = GST_PAD_PROBE_DROP;
|
||||
}
|
||||
break;
|
||||
case GST_EVENT_SEGMENT:
|
||||
{
|
||||
guint64 rstart, rstop;
|
||||
|
|
Loading…
Reference in a new issue