dashdemux: fix typo in check_queue_full function
authorThiago Santos <thiago.sousa.santos@collabora.com>
Tue, 9 Jul 2013 15:49:55 +0000 (12:49 -0300)
committerThiago Santos <thiago.sousa.santos@collabora.com>
Mon, 15 Jul 2013 13:05:59 +0000 (10:05 -0300)
It should return True when the queue IS full

Fixes #704226

ext/dash/gstdashdemux.c

index a14be74..01781ce 100644 (file)
@@ -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