mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 16:51:10 +00:00
gst/playback/gstqueue2.c: The queue is never filled when there are no buffers in the queue at all.
Original commit message from CVS: * gst/playback/gstqueue2.c: (gst_queue_is_filled): The queue is never filled when there are no buffers in the queue at all. Fixes #523993.
This commit is contained in:
parent
301b7ba7b9
commit
0e7fb0ffa5
1 changed files with 4 additions and 0 deletions
|
@ -1288,6 +1288,10 @@ gst_queue_is_filled (GstQueue * queue)
|
|||
if (QUEUE_IS_USING_TEMP_FILE (queue))
|
||||
return FALSE;
|
||||
|
||||
/* we are never filled when we have no buffers at all */
|
||||
if (queue->cur_level.buffers == 0)
|
||||
return FALSE;
|
||||
|
||||
#define CHECK_FILLED(format) ((queue->max_level.format) > 0 && \
|
||||
(queue->cur_level.format) >= (queue->max_level.format))
|
||||
|
||||
|
|
Loading…
Reference in a new issue