From: Thibault Saunier Date: Sat, 17 Sep 2016 12:46:59 +0000 (-0300) Subject: nle: Drop tags getting out of the composition X-Git-Tag: 1.19.3~493^2~932 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b80e006caf61826ee26b3a90b158a928dad2cadd;p=platform%2Fupstream%2Fgstreamer.git 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 --- diff --git a/plugins/nle/nlecomposition.c b/plugins/nle/nlecomposition.c index 91508d1..4ee83e6 100644 --- a/plugins/nle/nlecomposition.c +++ b/plugins/nle/nlecomposition.c @@ -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);