mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-01 12:02:27 +00:00
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
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue