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:
Wim Taymans 2008-03-24 14:08:22 +00:00 committed by Sebastian Dröge
parent 301b7ba7b9
commit 0e7fb0ffa5

View file

@ -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))