From ec630db32f8202472badf350983e986049eeac66 Mon Sep 17 00:00:00 2001 From: Thiago Santos Date: Tue, 9 Jul 2013 12:49:55 -0300 Subject: [PATCH] dashdemux: fix typo in check_queue_full function It should return True when the queue IS full Fixes #704226 --- ext/dash/gstdashdemux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/dash/gstdashdemux.c b/ext/dash/gstdashdemux.c index a14be74..01781ce 100644 --- a/ext/dash/gstdashdemux.c +++ b/ext/dash/gstdashdemux.c @@ -434,7 +434,7 @@ static gboolean _check_queue_full (GstDataQueue * q, guint visible, guint bytes, guint64 time, GstDashDemux * demux) { - return time <= demux->max_buffering_time; + return time >= demux->max_buffering_time; } static void -- 2.7.4