2 * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3 * 2000 Wim Taymans <wtay@chello.be>
4 * 2003 Colin Walters <cwalters@gnome.org>
5 * 2005 Wim Taymans <wim@fluendo.com>
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Library General Public
11 * License as published by the Free Software Foundation; either
12 * version 2 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Library General Public License for more details.
19 * You should have received a copy of the GNU Library General Public
20 * License along with this library; if not, write to the
21 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
22 * Boston, MA 02110-1301, USA.
26 * SECTION:element-queue
28 * Data is queued until one of the limits specified by the
29 * #GstQueue:max-size-buffers, #GstQueue:max-size-bytes and/or
30 * #GstQueue:max-size-time properties has been reached. Any attempt to push
31 * more buffers into the queue will block the pushing thread until more space
34 * The queue will create a new thread on the source pad to decouple the
35 * processing on sink and source pad.
37 * You can query how many buffers are queued by reading the
38 * #GstQueue:current-level-buffers property. You can track changes
39 * by connecting to the notify::current-level-buffers signal (which
40 * like all signals will be emitted from the streaming thread). The same
41 * applies to the #GstQueue:current-level-time and
42 * #GstQueue:current-level-bytes properties.
44 * The default queue size limits are 200 buffers, 10MB of data, or
45 * one second worth of data, whichever is reached first.
47 * As said earlier, the queue blocks by default when one of the specified
48 * maximums (bytes, time, buffers) has been reached. You can set the
49 * #GstQueue:leaky property to specify that instead of blocking it should
50 * leak (drop) new or old buffers.
52 * The #GstQueue::underrun signal is emitted when the queue has less data than
53 * the specified minimum thresholds require (by default: when the queue is
54 * empty). The #GstQueue::overrun signal is emitted when the queue is filled
55 * up. Both signals are emitted from the context of the streaming thread.
58 #include "gst/gst_private.h"
63 #include "../../gst/gst-i18n-lib.h"
64 #include "../../gst/glib-compat-private.h"
66 static GstStaticPadTemplate sinktemplate = GST_STATIC_PAD_TEMPLATE ("sink",
71 static GstStaticPadTemplate srctemplate = GST_STATIC_PAD_TEMPLATE ("src",
76 GST_DEBUG_CATEGORY_STATIC (queue_debug);
77 #define GST_CAT_DEFAULT (queue_debug)
78 GST_DEBUG_CATEGORY_STATIC (queue_dataflow);
80 #define STATUS(queue, pad, msg) \
81 GST_CAT_LOG_OBJECT (queue_dataflow, queue, \
82 "(%s:%s) " msg ": %u of %u-%u buffers, %u of %u-%u " \
83 "bytes, %" G_GUINT64_FORMAT " of %" G_GUINT64_FORMAT \
84 "-%" G_GUINT64_FORMAT " ns, %u items", \
85 GST_DEBUG_PAD_NAME (pad), \
86 queue->cur_level.buffers, \
87 queue->min_threshold.buffers, \
88 queue->max_size.buffers, \
89 queue->cur_level.bytes, \
90 queue->min_threshold.bytes, \
91 queue->max_size.bytes, \
92 queue->cur_level.time, \
93 queue->min_threshold.time, \
94 queue->max_size.time, \
95 gst_queue_array_get_length (queue->queue))
97 /* Queue signals and args */
110 /* FIXME: don't we have another way of doing this
111 * "Gstreamer format" (frame/byte/time) queries? */
112 PROP_CUR_LEVEL_BUFFERS,
113 PROP_CUR_LEVEL_BYTES,
115 PROP_MAX_SIZE_BUFFERS,
118 PROP_MIN_THRESHOLD_BUFFERS,
119 PROP_MIN_THRESHOLD_BYTES,
120 PROP_MIN_THRESHOLD_TIME,
126 /* default property values */
127 #define DEFAULT_MAX_SIZE_BUFFERS 200 /* 200 buffers */
128 #define DEFAULT_MAX_SIZE_BYTES (10 * 1024 * 1024) /* 10 MB */
129 #define DEFAULT_MAX_SIZE_TIME GST_SECOND /* 1 second */
131 #define GST_QUEUE_MUTEX_LOCK(q) G_STMT_START { \
132 g_mutex_lock (&q->qlock); \
135 #define GST_QUEUE_MUTEX_LOCK_CHECK(q,label) G_STMT_START { \
136 GST_QUEUE_MUTEX_LOCK (q); \
137 if (q->srcresult != GST_FLOW_OK) \
141 #define GST_QUEUE_MUTEX_UNLOCK(q) G_STMT_START { \
142 g_mutex_unlock (&q->qlock); \
145 #define GST_QUEUE_WAIT_DEL_CHECK(q, label) G_STMT_START { \
146 STATUS (q, q->sinkpad, "wait for DEL"); \
147 q->waiting_del = TRUE; \
148 g_cond_wait (&q->item_del, &q->qlock); \
149 q->waiting_del = FALSE; \
150 if (q->srcresult != GST_FLOW_OK) { \
151 STATUS (q, q->srcpad, "received DEL wakeup"); \
154 STATUS (q, q->sinkpad, "received DEL"); \
157 #define GST_QUEUE_WAIT_ADD_CHECK(q, label) G_STMT_START { \
158 STATUS (q, q->srcpad, "wait for ADD"); \
159 q->waiting_add = TRUE; \
160 g_cond_wait (&q->item_add, &q->qlock); \
161 q->waiting_add = FALSE; \
162 if (q->srcresult != GST_FLOW_OK) { \
163 STATUS (q, q->srcpad, "received ADD wakeup"); \
166 STATUS (q, q->srcpad, "received ADD"); \
169 #define GST_QUEUE_SIGNAL_DEL(q) G_STMT_START { \
170 if (q->waiting_del) { \
171 STATUS (q, q->srcpad, "signal DEL"); \
172 g_cond_signal (&q->item_del); \
176 #define GST_QUEUE_SIGNAL_ADD(q) G_STMT_START { \
177 if (q->waiting_add) { \
178 STATUS (q, q->sinkpad, "signal ADD"); \
179 g_cond_signal (&q->item_add); \
184 GST_DEBUG_CATEGORY_INIT (queue_debug, "queue", 0, "queue element"); \
185 GST_DEBUG_CATEGORY_INIT (queue_dataflow, "queue_dataflow", 0, \
186 "dataflow inside the queue element");
187 #define gst_queue_parent_class parent_class
188 G_DEFINE_TYPE_WITH_CODE (GstQueue, gst_queue, GST_TYPE_ELEMENT, _do_init);
190 static void gst_queue_finalize (GObject * object);
192 static void gst_queue_set_property (GObject * object,
193 guint prop_id, const GValue * value, GParamSpec * pspec);
194 static void gst_queue_get_property (GObject * object,
195 guint prop_id, GValue * value, GParamSpec * pspec);
197 static GstFlowReturn gst_queue_chain (GstPad * pad, GstObject * parent,
199 static GstFlowReturn gst_queue_push_one (GstQueue * queue);
200 static void gst_queue_loop (GstPad * pad);
202 static gboolean gst_queue_handle_sink_event (GstPad * pad, GstObject * parent,
204 static gboolean gst_queue_handle_sink_query (GstPad * pad, GstObject * parent,
207 static gboolean gst_queue_handle_src_event (GstPad * pad, GstObject * parent,
209 static gboolean gst_queue_handle_src_query (GstPad * pad, GstObject * parent,
212 static void gst_queue_locked_flush (GstQueue * queue);
214 static gboolean gst_queue_src_activate_mode (GstPad * pad, GstObject * parent,
215 GstPadMode mode, gboolean active);
216 static gboolean gst_queue_sink_activate_mode (GstPad * pad, GstObject * parent,
217 GstPadMode mode, gboolean active);
219 static gboolean gst_queue_is_empty (GstQueue * queue);
220 static gboolean gst_queue_is_filled (GstQueue * queue);
222 #define GST_TYPE_QUEUE_LEAKY (queue_leaky_get_type ())
225 queue_leaky_get_type (void)
227 static GType queue_leaky_type = 0;
228 static const GEnumValue queue_leaky[] = {
229 {GST_QUEUE_NO_LEAK, "Not Leaky", "no"},
230 {GST_QUEUE_LEAK_UPSTREAM, "Leaky on upstream (new buffers)", "upstream"},
231 {GST_QUEUE_LEAK_DOWNSTREAM, "Leaky on downstream (old buffers)",
236 if (!queue_leaky_type) {
237 queue_leaky_type = g_enum_register_static ("GstQueueLeaky", queue_leaky);
239 return queue_leaky_type;
242 static guint gst_queue_signals[LAST_SIGNAL] = { 0 };
245 gst_queue_class_init (GstQueueClass * klass)
247 GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
248 GstElementClass *gstelement_class = GST_ELEMENT_CLASS (klass);
250 gobject_class->set_property = gst_queue_set_property;
251 gobject_class->get_property = gst_queue_get_property;
255 * GstQueue::underrun:
256 * @queue: the queue instance
258 * Reports that the buffer became empty (underrun).
259 * A buffer is empty if the total amount of data inside it (num-buffers, time,
260 * size) is lower than the boundary values which can be set through the
261 * GObject properties.
263 gst_queue_signals[SIGNAL_UNDERRUN] =
264 g_signal_new ("underrun", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_FIRST,
265 G_STRUCT_OFFSET (GstQueueClass, underrun), NULL, NULL,
266 g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0);
269 * @queue: the queue instance
271 * Reports that enough (min-threshold) data is in the queue. Use this signal
272 * together with the underrun signal to pause the pipeline on underrun and
273 * wait for the queue to fill-up before resume playback.
275 gst_queue_signals[SIGNAL_RUNNING] =
276 g_signal_new ("running", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_FIRST,
277 G_STRUCT_OFFSET (GstQueueClass, running), NULL, NULL,
278 g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0);
281 * @queue: the queue instance
283 * Reports that the buffer became full (overrun).
284 * A buffer is full if the total amount of data inside it (num-buffers, time,
285 * size) is higher than the boundary values which can be set through the
286 * GObject properties.
288 gst_queue_signals[SIGNAL_OVERRUN] =
289 g_signal_new ("overrun", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_FIRST,
290 G_STRUCT_OFFSET (GstQueueClass, overrun), NULL, NULL,
291 g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0);
294 * @queue: the queue instance
296 * Reports when the queue has enough data to start pushing data again on the
299 gst_queue_signals[SIGNAL_PUSHING] =
300 g_signal_new ("pushing", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_FIRST,
301 G_STRUCT_OFFSET (GstQueueClass, pushing), NULL, NULL,
302 g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0);
305 g_object_class_install_property (gobject_class, PROP_CUR_LEVEL_BYTES,
306 g_param_spec_uint ("current-level-bytes", "Current level (kB)",
307 "Current amount of data in the queue (bytes)",
308 0, G_MAXUINT, 0, G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
309 g_object_class_install_property (gobject_class, PROP_CUR_LEVEL_BUFFERS,
310 g_param_spec_uint ("current-level-buffers", "Current level (buffers)",
311 "Current number of buffers in the queue",
312 0, G_MAXUINT, 0, G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
313 g_object_class_install_property (gobject_class, PROP_CUR_LEVEL_TIME,
314 g_param_spec_uint64 ("current-level-time", "Current level (ns)",
315 "Current amount of data in the queue (in ns)",
316 0, G_MAXUINT64, 0, G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
318 g_object_class_install_property (gobject_class, PROP_MAX_SIZE_BYTES,
319 g_param_spec_uint ("max-size-bytes", "Max. size (kB)",
320 "Max. amount of data in the queue (bytes, 0=disable)",
321 0, G_MAXUINT, DEFAULT_MAX_SIZE_BYTES,
322 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
323 g_object_class_install_property (gobject_class, PROP_MAX_SIZE_BUFFERS,
324 g_param_spec_uint ("max-size-buffers", "Max. size (buffers)",
325 "Max. number of buffers in the queue (0=disable)", 0, G_MAXUINT,
326 DEFAULT_MAX_SIZE_BUFFERS,
327 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
328 g_object_class_install_property (gobject_class, PROP_MAX_SIZE_TIME,
329 g_param_spec_uint64 ("max-size-time", "Max. size (ns)",
330 "Max. amount of data in the queue (in ns, 0=disable)", 0, G_MAXUINT64,
331 DEFAULT_MAX_SIZE_TIME, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
333 g_object_class_install_property (gobject_class, PROP_MIN_THRESHOLD_BYTES,
334 g_param_spec_uint ("min-threshold-bytes", "Min. threshold (kB)",
335 "Min. amount of data in the queue to allow reading (bytes, 0=disable)",
336 0, G_MAXUINT, 0, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
337 g_object_class_install_property (gobject_class, PROP_MIN_THRESHOLD_BUFFERS,
338 g_param_spec_uint ("min-threshold-buffers", "Min. threshold (buffers)",
339 "Min. number of buffers in the queue to allow reading (0=disable)",
340 0, G_MAXUINT, 0, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
341 g_object_class_install_property (gobject_class, PROP_MIN_THRESHOLD_TIME,
342 g_param_spec_uint64 ("min-threshold-time", "Min. threshold (ns)",
343 "Min. amount of data in the queue to allow reading (in ns, 0=disable)",
344 0, G_MAXUINT64, 0, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
346 g_object_class_install_property (gobject_class, PROP_LEAKY,
347 g_param_spec_enum ("leaky", "Leaky",
348 "Where the queue leaks, if at all",
349 GST_TYPE_QUEUE_LEAKY, GST_QUEUE_NO_LEAK,
350 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
355 * Don't emit queue signals. Makes queues more lightweight if no signals are
358 g_object_class_install_property (gobject_class, PROP_SILENT,
359 g_param_spec_boolean ("silent", "Silent",
360 "Don't emit queue signals", FALSE,
361 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
364 * GstQueue:flush-on-eos
366 * Discard all data in the queue when an EOS event is received, and pass
367 * on the EOS event as soon as possible (instead of waiting until all
368 * buffers in the queue have been processed, which is the default behaviour).
370 * Flushing the queue on EOS might be useful when capturing and encoding
371 * from a live source, to finish up the recording quickly in cases when
372 * the encoder is slow. Note that this might mean some data from the end of
373 * the recoding data might be lost though (never more than the configured
374 * max. sizes though).
378 g_object_class_install_property (gobject_class, PROP_FLUSH_ON_EOS,
379 g_param_spec_boolean ("flush-on-eos", "Flush on EOS",
380 "Discard all data in the queue when an EOS event is received", FALSE,
381 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
383 gobject_class->finalize = gst_queue_finalize;
385 gst_element_class_set_static_metadata (gstelement_class,
387 "Generic", "Simple data queue", "Erik Walthinsen <omega@cse.ogi.edu>");
388 gst_element_class_add_pad_template (gstelement_class,
389 gst_static_pad_template_get (&srctemplate));
390 gst_element_class_add_pad_template (gstelement_class,
391 gst_static_pad_template_get (&sinktemplate));
393 /* Registering debug symbols for function pointers */
394 GST_DEBUG_REGISTER_FUNCPTR (gst_queue_src_activate_mode);
395 GST_DEBUG_REGISTER_FUNCPTR (gst_queue_handle_sink_event);
396 GST_DEBUG_REGISTER_FUNCPTR (gst_queue_handle_sink_query);
397 GST_DEBUG_REGISTER_FUNCPTR (gst_queue_handle_src_event);
398 GST_DEBUG_REGISTER_FUNCPTR (gst_queue_handle_src_query);
399 GST_DEBUG_REGISTER_FUNCPTR (gst_queue_chain);
403 gst_queue_init (GstQueue * queue)
405 queue->sinkpad = gst_pad_new_from_static_template (&sinktemplate, "sink");
407 gst_pad_set_chain_function (queue->sinkpad, gst_queue_chain);
408 gst_pad_set_activatemode_function (queue->sinkpad,
409 gst_queue_sink_activate_mode);
410 gst_pad_set_event_function (queue->sinkpad, gst_queue_handle_sink_event);
411 gst_pad_set_query_function (queue->sinkpad, gst_queue_handle_sink_query);
412 GST_PAD_SET_PROXY_CAPS (queue->sinkpad);
413 gst_element_add_pad (GST_ELEMENT (queue), queue->sinkpad);
415 queue->srcpad = gst_pad_new_from_static_template (&srctemplate, "src");
417 gst_pad_set_activatemode_function (queue->srcpad,
418 gst_queue_src_activate_mode);
419 gst_pad_set_event_function (queue->srcpad, gst_queue_handle_src_event);
420 gst_pad_set_query_function (queue->srcpad, gst_queue_handle_src_query);
421 GST_PAD_SET_PROXY_CAPS (queue->srcpad);
422 gst_element_add_pad (GST_ELEMENT (queue), queue->srcpad);
424 GST_QUEUE_CLEAR_LEVEL (queue->cur_level);
425 queue->max_size.buffers = DEFAULT_MAX_SIZE_BUFFERS;
426 queue->max_size.bytes = DEFAULT_MAX_SIZE_BYTES;
427 queue->max_size.time = DEFAULT_MAX_SIZE_TIME;
428 GST_QUEUE_CLEAR_LEVEL (queue->min_threshold);
429 GST_QUEUE_CLEAR_LEVEL (queue->orig_min_threshold);
430 gst_segment_init (&queue->sink_segment, GST_FORMAT_TIME);
431 gst_segment_init (&queue->src_segment, GST_FORMAT_TIME);
432 queue->head_needs_discont = queue->tail_needs_discont = FALSE;
434 queue->leaky = GST_QUEUE_NO_LEAK;
435 queue->srcresult = GST_FLOW_FLUSHING;
437 g_mutex_init (&queue->qlock);
438 g_cond_init (&queue->item_add);
439 g_cond_init (&queue->item_del);
441 queue->queue = gst_queue_array_new (DEFAULT_MAX_SIZE_BUFFERS * 3 / 2);
443 queue->sinktime = GST_CLOCK_TIME_NONE;
444 queue->srctime = GST_CLOCK_TIME_NONE;
446 queue->sink_tainted = TRUE;
447 queue->src_tainted = TRUE;
449 queue->newseg_applied_to_src = FALSE;
451 GST_DEBUG_OBJECT (queue,
452 "initialized queue's not_empty & not_full conditions");
455 /* called only once, as opposed to dispose */
457 gst_queue_finalize (GObject * object)
460 GstQueue *queue = GST_QUEUE (object);
462 GST_DEBUG_OBJECT (queue, "finalizing queue");
464 while (!gst_queue_array_is_empty (queue->queue)) {
465 data = gst_queue_array_pop_head (queue->queue);
466 /* FIXME: if it's a query, shouldn't we unref that too? */
467 if (!GST_IS_QUERY (data))
468 gst_mini_object_unref (data);
470 gst_queue_array_free (queue->queue);
472 g_mutex_clear (&queue->qlock);
473 g_cond_clear (&queue->item_add);
474 g_cond_clear (&queue->item_del);
476 G_OBJECT_CLASS (parent_class)->finalize (object);
479 /* calculate the diff between running time on the sink and src of the queue.
480 * This is the total amount of time in the queue. */
482 update_time_level (GstQueue * queue)
484 gint64 sink_time, src_time;
486 if (queue->sink_tainted) {
487 GST_LOG_OBJECT (queue, "update sink time");
489 gst_segment_to_running_time (&queue->sink_segment, GST_FORMAT_TIME,
490 queue->sink_segment.position);
491 queue->sink_tainted = FALSE;
493 sink_time = queue->sinktime;
495 if (queue->src_tainted) {
496 GST_LOG_OBJECT (queue, "update src time");
498 gst_segment_to_running_time (&queue->src_segment, GST_FORMAT_TIME,
499 queue->src_segment.position);
500 queue->src_tainted = FALSE;
502 src_time = queue->srctime;
504 GST_LOG_OBJECT (queue, "sink %" GST_TIME_FORMAT ", src %" GST_TIME_FORMAT,
505 GST_TIME_ARGS (sink_time), GST_TIME_ARGS (src_time));
507 if (sink_time >= src_time)
508 queue->cur_level.time = sink_time - src_time;
510 queue->cur_level.time = 0;
513 /* take a SEGMENT event and apply the values to segment, updating the time
516 apply_segment (GstQueue * queue, GstEvent * event, GstSegment * segment,
519 gst_event_copy_segment (event, segment);
521 /* now configure the values, we use these to track timestamps on the
523 if (segment->format != GST_FORMAT_TIME) {
524 /* non-time format, pretent the current time segment is closed with a
525 * 0 start and unknown stop time. */
526 segment->format = GST_FORMAT_TIME;
532 queue->sink_tainted = TRUE;
534 queue->src_tainted = TRUE;
536 GST_DEBUG_OBJECT (queue, "configured SEGMENT %" GST_SEGMENT_FORMAT, segment);
538 /* segment can update the time level of the queue */
539 update_time_level (queue);
542 /* take a buffer and update segment, updating the time level of the queue. */
544 apply_buffer (GstQueue * queue, GstBuffer * buffer, GstSegment * segment,
545 gboolean with_duration, gboolean sink)
547 GstClockTime duration, timestamp;
549 timestamp = GST_BUFFER_TIMESTAMP (buffer);
550 duration = GST_BUFFER_DURATION (buffer);
552 /* if no timestamp is set, assume it's continuous with the previous
554 if (timestamp == GST_CLOCK_TIME_NONE)
555 timestamp = segment->position;
558 if (with_duration && duration != GST_CLOCK_TIME_NONE)
559 timestamp += duration;
561 GST_LOG_OBJECT (queue, "position updated to %" GST_TIME_FORMAT,
562 GST_TIME_ARGS (timestamp));
564 segment->position = timestamp;
566 queue->sink_tainted = TRUE;
568 queue->src_tainted = TRUE;
571 /* calc diff with other end */
572 update_time_level (queue);
576 gst_queue_locked_flush (GstQueue * queue)
580 while (!gst_queue_array_is_empty (queue->queue)) {
581 data = gst_queue_array_pop_head (queue->queue);
582 /* Then lose another reference because we are supposed to destroy that
583 data when flushing */
584 if (!GST_IS_QUERY (data))
585 gst_mini_object_unref (data);
587 GST_QUEUE_CLEAR_LEVEL (queue->cur_level);
588 queue->min_threshold.buffers = queue->orig_min_threshold.buffers;
589 queue->min_threshold.bytes = queue->orig_min_threshold.bytes;
590 queue->min_threshold.time = queue->orig_min_threshold.time;
591 gst_segment_init (&queue->sink_segment, GST_FORMAT_TIME);
592 gst_segment_init (&queue->src_segment, GST_FORMAT_TIME);
593 queue->head_needs_discont = queue->tail_needs_discont = FALSE;
595 queue->sinktime = queue->srctime = GST_CLOCK_TIME_NONE;
596 queue->sink_tainted = queue->src_tainted = TRUE;
598 /* we deleted a lot of something */
599 GST_QUEUE_SIGNAL_DEL (queue);
602 /* enqueue an item an update the level stats, with QUEUE_LOCK */
604 gst_queue_locked_enqueue_buffer (GstQueue * queue, gpointer item)
606 GstBuffer *buffer = GST_BUFFER_CAST (item);
608 /* add buffer to the statistics */
609 queue->cur_level.buffers++;
610 queue->cur_level.bytes += gst_buffer_get_size (buffer);
611 apply_buffer (queue, buffer, &queue->sink_segment, TRUE, TRUE);
614 gst_queue_array_push_tail (queue->queue, item);
615 GST_QUEUE_SIGNAL_ADD (queue);
619 gst_queue_locked_enqueue_event (GstQueue * queue, gpointer item)
621 GstEvent *event = GST_EVENT_CAST (item);
623 switch (GST_EVENT_TYPE (event)) {
625 GST_CAT_LOG_OBJECT (queue_dataflow, queue, "got EOS from upstream");
626 /* Zero the thresholds, this makes sure the queue is completely
627 * filled and we can read all data from the queue. */
628 if (queue->flush_on_eos)
629 gst_queue_locked_flush (queue);
631 GST_QUEUE_CLEAR_LEVEL (queue->min_threshold);
632 /* mark the queue as EOS. This prevents us from accepting more data. */
635 case GST_EVENT_SEGMENT:
636 apply_segment (queue, event, &queue->sink_segment, TRUE);
637 /* if the queue is empty, apply sink segment on the source */
638 if (gst_queue_array_is_empty (queue->queue)) {
639 GST_CAT_LOG_OBJECT (queue_dataflow, queue, "Apply segment on srcpad");
640 apply_segment (queue, event, &queue->src_segment, FALSE);
641 queue->newseg_applied_to_src = TRUE;
643 /* a new segment allows us to accept more buffers if we got EOS
645 queue->unexpected = FALSE;
652 gst_queue_array_push_tail (queue->queue, item);
653 GST_QUEUE_SIGNAL_ADD (queue);
656 /* dequeue an item from the queue and update level stats, with QUEUE_LOCK */
657 static GstMiniObject *
658 gst_queue_locked_dequeue (GstQueue * queue)
662 item = gst_queue_array_pop_head (queue->queue);
666 if (GST_IS_BUFFER (item)) {
667 GstBuffer *buffer = GST_BUFFER_CAST (item);
669 GST_CAT_LOG_OBJECT (queue_dataflow, queue,
670 "retrieved buffer %p from queue", buffer);
672 queue->cur_level.buffers--;
673 queue->cur_level.bytes -= gst_buffer_get_size (buffer);
674 apply_buffer (queue, buffer, &queue->src_segment, TRUE, FALSE);
676 /* if the queue is empty now, update the other side */
677 if (queue->cur_level.buffers == 0)
678 queue->cur_level.time = 0;
680 } else if (GST_IS_EVENT (item)) {
681 GstEvent *event = GST_EVENT_CAST (item);
683 GST_CAT_LOG_OBJECT (queue_dataflow, queue,
684 "retrieved event %p from queue", event);
686 switch (GST_EVENT_TYPE (event)) {
688 /* queue is empty now that we dequeued the EOS */
689 GST_QUEUE_CLEAR_LEVEL (queue->cur_level);
691 case GST_EVENT_SEGMENT:
692 /* apply newsegment if it has not already been applied */
693 if (G_LIKELY (!queue->newseg_applied_to_src)) {
694 apply_segment (queue, event, &queue->src_segment, FALSE);
696 queue->newseg_applied_to_src = FALSE;
702 } else if (GST_IS_QUERY (item)) {
703 GstQuery *query = GST_QUERY_CAST (item);
705 GST_CAT_LOG_OBJECT (queue_dataflow, queue,
706 "retrieved query %p from queue", query);
709 ("Unexpected item %p dequeued from queue %s (refcounting problem?)",
710 item, GST_OBJECT_NAME (queue));
713 GST_QUEUE_SIGNAL_DEL (queue);
720 GST_CAT_DEBUG_OBJECT (queue_dataflow, queue, "the queue is empty");
726 gst_queue_handle_sink_event (GstPad * pad, GstObject * parent, GstEvent * event)
730 queue = GST_QUEUE (parent);
732 switch (GST_EVENT_TYPE (event)) {
733 case GST_EVENT_FLUSH_START:
735 STATUS (queue, pad, "received flush start event");
737 gst_pad_push_event (queue->srcpad, event);
739 /* now unblock the chain function */
740 GST_QUEUE_MUTEX_LOCK (queue);
741 queue->srcresult = GST_FLOW_FLUSHING;
742 /* unblock the loop and chain functions */
743 GST_QUEUE_SIGNAL_ADD (queue);
744 GST_QUEUE_SIGNAL_DEL (queue);
745 GST_QUEUE_MUTEX_UNLOCK (queue);
747 /* make sure it pauses, this should happen since we sent
748 * flush_start downstream. */
749 gst_pad_pause_task (queue->srcpad);
750 GST_CAT_LOG_OBJECT (queue_dataflow, queue, "loop stopped");
753 case GST_EVENT_FLUSH_STOP:
755 STATUS (queue, pad, "received flush stop event");
757 gst_pad_push_event (queue->srcpad, event);
759 GST_QUEUE_MUTEX_LOCK (queue);
760 gst_queue_locked_flush (queue);
761 queue->srcresult = GST_FLOW_OK;
763 queue->unexpected = FALSE;
764 gst_pad_start_task (queue->srcpad, (GstTaskFunction) gst_queue_loop,
765 queue->srcpad, NULL);
766 GST_QUEUE_MUTEX_UNLOCK (queue);
768 STATUS (queue, pad, "after flush");
772 if (GST_EVENT_IS_SERIALIZED (event)) {
773 /* serialized events go in the queue */
774 GST_QUEUE_MUTEX_LOCK (queue);
775 if (queue->srcresult != GST_FLOW_OK) {
776 /* Errors in sticky event pushing are no problem and ignored here
777 * as they will cause more meaningful errors during data flow.
778 * For EOS events, that are not followed by data flow, we still
779 * return FALSE here though.
781 if (!GST_EVENT_IS_STICKY (event) ||
782 GST_EVENT_TYPE (event) == GST_EVENT_EOS)
785 /* refuse more events on EOS */
788 gst_queue_locked_enqueue_event (queue, event);
789 GST_QUEUE_MUTEX_UNLOCK (queue);
791 /* non-serialized events are forwarded downstream immediately */
792 gst_pad_push_event (queue->srcpad, event);
802 GST_CAT_LOG_OBJECT (queue_dataflow, queue, "refusing event, we are EOS");
803 GST_QUEUE_MUTEX_UNLOCK (queue);
804 gst_event_unref (event);
809 GST_CAT_LOG_OBJECT (queue_dataflow, queue,
810 "refusing event, we have a downstream flow error: %s",
811 gst_flow_get_name (queue->srcresult));
812 GST_QUEUE_MUTEX_UNLOCK (queue);
813 gst_event_unref (event);
819 gst_queue_handle_sink_query (GstPad * pad, GstObject * parent, GstQuery * query)
821 GstQueue *queue = GST_QUEUE_CAST (parent);
824 switch (GST_QUERY_TYPE (query)) {
826 if (G_UNLIKELY (GST_QUERY_IS_SERIALIZED (query))) {
827 GST_QUEUE_MUTEX_LOCK_CHECK (queue, out_flushing);
828 GST_LOG_OBJECT (queue, "queuing query %p (%s)", query,
829 GST_QUERY_TYPE_NAME (query));
830 gst_queue_array_push_tail (queue->queue, query);
831 GST_QUEUE_SIGNAL_ADD (queue);
832 while (!gst_queue_array_is_empty (queue->queue)) {
833 /* for as long as the queue has items, we know the query is
835 GST_QUEUE_WAIT_DEL_CHECK (queue, out_flushing);
837 res = queue->last_query;
838 GST_QUEUE_MUTEX_UNLOCK (queue);
840 res = gst_pad_query_default (pad, parent, query);
851 GST_DEBUG_OBJECT (queue, "we are flushing");
853 /* Remove query from queue if still there, since we hold no ref to it */
854 index = gst_queue_array_find (queue->queue, NULL, query);
857 gst_queue_array_drop_element (queue->queue, index);
859 GST_QUEUE_MUTEX_UNLOCK (queue);
865 gst_queue_is_empty (GstQueue * queue)
869 if (gst_queue_array_is_empty (queue->queue))
872 /* Only consider the queue empty if the minimum thresholds
873 * are not reached and data is at the queue head. Otherwise
874 * we would block forever on serialized queries.
876 head = gst_queue_array_peek_head (queue->queue);
877 if (!GST_IS_BUFFER (head) && !GST_IS_BUFFER_LIST (head))
880 /* It is possible that a max size is reached before all min thresholds are.
881 * Therefore, only consider it empty if it is not filled. */
882 return ((queue->min_threshold.buffers > 0 &&
883 queue->cur_level.buffers < queue->min_threshold.buffers) ||
884 (queue->min_threshold.bytes > 0 &&
885 queue->cur_level.bytes < queue->min_threshold.bytes) ||
886 (queue->min_threshold.time > 0 &&
887 queue->cur_level.time < queue->min_threshold.time)) &&
888 !gst_queue_is_filled (queue);
892 gst_queue_is_filled (GstQueue * queue)
894 return (((queue->max_size.buffers > 0 &&
895 queue->cur_level.buffers >= queue->max_size.buffers) ||
896 (queue->max_size.bytes > 0 &&
897 queue->cur_level.bytes >= queue->max_size.bytes) ||
898 (queue->max_size.time > 0 &&
899 queue->cur_level.time >= queue->max_size.time)));
903 gst_queue_leak_downstream (GstQueue * queue)
905 /* for as long as the queue is filled, dequeue an item and discard it */
906 while (gst_queue_is_filled (queue)) {
909 leak = gst_queue_locked_dequeue (queue);
910 /* there is nothing to dequeue and the queue is still filled.. This should
912 g_assert (leak != NULL);
914 GST_CAT_DEBUG_OBJECT (queue_dataflow, queue,
915 "queue is full, leaking item %p on downstream end", leak);
916 if (!GST_IS_QUERY (leak))
917 gst_mini_object_unref (leak);
919 /* last buffer needs to get a DISCONT flag */
920 queue->head_needs_discont = TRUE;
925 gst_queue_chain (GstPad * pad, GstObject * parent, GstBuffer * buffer)
928 GstClockTime duration, timestamp;
930 queue = GST_QUEUE_CAST (parent);
932 /* we have to lock the queue since we span threads */
933 GST_QUEUE_MUTEX_LOCK_CHECK (queue, out_flushing);
934 /* when we received EOS, we refuse any more data */
937 if (queue->unexpected)
940 timestamp = GST_BUFFER_TIMESTAMP (buffer);
941 duration = GST_BUFFER_DURATION (buffer);
943 GST_CAT_LOG_OBJECT (queue_dataflow, queue, "received buffer %p of size %"
944 G_GSIZE_FORMAT ", time %" GST_TIME_FORMAT ", duration %"
945 GST_TIME_FORMAT, buffer, gst_buffer_get_size (buffer),
946 GST_TIME_ARGS (timestamp), GST_TIME_ARGS (duration));
948 /* We make space available if we're "full" according to whatever
949 * the user defined as "full". Note that this only applies to buffers.
950 * We always handle events and they don't count in our statistics. */
951 while (gst_queue_is_filled (queue)) {
952 if (!queue->silent) {
953 GST_QUEUE_MUTEX_UNLOCK (queue);
954 g_signal_emit (queue, gst_queue_signals[SIGNAL_OVERRUN], 0);
955 GST_QUEUE_MUTEX_LOCK_CHECK (queue, out_flushing);
956 /* we recheck, the signal could have changed the thresholds */
957 if (!gst_queue_is_filled (queue))
961 /* how are we going to make space for this buffer? */
962 switch (queue->leaky) {
963 case GST_QUEUE_LEAK_UPSTREAM:
964 /* next buffer needs to get a DISCONT flag */
965 queue->tail_needs_discont = TRUE;
966 /* leak current buffer */
967 GST_CAT_DEBUG_OBJECT (queue_dataflow, queue,
968 "queue is full, leaking buffer on upstream end");
969 /* now we can clean up and exit right away */
971 case GST_QUEUE_LEAK_DOWNSTREAM:
972 gst_queue_leak_downstream (queue);
975 g_warning ("Unknown leaky type, using default");
977 case GST_QUEUE_NO_LEAK:
979 GST_CAT_DEBUG_OBJECT (queue_dataflow, queue,
980 "queue is full, waiting for free space");
982 /* don't leak. Instead, wait for space to be available */
984 /* for as long as the queue is filled, wait till an item was deleted. */
985 GST_QUEUE_WAIT_DEL_CHECK (queue, out_flushing);
986 } while (gst_queue_is_filled (queue));
988 GST_CAT_DEBUG_OBJECT (queue_dataflow, queue, "queue is not full");
990 if (!queue->silent) {
991 GST_QUEUE_MUTEX_UNLOCK (queue);
992 g_signal_emit (queue, gst_queue_signals[SIGNAL_RUNNING], 0);
993 GST_QUEUE_MUTEX_LOCK_CHECK (queue, out_flushing);
1000 if (queue->tail_needs_discont) {
1001 GstBuffer *subbuffer = gst_buffer_make_writable (buffer);
1005 GST_BUFFER_FLAG_SET (buffer, GST_BUFFER_FLAG_DISCONT);
1007 GST_DEBUG_OBJECT (queue, "Could not mark buffer as DISCONT");
1009 queue->tail_needs_discont = FALSE;
1012 /* put buffer in queue now */
1013 gst_queue_locked_enqueue_buffer (queue, buffer);
1014 GST_QUEUE_MUTEX_UNLOCK (queue);
1018 /* special conditions */
1021 GST_QUEUE_MUTEX_UNLOCK (queue);
1023 gst_buffer_unref (buffer);
1029 GstFlowReturn ret = queue->srcresult;
1031 GST_CAT_LOG_OBJECT (queue_dataflow, queue,
1032 "exit because task paused, reason: %s", gst_flow_get_name (ret));
1033 GST_QUEUE_MUTEX_UNLOCK (queue);
1034 gst_buffer_unref (buffer);
1040 GST_CAT_LOG_OBJECT (queue_dataflow, queue, "exit because we received EOS");
1041 GST_QUEUE_MUTEX_UNLOCK (queue);
1043 gst_buffer_unref (buffer);
1045 return GST_FLOW_EOS;
1049 GST_CAT_LOG_OBJECT (queue_dataflow, queue, "exit because we received EOS");
1050 GST_QUEUE_MUTEX_UNLOCK (queue);
1052 gst_buffer_unref (buffer);
1054 return GST_FLOW_EOS;
1058 /* dequeue an item from the queue an push it downstream. This functions returns
1059 * the result of the push. */
1060 static GstFlowReturn
1061 gst_queue_push_one (GstQueue * queue)
1063 GstFlowReturn result = GST_FLOW_OK;
1064 GstMiniObject *data;
1066 data = gst_queue_locked_dequeue (queue);
1071 if (GST_IS_BUFFER (data)) {
1074 buffer = GST_BUFFER_CAST (data);
1076 if (queue->head_needs_discont) {
1077 GstBuffer *subbuffer = gst_buffer_make_writable (buffer);
1081 GST_BUFFER_FLAG_SET (buffer, GST_BUFFER_FLAG_DISCONT);
1083 GST_DEBUG_OBJECT (queue, "Could not mark buffer as DISCONT");
1085 queue->head_needs_discont = FALSE;
1088 GST_QUEUE_MUTEX_UNLOCK (queue);
1089 result = gst_pad_push (queue->srcpad, buffer);
1091 /* need to check for srcresult here as well */
1092 GST_QUEUE_MUTEX_LOCK_CHECK (queue, out_flushing);
1094 if (result == GST_FLOW_EOS) {
1095 GST_CAT_LOG_OBJECT (queue_dataflow, queue, "got EOS from downstream");
1096 /* stop pushing buffers, we dequeue all items until we see an item that we
1097 * can push again, which is EOS or SEGMENT. If there is nothing in the
1098 * queue we can push, we set a flag to make the sinkpad refuse more
1099 * buffers with an EOS return value. */
1100 while ((data = gst_queue_locked_dequeue (queue))) {
1101 if (GST_IS_BUFFER (data)) {
1102 GST_CAT_LOG_OBJECT (queue_dataflow, queue,
1103 "dropping EOS buffer %p", data);
1104 gst_buffer_unref (GST_BUFFER_CAST (data));
1105 } else if (GST_IS_EVENT (data)) {
1106 GstEvent *event = GST_EVENT_CAST (data);
1107 GstEventType type = GST_EVENT_TYPE (event);
1109 if (type == GST_EVENT_EOS || type == GST_EVENT_SEGMENT) {
1110 /* we found a pushable item in the queue, push it out */
1111 GST_CAT_LOG_OBJECT (queue_dataflow, queue,
1112 "pushing pushable event %s after EOS",
1113 GST_EVENT_TYPE_NAME (event));
1116 GST_CAT_LOG_OBJECT (queue_dataflow, queue,
1117 "dropping EOS event %p", event);
1118 gst_event_unref (event);
1119 } else if (GST_IS_QUERY (data)) {
1120 GstQuery *query = GST_QUERY_CAST (data);
1122 GST_CAT_LOG_OBJECT (queue_dataflow, queue,
1123 "dropping query %p because of EOS", query);
1124 queue->last_query = FALSE;
1127 /* no more items in the queue. Set the unexpected flag so that upstream
1128 * make us refuse any more buffers on the sinkpad. Since we will still
1129 * accept EOS and SEGMENT we return _FLOW_OK to the caller so that the
1130 * task function does not shut down. */
1131 queue->unexpected = TRUE;
1132 result = GST_FLOW_OK;
1134 } else if (GST_IS_EVENT (data)) {
1135 GstEvent *event = GST_EVENT_CAST (data);
1136 GstEventType type = GST_EVENT_TYPE (event);
1138 GST_QUEUE_MUTEX_UNLOCK (queue);
1140 gst_pad_push_event (queue->srcpad, event);
1142 GST_QUEUE_MUTEX_LOCK_CHECK (queue, out_flushing);
1143 /* if we're EOS, return EOS so that the task pauses. */
1144 if (type == GST_EVENT_EOS) {
1145 GST_CAT_LOG_OBJECT (queue_dataflow, queue,
1146 "pushed EOS event %p, return EOS", event);
1147 result = GST_FLOW_EOS;
1149 } else if (GST_IS_QUERY (data)) {
1150 GstQuery *query = GST_QUERY_CAST (data);
1152 queue->last_query = gst_pad_peer_query (queue->srcpad, query);
1153 GST_CAT_LOG_OBJECT (queue_dataflow, queue,
1154 "did query %p, return %d", query, queue->last_query);
1161 GST_CAT_LOG_OBJECT (queue_dataflow, queue,
1162 "exit because we have no item in the queue");
1163 return GST_FLOW_ERROR;
1167 GST_CAT_LOG_OBJECT (queue_dataflow, queue, "exit because we are flushing");
1168 return GST_FLOW_FLUSHING;
1173 gst_queue_loop (GstPad * pad)
1178 queue = (GstQueue *) GST_PAD_PARENT (pad);
1180 /* have to lock for thread-safety */
1181 GST_QUEUE_MUTEX_LOCK_CHECK (queue, out_flushing);
1183 while (gst_queue_is_empty (queue)) {
1184 GST_CAT_DEBUG_OBJECT (queue_dataflow, queue, "queue is empty");
1185 if (!queue->silent) {
1186 GST_QUEUE_MUTEX_UNLOCK (queue);
1187 g_signal_emit (queue, gst_queue_signals[SIGNAL_UNDERRUN], 0);
1188 GST_QUEUE_MUTEX_LOCK_CHECK (queue, out_flushing);
1191 /* we recheck, the signal could have changed the thresholds */
1192 while (gst_queue_is_empty (queue)) {
1193 GST_QUEUE_WAIT_ADD_CHECK (queue, out_flushing);
1196 GST_CAT_DEBUG_OBJECT (queue_dataflow, queue, "queue is not empty");
1197 if (!queue->silent) {
1198 GST_QUEUE_MUTEX_UNLOCK (queue);
1199 g_signal_emit (queue, gst_queue_signals[SIGNAL_RUNNING], 0);
1200 g_signal_emit (queue, gst_queue_signals[SIGNAL_PUSHING], 0);
1201 GST_QUEUE_MUTEX_LOCK_CHECK (queue, out_flushing);
1205 ret = gst_queue_push_one (queue);
1206 queue->srcresult = ret;
1207 if (ret != GST_FLOW_OK)
1210 GST_QUEUE_MUTEX_UNLOCK (queue);
1217 gboolean eos = queue->eos;
1218 GstFlowReturn ret = queue->srcresult;
1220 gst_pad_pause_task (queue->srcpad);
1221 GST_CAT_LOG_OBJECT (queue_dataflow, queue,
1222 "pause task, reason: %s", gst_flow_get_name (ret));
1223 if (ret == GST_FLOW_FLUSHING)
1224 gst_queue_locked_flush (queue);
1226 GST_QUEUE_SIGNAL_DEL (queue);
1227 GST_QUEUE_MUTEX_UNLOCK (queue);
1228 /* let app know about us giving up if upstream is not expected to do so */
1229 /* EOS is already taken care of elsewhere */
1230 if (eos && (ret == GST_FLOW_NOT_LINKED || ret < GST_FLOW_EOS)) {
1231 GST_ELEMENT_ERROR (queue, STREAM, FAILED,
1232 (_("Internal data flow error.")),
1233 ("streaming task paused, reason %s (%d)",
1234 gst_flow_get_name (ret), ret));
1235 gst_pad_push_event (queue->srcpad, gst_event_new_eos ());
1242 gst_queue_handle_src_event (GstPad * pad, GstObject * parent, GstEvent * event)
1244 gboolean res = TRUE;
1245 GstQueue *queue = GST_QUEUE (parent);
1247 #ifndef GST_DISABLE_GST_DEBUG
1248 GST_CAT_DEBUG_OBJECT (queue_dataflow, queue, "got event %p (%d)",
1249 event, GST_EVENT_TYPE (event));
1252 res = gst_pad_push_event (queue->sinkpad, event);
1258 gst_queue_handle_src_query (GstPad * pad, GstObject * parent, GstQuery * query)
1260 GstQueue *queue = GST_QUEUE (parent);
1263 switch (GST_QUERY_TYPE (query)) {
1264 case GST_QUERY_SCHEDULING:{
1265 gst_query_add_scheduling_mode (query, GST_PAD_MODE_PUSH);
1270 res = gst_pad_query_default (pad, parent, query);
1277 /* Adjust peer response for data contained in queue */
1278 switch (GST_QUERY_TYPE (query)) {
1279 case GST_QUERY_POSITION:
1284 /* get peer position */
1285 gst_query_parse_position (query, &format, &peer_pos);
1287 /* FIXME: this code assumes that there's no discont in the queue */
1289 case GST_FORMAT_BYTES:
1290 peer_pos -= queue->cur_level.bytes;
1292 case GST_FORMAT_TIME:
1293 peer_pos -= queue->cur_level.time;
1296 GST_DEBUG_OBJECT (queue, "Can't adjust query in %s format, don't "
1297 "know how to adjust value", gst_format_get_name (format));
1300 /* set updated position */
1301 gst_query_set_position (query, format, peer_pos);
1304 case GST_QUERY_LATENCY:
1307 GstClockTime min, max;
1309 gst_query_parse_latency (query, &live, &min, &max);
1311 /* we can delay up to the limit of the queue in time. If we have no time
1312 * limit, the best thing we can do is to return an infinite delay. In
1313 * reality a better estimate would be the byte/buffer rate but that is not
1314 * possible right now. */
1315 if (queue->max_size.time > 0 && max != -1)
1316 max += queue->max_size.time;
1320 /* adjust for min-threshold */
1321 if (queue->min_threshold.time > 0 && min != -1)
1322 min += queue->min_threshold.time;
1324 gst_query_set_latency (query, live, min, max);
1328 /* peer handled other queries */
1336 gst_queue_sink_activate_mode (GstPad * pad, GstObject * parent, GstPadMode mode,
1342 queue = GST_QUEUE (parent);
1345 case GST_PAD_MODE_PUSH:
1347 GST_QUEUE_MUTEX_LOCK (queue);
1348 queue->srcresult = GST_FLOW_OK;
1350 queue->unexpected = FALSE;
1351 GST_QUEUE_MUTEX_UNLOCK (queue);
1353 /* step 1, unblock chain function */
1354 GST_QUEUE_MUTEX_LOCK (queue);
1355 queue->srcresult = GST_FLOW_FLUSHING;
1356 gst_queue_locked_flush (queue);
1357 GST_QUEUE_MUTEX_UNLOCK (queue);
1369 gst_queue_src_activate_mode (GstPad * pad, GstObject * parent, GstPadMode mode,
1375 queue = GST_QUEUE (parent);
1378 case GST_PAD_MODE_PUSH:
1380 GST_QUEUE_MUTEX_LOCK (queue);
1381 queue->srcresult = GST_FLOW_OK;
1383 queue->unexpected = FALSE;
1385 gst_pad_start_task (pad, (GstTaskFunction) gst_queue_loop, pad,
1387 GST_QUEUE_MUTEX_UNLOCK (queue);
1389 /* step 1, unblock loop function */
1390 GST_QUEUE_MUTEX_LOCK (queue);
1391 queue->srcresult = GST_FLOW_FLUSHING;
1392 /* the item add signal will unblock */
1393 g_cond_signal (&queue->item_add);
1394 GST_QUEUE_MUTEX_UNLOCK (queue);
1396 /* step 2, make sure streaming finishes */
1397 result = gst_pad_stop_task (pad);
1408 queue_capacity_change (GstQueue * queue)
1410 if (queue->leaky == GST_QUEUE_LEAK_DOWNSTREAM) {
1411 gst_queue_leak_downstream (queue);
1414 /* changing the capacity of the queue must wake up
1415 * the _chain function, it might have more room now
1416 * to store the buffer/event in the queue */
1417 GST_QUEUE_SIGNAL_DEL (queue);
1420 /* Changing the minimum required fill level must
1421 * wake up the _loop function as it might now
1422 * be able to preceed.
1424 #define QUEUE_THRESHOLD_CHANGE(q)\
1425 GST_QUEUE_SIGNAL_ADD (q);
1428 gst_queue_set_property (GObject * object,
1429 guint prop_id, const GValue * value, GParamSpec * pspec)
1431 GstQueue *queue = GST_QUEUE (object);
1433 /* someone could change levels here, and since this
1434 * affects the get/put funcs, we need to lock for safety. */
1435 GST_QUEUE_MUTEX_LOCK (queue);
1438 case PROP_MAX_SIZE_BYTES:
1439 queue->max_size.bytes = g_value_get_uint (value);
1440 queue_capacity_change (queue);
1442 case PROP_MAX_SIZE_BUFFERS:
1443 queue->max_size.buffers = g_value_get_uint (value);
1444 queue_capacity_change (queue);
1446 case PROP_MAX_SIZE_TIME:
1447 queue->max_size.time = g_value_get_uint64 (value);
1448 queue_capacity_change (queue);
1450 case PROP_MIN_THRESHOLD_BYTES:
1451 queue->min_threshold.bytes = g_value_get_uint (value);
1452 queue->orig_min_threshold.bytes = queue->min_threshold.bytes;
1453 QUEUE_THRESHOLD_CHANGE (queue);
1455 case PROP_MIN_THRESHOLD_BUFFERS:
1456 queue->min_threshold.buffers = g_value_get_uint (value);
1457 queue->orig_min_threshold.buffers = queue->min_threshold.buffers;
1458 QUEUE_THRESHOLD_CHANGE (queue);
1460 case PROP_MIN_THRESHOLD_TIME:
1461 queue->min_threshold.time = g_value_get_uint64 (value);
1462 queue->orig_min_threshold.time = queue->min_threshold.time;
1463 QUEUE_THRESHOLD_CHANGE (queue);
1466 queue->leaky = g_value_get_enum (value);
1469 queue->silent = g_value_get_boolean (value);
1471 case PROP_FLUSH_ON_EOS:
1472 queue->flush_on_eos = g_value_get_boolean (value);
1475 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
1479 GST_QUEUE_MUTEX_UNLOCK (queue);
1483 gst_queue_get_property (GObject * object,
1484 guint prop_id, GValue * value, GParamSpec * pspec)
1486 GstQueue *queue = GST_QUEUE (object);
1488 GST_QUEUE_MUTEX_LOCK (queue);
1491 case PROP_CUR_LEVEL_BYTES:
1492 g_value_set_uint (value, queue->cur_level.bytes);
1494 case PROP_CUR_LEVEL_BUFFERS:
1495 g_value_set_uint (value, queue->cur_level.buffers);
1497 case PROP_CUR_LEVEL_TIME:
1498 g_value_set_uint64 (value, queue->cur_level.time);
1500 case PROP_MAX_SIZE_BYTES:
1501 g_value_set_uint (value, queue->max_size.bytes);
1503 case PROP_MAX_SIZE_BUFFERS:
1504 g_value_set_uint (value, queue->max_size.buffers);
1506 case PROP_MAX_SIZE_TIME:
1507 g_value_set_uint64 (value, queue->max_size.time);
1509 case PROP_MIN_THRESHOLD_BYTES:
1510 g_value_set_uint (value, queue->min_threshold.bytes);
1512 case PROP_MIN_THRESHOLD_BUFFERS:
1513 g_value_set_uint (value, queue->min_threshold.buffers);
1515 case PROP_MIN_THRESHOLD_TIME:
1516 g_value_set_uint64 (value, queue->min_threshold.time);
1519 g_value_set_enum (value, queue->leaky);
1522 g_value_set_boolean (value, queue->silent);
1524 case PROP_FLUSH_ON_EOS:
1525 g_value_set_boolean (value, queue->flush_on_eos);
1528 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
1532 GST_QUEUE_MUTEX_UNLOCK (queue);