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:
Thibault Saunier 2016-09-17 09:46:59 -03:00
parent cd76231f64
commit b80e006caf

View file

@ -1240,6 +1240,10 @@ ghost_event_probe_handler (GstPad * ghostpad G_GNUC_UNUSED,
gst_event_unref (event);
}
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:
{
gint seqnum = gst_event_get_seqnum (event);