dashdemux: fix typo in check_queue_full function

It should return True when the queue IS full

Fixes #704226
This commit is contained in:
Thiago Santos 2013-07-09 12:49:55 -03:00
parent 1b1b3a40d7
commit ec630db32f

View 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