From 85b0c3a83dca7206d2d913b1c9b388dc74d134e5 Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Thu, 23 Jun 2016 15:30:19 +0200 Subject: [PATCH] qtdemux: Let upstream events go through upstream There's no real reason to avoid sending QOS/NAVIGATION events upstrea. Some elements might want to have that information. --- gst/isomp4/qtdemux.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/gst/isomp4/qtdemux.c b/gst/isomp4/qtdemux.c index 760c683085..675d28be09 100644 --- a/gst/isomp4/qtdemux.c +++ b/gst/isomp4/qtdemux.c @@ -1719,11 +1719,6 @@ gst_qtdemux_handle_src_event (GstPad * pad, GstObject * parent, } gst_event_unref (event); break; - case GST_EVENT_QOS: - case GST_EVENT_NAVIGATION: - res = FALSE; - gst_event_unref (event); - break; default: upstream: res = gst_pad_event_default (pad, parent, event);