From b8dd95e2193e159d7fc7d76d17295ad4438edf3d Mon Sep 17 00:00:00 2001 From: Thiago Santos Date: Thu, 26 Sep 2013 17:05:24 -0300 Subject: [PATCH] dashdemux: actually return true on latency query Do not forget to set the return for latency query --- ext/dash/gstdashdemux.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ext/dash/gstdashdemux.c b/ext/dash/gstdashdemux.c index a78c0e579a..8ae6eedae7 100644 --- a/ext/dash/gstdashdemux.c +++ b/ext/dash/gstdashdemux.c @@ -997,6 +997,7 @@ gst_dash_demux_src_query (GstPad * pad, GstObject * parent, GstQuery * query) max += dashdemux->max_buffering_time; gst_query_set_latency (query, live, min, max); + ret = TRUE; break; } default:{