dashdemux: fix typo in check_queue_full function
It should return True when the queue IS full Fixes #704226
This commit is contained in:
parent
1b1b3a40d7
commit
ec630db32f
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user