mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-07 07:58:51 +00:00
nle: Drop tags getting out of the composition
Those tag are meaningless in for the new stream created by the composition First step toward fixing T3070 Differential Revision: https://phabricator.freedesktop.org/D1327
This commit is contained in:
parent
cd76231f64
commit
b80e006caf
1 changed files with 4 additions and 0 deletions
|
@ -1240,6 +1240,10 @@ ghost_event_probe_handler (GstPad * ghostpad G_GNUC_UNUSED,
|
||||||
gst_event_unref (event);
|
gst_event_unref (event);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
case GST_EVENT_TAG:
|
||||||
|
GST_DEBUG_OBJECT (comp, "Dropping tag: %" GST_PTR_FORMAT, info->data);
|
||||||
|
retval = GST_PAD_PROBE_DROP;
|
||||||
|
break;
|
||||||
case GST_EVENT_EOS:
|
case GST_EVENT_EOS:
|
||||||
{
|
{
|
||||||
gint seqnum = gst_event_get_seqnum (event);
|
gint seqnum = gst_event_get_seqnum (event);
|
||||||
|
|
Loading…
Reference in a new issue