Port gtk-doc comments to their equivalent markdown syntax
[platform/upstream/gstreamer.git] / plugins / elements / gstqueue.c
1 /* GStreamer
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>
6  *
7  * gstqueue.c:
8  *
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.
13  *
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.
18  *
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.
23  */
24
25 /**
26  * SECTION:element-queue
27  * @title: queue
28  *
29  * Data is queued until one of the limits specified by the
30  * #GstQueue:max-size-buffers, #GstQueue:max-size-bytes and/or
31  * #GstQueue:max-size-time properties has been reached. Any attempt to push
32  * more buffers into the queue will block the pushing thread until more space
33  * becomes available.
34  *
35  * The queue will create a new thread on the source pad to decouple the
36  * processing on sink and source pad.
37  *
38  * You can query how many buffers are queued by reading the
39  * #GstQueue:current-level-buffers property. You can track changes
40  * by connecting to the notify::current-level-buffers signal (which
41  * like all signals will be emitted from the streaming thread). The same
42  * applies to the #GstQueue:current-level-time and
43  * #GstQueue:current-level-bytes properties.
44  *
45  * The default queue size limits are 200 buffers, 10MB of data, or
46  * one second worth of data, whichever is reached first.
47  *
48  * As said earlier, the queue blocks by default when one of the specified
49  * maximums (bytes, time, buffers) has been reached. You can set the
50  * #GstQueue:leaky property to specify that instead of blocking it should
51  * leak (drop) new or old buffers.
52  *
53  * The #GstQueue::underrun signal is emitted when the queue has less data than
54  * the specified minimum thresholds require (by default: when the queue is
55  * empty). The #GstQueue::overrun signal is emitted when the queue is filled
56  * up. Both signals are emitted from the context of the streaming thread.
57  */
58
59 #include "gst/gst_private.h"
60
61 #include <gst/gst.h>
62 #include "gstqueue.h"
63
64 #include "../../gst/gst-i18n-lib.h"
65 #include "../../gst/glib-compat-private.h"
66
67 static GstStaticPadTemplate sinktemplate = GST_STATIC_PAD_TEMPLATE ("sink",
68     GST_PAD_SINK,
69     GST_PAD_ALWAYS,
70     GST_STATIC_CAPS_ANY);
71
72 static GstStaticPadTemplate srctemplate = GST_STATIC_PAD_TEMPLATE ("src",
73     GST_PAD_SRC,
74     GST_PAD_ALWAYS,
75     GST_STATIC_CAPS_ANY);
76
77 GST_DEBUG_CATEGORY_STATIC (queue_debug);
78 #define GST_CAT_DEFAULT (queue_debug)
79 GST_DEBUG_CATEGORY_STATIC (queue_dataflow);
80
81 #define STATUS(queue, pad, msg) \
82   GST_CAT_LOG_OBJECT (queue_dataflow, queue, \
83                       "(%s:%s) " msg ": %u of %u-%u buffers, %u of %u-%u " \
84                       "bytes, %" G_GUINT64_FORMAT " of %" G_GUINT64_FORMAT \
85                       "-%" G_GUINT64_FORMAT " ns, %u items", \
86                       GST_DEBUG_PAD_NAME (pad), \
87                       queue->cur_level.buffers, \
88                       queue->min_threshold.buffers, \
89                       queue->max_size.buffers, \
90                       queue->cur_level.bytes, \
91                       queue->min_threshold.bytes, \
92                       queue->max_size.bytes, \
93                       queue->cur_level.time, \
94                       queue->min_threshold.time, \
95                       queue->max_size.time, \
96                       gst_queue_array_get_length (queue->queue))
97
98 /* Queue signals and args */
99 enum
100 {
101   SIGNAL_UNDERRUN,
102   SIGNAL_RUNNING,
103   SIGNAL_OVERRUN,
104   SIGNAL_PUSHING,
105   LAST_SIGNAL
106 };
107
108 enum
109 {
110   PROP_0,
111   /* FIXME: don't we have another way of doing this
112    * "Gstreamer format" (frame/byte/time) queries? */
113   PROP_CUR_LEVEL_BUFFERS,
114   PROP_CUR_LEVEL_BYTES,
115   PROP_CUR_LEVEL_TIME,
116   PROP_MAX_SIZE_BUFFERS,
117   PROP_MAX_SIZE_BYTES,
118   PROP_MAX_SIZE_TIME,
119   PROP_MIN_THRESHOLD_BUFFERS,
120   PROP_MIN_THRESHOLD_BYTES,
121   PROP_MIN_THRESHOLD_TIME,
122   PROP_LEAKY,
123   PROP_SILENT,
124   PROP_FLUSH_ON_EOS
125 };
126
127 /* default property values */
128 #define DEFAULT_MAX_SIZE_BUFFERS  200   /* 200 buffers */
129 #define DEFAULT_MAX_SIZE_BYTES    (10 * 1024 * 1024)    /* 10 MB       */
130 #define DEFAULT_MAX_SIZE_TIME     GST_SECOND    /* 1 second    */
131
132 #define GST_QUEUE_MUTEX_LOCK(q) G_STMT_START {                          \
133   g_mutex_lock (&q->qlock);                                              \
134 } G_STMT_END
135
136 #define GST_QUEUE_MUTEX_LOCK_CHECK(q,label) G_STMT_START {              \
137   GST_QUEUE_MUTEX_LOCK (q);                                             \
138   if (q->srcresult != GST_FLOW_OK)                                      \
139     goto label;                                                         \
140 } G_STMT_END
141
142 #define GST_QUEUE_MUTEX_UNLOCK(q) G_STMT_START {                        \
143   g_mutex_unlock (&q->qlock);                                            \
144 } G_STMT_END
145
146 #define GST_QUEUE_WAIT_DEL_CHECK(q, label) G_STMT_START {               \
147   STATUS (q, q->sinkpad, "wait for DEL");                               \
148   q->waiting_del = TRUE;                                                \
149   g_cond_wait (&q->item_del, &q->qlock);                                  \
150   q->waiting_del = FALSE;                                               \
151   if (q->srcresult != GST_FLOW_OK) {                                    \
152     STATUS (q, q->srcpad, "received DEL wakeup");                       \
153     goto label;                                                         \
154   }                                                                     \
155   STATUS (q, q->sinkpad, "received DEL");                               \
156 } G_STMT_END
157
158 #define GST_QUEUE_WAIT_ADD_CHECK(q, label) G_STMT_START {               \
159   STATUS (q, q->srcpad, "wait for ADD");                                \
160   q->waiting_add = TRUE;                                                \
161   g_cond_wait (&q->item_add, &q->qlock);                                  \
162   q->waiting_add = FALSE;                                               \
163   if (q->srcresult != GST_FLOW_OK) {                                    \
164     STATUS (q, q->srcpad, "received ADD wakeup");                       \
165     goto label;                                                         \
166   }                                                                     \
167   STATUS (q, q->srcpad, "received ADD");                                \
168 } G_STMT_END
169
170 #define GST_QUEUE_SIGNAL_DEL(q) G_STMT_START {                          \
171   if (q->waiting_del) {                                                 \
172     STATUS (q, q->srcpad, "signal DEL");                                \
173     g_cond_signal (&q->item_del);                                        \
174   }                                                                     \
175 } G_STMT_END
176
177 #define GST_QUEUE_SIGNAL_ADD(q) G_STMT_START {                          \
178   if (q->waiting_add) {                                                 \
179     STATUS (q, q->sinkpad, "signal ADD");                               \
180     g_cond_signal (&q->item_add);                                        \
181   }                                                                     \
182 } G_STMT_END
183
184 #define _do_init \
185     GST_DEBUG_CATEGORY_INIT (queue_debug, "queue", 0, "queue element"); \
186     GST_DEBUG_CATEGORY_INIT (queue_dataflow, "queue_dataflow", 0, \
187         "dataflow inside the queue element");
188 #define gst_queue_parent_class parent_class
189 G_DEFINE_TYPE_WITH_CODE (GstQueue, gst_queue, GST_TYPE_ELEMENT, _do_init);
190
191 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);
196
197 static GstFlowReturn gst_queue_chain (GstPad * pad, GstObject * parent,
198     GstBuffer * buffer);
199 static GstFlowReturn gst_queue_chain_list (GstPad * pad, GstObject * parent,
200     GstBufferList * buffer_list);
201 static GstFlowReturn gst_queue_push_one (GstQueue * queue);
202 static void gst_queue_loop (GstPad * pad);
203
204 static GstFlowReturn gst_queue_handle_sink_event (GstPad * pad,
205     GstObject * parent, GstEvent * event);
206 static gboolean gst_queue_handle_sink_query (GstPad * pad, GstObject * parent,
207     GstQuery * query);
208
209 static gboolean gst_queue_handle_src_event (GstPad * pad, GstObject * parent,
210     GstEvent * event);
211 static gboolean gst_queue_handle_src_query (GstPad * pad, GstObject * parent,
212     GstQuery * query);
213
214 static void gst_queue_locked_flush (GstQueue * queue, gboolean full);
215
216 static gboolean gst_queue_src_activate_mode (GstPad * pad, GstObject * parent,
217     GstPadMode mode, gboolean active);
218 static gboolean gst_queue_sink_activate_mode (GstPad * pad, GstObject * parent,
219     GstPadMode mode, gboolean active);
220
221 static gboolean gst_queue_is_empty (GstQueue * queue);
222 static gboolean gst_queue_is_filled (GstQueue * queue);
223
224
225 typedef struct
226 {
227   GstMiniObject *item;
228   gsize size;
229   gboolean is_query;
230 } GstQueueItem;
231
232 #define GST_TYPE_QUEUE_LEAKY (queue_leaky_get_type ())
233
234 static GType
235 queue_leaky_get_type (void)
236 {
237   static GType queue_leaky_type = 0;
238   static const GEnumValue queue_leaky[] = {
239     {GST_QUEUE_NO_LEAK, "Not Leaky", "no"},
240     {GST_QUEUE_LEAK_UPSTREAM, "Leaky on upstream (new buffers)", "upstream"},
241     {GST_QUEUE_LEAK_DOWNSTREAM, "Leaky on downstream (old buffers)",
242         "downstream"},
243     {0, NULL, NULL},
244   };
245
246   if (!queue_leaky_type) {
247     queue_leaky_type = g_enum_register_static ("GstQueueLeaky", queue_leaky);
248   }
249   return queue_leaky_type;
250 }
251
252 static guint gst_queue_signals[LAST_SIGNAL] = { 0 };
253
254 static void
255 gst_queue_class_init (GstQueueClass * klass)
256 {
257   GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
258   GstElementClass *gstelement_class = GST_ELEMENT_CLASS (klass);
259
260   gobject_class->set_property = gst_queue_set_property;
261   gobject_class->get_property = gst_queue_get_property;
262
263   /* signals */
264   /**
265    * GstQueue::underrun:
266    * @queue: the queue instance
267    *
268    * Reports that the buffer became empty (underrun).
269    * A buffer is empty if the total amount of data inside it (num-buffers, time,
270    * size) is lower than the boundary values which can be set through the
271    * GObject properties.
272    */
273   gst_queue_signals[SIGNAL_UNDERRUN] =
274       g_signal_new ("underrun", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_FIRST,
275       G_STRUCT_OFFSET (GstQueueClass, underrun), NULL, NULL,
276       g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0);
277   /**
278    * GstQueue::running:
279    * @queue: the queue instance
280    *
281    * Reports that enough (min-threshold) data is in the queue. Use this signal
282    * together with the underrun signal to pause the pipeline on underrun and
283    * wait for the queue to fill-up before resume playback.
284    */
285   gst_queue_signals[SIGNAL_RUNNING] =
286       g_signal_new ("running", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_FIRST,
287       G_STRUCT_OFFSET (GstQueueClass, running), NULL, NULL,
288       g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0);
289   /**
290    * GstQueue::overrun:
291    * @queue: the queue instance
292    *
293    * Reports that the buffer became full (overrun).
294    * A buffer is full if the total amount of data inside it (num-buffers, time,
295    * size) is higher than the boundary values which can be set through the
296    * GObject properties.
297    */
298   gst_queue_signals[SIGNAL_OVERRUN] =
299       g_signal_new ("overrun", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_FIRST,
300       G_STRUCT_OFFSET (GstQueueClass, overrun), NULL, NULL,
301       g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0);
302   /**
303    * GstQueue::pushing:
304    * @queue: the queue instance
305    *
306    * Reports when the queue has enough data to start pushing data again on the
307    * source pad.
308    */
309   gst_queue_signals[SIGNAL_PUSHING] =
310       g_signal_new ("pushing", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_FIRST,
311       G_STRUCT_OFFSET (GstQueueClass, pushing), NULL, NULL,
312       g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0);
313
314   /* properties */
315   g_object_class_install_property (gobject_class, PROP_CUR_LEVEL_BYTES,
316       g_param_spec_uint ("current-level-bytes", "Current level (kB)",
317           "Current amount of data in the queue (bytes)",
318           0, G_MAXUINT, 0, G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
319   g_object_class_install_property (gobject_class, PROP_CUR_LEVEL_BUFFERS,
320       g_param_spec_uint ("current-level-buffers", "Current level (buffers)",
321           "Current number of buffers in the queue",
322           0, G_MAXUINT, 0, G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
323   g_object_class_install_property (gobject_class, PROP_CUR_LEVEL_TIME,
324       g_param_spec_uint64 ("current-level-time", "Current level (ns)",
325           "Current amount of data in the queue (in ns)",
326           0, G_MAXUINT64, 0, G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
327
328   g_object_class_install_property (gobject_class, PROP_MAX_SIZE_BYTES,
329       g_param_spec_uint ("max-size-bytes", "Max. size (kB)",
330           "Max. amount of data in the queue (bytes, 0=disable)",
331           0, G_MAXUINT, DEFAULT_MAX_SIZE_BYTES,
332           G_PARAM_READWRITE | GST_PARAM_MUTABLE_PLAYING |
333           G_PARAM_STATIC_STRINGS));
334   g_object_class_install_property (gobject_class, PROP_MAX_SIZE_BUFFERS,
335       g_param_spec_uint ("max-size-buffers", "Max. size (buffers)",
336           "Max. number of buffers in the queue (0=disable)", 0, G_MAXUINT,
337           DEFAULT_MAX_SIZE_BUFFERS,
338           G_PARAM_READWRITE | GST_PARAM_MUTABLE_PLAYING |
339           G_PARAM_STATIC_STRINGS));
340   g_object_class_install_property (gobject_class, PROP_MAX_SIZE_TIME,
341       g_param_spec_uint64 ("max-size-time", "Max. size (ns)",
342           "Max. amount of data in the queue (in ns, 0=disable)", 0, G_MAXUINT64,
343           DEFAULT_MAX_SIZE_TIME,
344           G_PARAM_READWRITE | GST_PARAM_MUTABLE_PLAYING |
345           G_PARAM_STATIC_STRINGS));
346
347   g_object_class_install_property (gobject_class, PROP_MIN_THRESHOLD_BYTES,
348       g_param_spec_uint ("min-threshold-bytes", "Min. threshold (kB)",
349           "Min. amount of data in the queue to allow reading (bytes, 0=disable)",
350           0, G_MAXUINT, 0,
351           G_PARAM_READWRITE | GST_PARAM_MUTABLE_PLAYING |
352           G_PARAM_STATIC_STRINGS));
353   g_object_class_install_property (gobject_class, PROP_MIN_THRESHOLD_BUFFERS,
354       g_param_spec_uint ("min-threshold-buffers", "Min. threshold (buffers)",
355           "Min. number of buffers in the queue to allow reading (0=disable)", 0,
356           G_MAXUINT, 0,
357           G_PARAM_READWRITE | GST_PARAM_MUTABLE_PLAYING |
358           G_PARAM_STATIC_STRINGS));
359   g_object_class_install_property (gobject_class, PROP_MIN_THRESHOLD_TIME,
360       g_param_spec_uint64 ("min-threshold-time", "Min. threshold (ns)",
361           "Min. amount of data in the queue to allow reading (in ns, 0=disable)",
362           0, G_MAXUINT64, 0,
363           G_PARAM_READWRITE | GST_PARAM_MUTABLE_PLAYING |
364           G_PARAM_STATIC_STRINGS));
365
366   g_object_class_install_property (gobject_class, PROP_LEAKY,
367       g_param_spec_enum ("leaky", "Leaky",
368           "Where the queue leaks, if at all",
369           GST_TYPE_QUEUE_LEAKY, GST_QUEUE_NO_LEAK,
370           G_PARAM_READWRITE | GST_PARAM_MUTABLE_PLAYING |
371           G_PARAM_STATIC_STRINGS));
372
373   /**
374    * GstQueue:silent
375    *
376    * Don't emit queue signals. Makes queues more lightweight if no signals are
377    * needed.
378    */
379   g_object_class_install_property (gobject_class, PROP_SILENT,
380       g_param_spec_boolean ("silent", "Silent",
381           "Don't emit queue signals", FALSE,
382           G_PARAM_READWRITE | GST_PARAM_MUTABLE_PLAYING |
383           G_PARAM_STATIC_STRINGS));
384
385   /**
386    * GstQueue:flush-on-eos
387    *
388    * Discard all data in the queue when an EOS event is received, and pass
389    * on the EOS event as soon as possible (instead of waiting until all
390    * buffers in the queue have been processed, which is the default behaviour).
391    *
392    * Flushing the queue on EOS might be useful when capturing and encoding
393    * from a live source, to finish up the recording quickly in cases when
394    * the encoder is slow. Note that this might mean some data from the end of
395    * the recording data might be lost though (never more than the configured
396    * max. sizes though).
397    *
398    * Since: 1.2
399    */
400   g_object_class_install_property (gobject_class, PROP_FLUSH_ON_EOS,
401       g_param_spec_boolean ("flush-on-eos", "Flush on EOS",
402           "Discard all data in the queue when an EOS event is received", FALSE,
403           G_PARAM_READWRITE | GST_PARAM_MUTABLE_PLAYING |
404           G_PARAM_STATIC_STRINGS));
405
406   gobject_class->finalize = gst_queue_finalize;
407
408   gst_element_class_set_static_metadata (gstelement_class,
409       "Queue",
410       "Generic", "Simple data queue", "Erik Walthinsen <omega@cse.ogi.edu>");
411   gst_element_class_add_static_pad_template (gstelement_class, &srctemplate);
412   gst_element_class_add_static_pad_template (gstelement_class, &sinktemplate);
413
414   /* Registering debug symbols for function pointers */
415   GST_DEBUG_REGISTER_FUNCPTR (gst_queue_src_activate_mode);
416   GST_DEBUG_REGISTER_FUNCPTR (gst_queue_handle_sink_event);
417   GST_DEBUG_REGISTER_FUNCPTR (gst_queue_handle_sink_query);
418   GST_DEBUG_REGISTER_FUNCPTR (gst_queue_handle_src_event);
419   GST_DEBUG_REGISTER_FUNCPTR (gst_queue_handle_src_query);
420   GST_DEBUG_REGISTER_FUNCPTR (gst_queue_chain);
421   GST_DEBUG_REGISTER_FUNCPTR (gst_queue_chain_list);
422 }
423
424 static void
425 gst_queue_init (GstQueue * queue)
426 {
427   queue->sinkpad = gst_pad_new_from_static_template (&sinktemplate, "sink");
428
429   gst_pad_set_chain_function (queue->sinkpad, gst_queue_chain);
430   gst_pad_set_chain_list_function (queue->sinkpad, gst_queue_chain_list);
431   gst_pad_set_activatemode_function (queue->sinkpad,
432       gst_queue_sink_activate_mode);
433   gst_pad_set_event_full_function (queue->sinkpad, gst_queue_handle_sink_event);
434   gst_pad_set_query_function (queue->sinkpad, gst_queue_handle_sink_query);
435   GST_PAD_SET_PROXY_CAPS (queue->sinkpad);
436   gst_element_add_pad (GST_ELEMENT (queue), queue->sinkpad);
437
438   queue->srcpad = gst_pad_new_from_static_template (&srctemplate, "src");
439
440   gst_pad_set_activatemode_function (queue->srcpad,
441       gst_queue_src_activate_mode);
442   gst_pad_set_event_function (queue->srcpad, gst_queue_handle_src_event);
443   gst_pad_set_query_function (queue->srcpad, gst_queue_handle_src_query);
444   GST_PAD_SET_PROXY_CAPS (queue->srcpad);
445   gst_element_add_pad (GST_ELEMENT (queue), queue->srcpad);
446
447   GST_QUEUE_CLEAR_LEVEL (queue->cur_level);
448   queue->max_size.buffers = DEFAULT_MAX_SIZE_BUFFERS;
449   queue->max_size.bytes = DEFAULT_MAX_SIZE_BYTES;
450   queue->max_size.time = DEFAULT_MAX_SIZE_TIME;
451   GST_QUEUE_CLEAR_LEVEL (queue->min_threshold);
452   GST_QUEUE_CLEAR_LEVEL (queue->orig_min_threshold);
453   gst_segment_init (&queue->sink_segment, GST_FORMAT_TIME);
454   gst_segment_init (&queue->src_segment, GST_FORMAT_TIME);
455   queue->head_needs_discont = queue->tail_needs_discont = FALSE;
456
457   queue->leaky = GST_QUEUE_NO_LEAK;
458   queue->srcresult = GST_FLOW_FLUSHING;
459
460   g_mutex_init (&queue->qlock);
461   g_cond_init (&queue->item_add);
462   g_cond_init (&queue->item_del);
463   g_cond_init (&queue->query_handled);
464
465   queue->queue =
466       gst_queue_array_new_for_struct (sizeof (GstQueueItem),
467       DEFAULT_MAX_SIZE_BUFFERS * 3 / 2);
468
469   queue->sinktime = GST_CLOCK_STIME_NONE;
470   queue->srctime = GST_CLOCK_STIME_NONE;
471
472   queue->sink_tainted = TRUE;
473   queue->src_tainted = TRUE;
474
475   queue->newseg_applied_to_src = FALSE;
476
477   GST_DEBUG_OBJECT (queue,
478       "initialized queue's not_empty & not_full conditions");
479 }
480
481 /* called only once, as opposed to dispose */
482 static void
483 gst_queue_finalize (GObject * object)
484 {
485   GstQueue *queue = GST_QUEUE (object);
486   GstQueueItem *qitem;
487
488   GST_DEBUG_OBJECT (queue, "finalizing queue");
489
490   while ((qitem = gst_queue_array_pop_head_struct (queue->queue))) {
491     /* FIXME: if it's a query, shouldn't we unref that too? */
492     if (!qitem->is_query)
493       gst_mini_object_unref (qitem->item);
494   }
495   gst_queue_array_free (queue->queue);
496
497   g_mutex_clear (&queue->qlock);
498   g_cond_clear (&queue->item_add);
499   g_cond_clear (&queue->item_del);
500   g_cond_clear (&queue->query_handled);
501
502   G_OBJECT_CLASS (parent_class)->finalize (object);
503 }
504
505 /* Convenience function */
506 static inline GstClockTimeDiff
507 my_segment_to_running_time (GstSegment * segment, GstClockTime val)
508 {
509   GstClockTimeDiff res = GST_CLOCK_STIME_NONE;
510
511   if (GST_CLOCK_TIME_IS_VALID (val)) {
512     gboolean sign =
513         gst_segment_to_running_time_full (segment, GST_FORMAT_TIME, val, &val);
514     if (sign > 0)
515       res = val;
516     else if (sign < 0)
517       res = -val;
518   }
519   return res;
520 }
521
522 /* calculate the diff between running time on the sink and src of the queue.
523  * This is the total amount of time in the queue. */
524 static void
525 update_time_level (GstQueue * queue)
526 {
527   gint64 sink_time, src_time;
528
529   if (queue->sink_tainted) {
530     GST_LOG_OBJECT (queue, "update sink time");
531     queue->sinktime =
532         my_segment_to_running_time (&queue->sink_segment,
533         queue->sink_segment.position);
534     queue->sink_tainted = FALSE;
535   }
536   sink_time = queue->sinktime;
537
538   if (queue->src_tainted) {
539     GST_LOG_OBJECT (queue, "update src time");
540     queue->srctime =
541         my_segment_to_running_time (&queue->src_segment,
542         queue->src_segment.position);
543     queue->src_tainted = FALSE;
544   }
545   src_time = queue->srctime;
546
547   GST_LOG_OBJECT (queue, "sink %" GST_STIME_FORMAT ", src %" GST_STIME_FORMAT,
548       GST_STIME_ARGS (sink_time), GST_STIME_ARGS (src_time));
549
550   if (sink_time >= src_time)
551     queue->cur_level.time = sink_time - src_time;
552   else
553     queue->cur_level.time = 0;
554 }
555
556 /* take a SEGMENT event and apply the values to segment, updating the time
557  * level of queue. */
558 static void
559 apply_segment (GstQueue * queue, GstEvent * event, GstSegment * segment,
560     gboolean sink)
561 {
562   gst_event_copy_segment (event, segment);
563
564   /* now configure the values, we use these to track timestamps on the
565    * sinkpad. */
566   if (segment->format != GST_FORMAT_TIME) {
567     /* non-time format, pretent the current time segment is closed with a
568      * 0 start and unknown stop time. */
569     segment->format = GST_FORMAT_TIME;
570     segment->start = 0;
571     segment->stop = -1;
572     segment->time = 0;
573   }
574   if (sink)
575     queue->sink_tainted = TRUE;
576   else
577     queue->src_tainted = TRUE;
578
579   GST_DEBUG_OBJECT (queue, "configured SEGMENT %" GST_SEGMENT_FORMAT, segment);
580
581   /* segment can update the time level of the queue */
582   update_time_level (queue);
583 }
584
585 static void
586 apply_gap (GstQueue * queue, GstEvent * event,
587     GstSegment * segment, gboolean is_sink)
588 {
589   GstClockTime timestamp;
590   GstClockTime duration;
591
592   gst_event_parse_gap (event, &timestamp, &duration);
593
594   if (GST_CLOCK_TIME_IS_VALID (timestamp)) {
595
596     if (GST_CLOCK_TIME_IS_VALID (duration)) {
597       timestamp += duration;
598     }
599
600     segment->position = timestamp;
601
602     if (is_sink)
603       queue->sink_tainted = TRUE;
604     else
605       queue->src_tainted = TRUE;
606
607     /* calc diff with other end */
608     update_time_level (queue);
609   }
610 }
611
612
613 /* take a buffer and update segment, updating the time level of the queue. */
614 static void
615 apply_buffer (GstQueue * queue, GstBuffer * buffer, GstSegment * segment,
616     gboolean sink)
617 {
618   GstClockTime duration, timestamp;
619
620   timestamp = GST_BUFFER_DTS_OR_PTS (buffer);
621   duration = GST_BUFFER_DURATION (buffer);
622
623   /* if no timestamp is set, assume it's continuous with the previous
624    * time */
625   if (timestamp == GST_CLOCK_TIME_NONE)
626     timestamp = segment->position;
627
628   /* add duration */
629   if (duration != GST_CLOCK_TIME_NONE)
630     timestamp += duration;
631
632   GST_LOG_OBJECT (queue, "%s position updated to %" GST_TIME_FORMAT,
633       segment == &queue->sink_segment ? "sink" : "src",
634       GST_TIME_ARGS (timestamp));
635
636   segment->position = timestamp;
637   if (sink)
638     queue->sink_tainted = TRUE;
639   else
640     queue->src_tainted = TRUE;
641
642
643   /* calc diff with other end */
644   update_time_level (queue);
645 }
646
647 static gboolean
648 buffer_list_apply_time (GstBuffer ** buf, guint idx, gpointer user_data)
649 {
650   GstClockTime *timestamp = user_data;
651   GstClockTime btime;
652
653   GST_TRACE ("buffer %u has pts %" GST_TIME_FORMAT " dts %" GST_TIME_FORMAT
654       " duration %" GST_TIME_FORMAT, idx, GST_TIME_ARGS (GST_BUFFER_DTS (*buf)),
655       GST_TIME_ARGS (GST_BUFFER_PTS (*buf)),
656       GST_TIME_ARGS (GST_BUFFER_DURATION (*buf)));
657
658   btime = GST_BUFFER_DTS_OR_PTS (*buf);
659   if (GST_CLOCK_TIME_IS_VALID (btime))
660     *timestamp = btime;
661
662   if (GST_BUFFER_DURATION_IS_VALID (*buf))
663     *timestamp += GST_BUFFER_DURATION (*buf);
664
665   GST_TRACE ("ts now %" GST_TIME_FORMAT, GST_TIME_ARGS (*timestamp));
666
667   return TRUE;
668 }
669
670 /* take a buffer list and update segment, updating the time level of the queue */
671 static void
672 apply_buffer_list (GstQueue * queue, GstBufferList * buffer_list,
673     GstSegment * segment, gboolean sink)
674 {
675   GstClockTime timestamp;
676
677   /* if no timestamp is set, assume it's continuous with the previous time */
678   timestamp = segment->position;
679
680   gst_buffer_list_foreach (buffer_list, buffer_list_apply_time, &timestamp);
681
682   GST_DEBUG_OBJECT (queue, "position updated to %" GST_TIME_FORMAT,
683       GST_TIME_ARGS (timestamp));
684
685   segment->position = timestamp;
686
687   if (sink)
688     queue->sink_tainted = TRUE;
689   else
690     queue->src_tainted = TRUE;
691
692   /* calc diff with other end */
693   update_time_level (queue);
694 }
695
696 static void
697 gst_queue_locked_flush (GstQueue * queue, gboolean full)
698 {
699   GstQueueItem *qitem;
700
701   while ((qitem = gst_queue_array_pop_head_struct (queue->queue))) {
702     /* Then lose another reference because we are supposed to destroy that
703        data when flushing */
704     if (!full && !qitem->is_query && GST_IS_EVENT (qitem->item)
705         && GST_EVENT_IS_STICKY (qitem->item)
706         && GST_EVENT_TYPE (qitem->item) != GST_EVENT_SEGMENT
707         && GST_EVENT_TYPE (qitem->item) != GST_EVENT_EOS) {
708       gst_pad_store_sticky_event (queue->srcpad, GST_EVENT_CAST (qitem->item));
709     }
710     if (!qitem->is_query)
711       gst_mini_object_unref (qitem->item);
712     memset (qitem, 0, sizeof (GstQueueItem));
713   }
714   queue->last_query = FALSE;
715   g_cond_signal (&queue->query_handled);
716   GST_QUEUE_CLEAR_LEVEL (queue->cur_level);
717   queue->min_threshold.buffers = queue->orig_min_threshold.buffers;
718   queue->min_threshold.bytes = queue->orig_min_threshold.bytes;
719   queue->min_threshold.time = queue->orig_min_threshold.time;
720   gst_segment_init (&queue->sink_segment, GST_FORMAT_TIME);
721   gst_segment_init (&queue->src_segment, GST_FORMAT_TIME);
722   queue->head_needs_discont = queue->tail_needs_discont = FALSE;
723
724   queue->sinktime = queue->srctime = GST_CLOCK_STIME_NONE;
725   queue->sink_tainted = queue->src_tainted = TRUE;
726
727   /* we deleted a lot of something */
728   GST_QUEUE_SIGNAL_DEL (queue);
729 }
730
731 /* enqueue an item an update the level stats, with QUEUE_LOCK */
732 static inline void
733 gst_queue_locked_enqueue_buffer (GstQueue * queue, gpointer item)
734 {
735   GstQueueItem qitem;
736   GstBuffer *buffer = GST_BUFFER_CAST (item);
737   gsize bsize = gst_buffer_get_size (buffer);
738
739   /* add buffer to the statistics */
740   queue->cur_level.buffers++;
741   queue->cur_level.bytes += bsize;
742   apply_buffer (queue, buffer, &queue->sink_segment, TRUE);
743
744   qitem.item = item;
745   qitem.is_query = FALSE;
746   qitem.size = bsize;
747   gst_queue_array_push_tail_struct (queue->queue, &qitem);
748   GST_QUEUE_SIGNAL_ADD (queue);
749 }
750
751 static gboolean
752 buffer_list_calc_size (GstBuffer ** buf, guint idx, gpointer data)
753 {
754   guint *p_size = data;
755   gsize buf_size;
756
757   buf_size = gst_buffer_get_size (*buf);
758   GST_TRACE ("buffer %u in has size %" G_GSIZE_FORMAT, idx, buf_size);
759   *p_size += buf_size;
760   return TRUE;
761 }
762
763 static inline void
764 gst_queue_locked_enqueue_buffer_list (GstQueue * queue, gpointer item)
765 {
766   GstQueueItem qitem;
767   GstBufferList *buffer_list = GST_BUFFER_LIST_CAST (item);
768   gsize bsize = 0;
769
770   gst_buffer_list_foreach (buffer_list, buffer_list_calc_size, &bsize);
771
772   /* add buffer to the statistics */
773   queue->cur_level.buffers += gst_buffer_list_length (buffer_list);
774   queue->cur_level.bytes += bsize;
775   apply_buffer_list (queue, buffer_list, &queue->sink_segment, TRUE);
776
777   qitem.item = item;
778   qitem.is_query = FALSE;
779   qitem.size = bsize;
780   gst_queue_array_push_tail_struct (queue->queue, &qitem);
781   GST_QUEUE_SIGNAL_ADD (queue);
782 }
783
784 static inline void
785 gst_queue_locked_enqueue_event (GstQueue * queue, gpointer item)
786 {
787   GstQueueItem qitem;
788   GstEvent *event = GST_EVENT_CAST (item);
789
790   switch (GST_EVENT_TYPE (event)) {
791     case GST_EVENT_EOS:
792       GST_CAT_LOG_OBJECT (queue_dataflow, queue, "got EOS from upstream");
793       /* Zero the thresholds, this makes sure the queue is completely
794        * filled and we can read all data from the queue. */
795       if (queue->flush_on_eos)
796         gst_queue_locked_flush (queue, FALSE);
797       else
798         GST_QUEUE_CLEAR_LEVEL (queue->min_threshold);
799       /* mark the queue as EOS. This prevents us from accepting more data. */
800       queue->eos = TRUE;
801       break;
802     case GST_EVENT_SEGMENT:
803       apply_segment (queue, event, &queue->sink_segment, TRUE);
804       /* if the queue is empty, apply sink segment on the source */
805       if (gst_queue_array_is_empty (queue->queue)) {
806         GST_CAT_LOG_OBJECT (queue_dataflow, queue, "Apply segment on srcpad");
807         apply_segment (queue, event, &queue->src_segment, FALSE);
808         queue->newseg_applied_to_src = TRUE;
809       }
810       /* a new segment allows us to accept more buffers if we got EOS
811        * from downstream */
812       queue->unexpected = FALSE;
813       break;
814     case GST_EVENT_GAP:
815       apply_gap (queue, event, &queue->sink_segment, TRUE);
816       break;
817     default:
818       break;
819   }
820
821   qitem.item = item;
822   qitem.is_query = FALSE;
823   qitem.size = 0;
824   gst_queue_array_push_tail_struct (queue->queue, &qitem);
825   GST_QUEUE_SIGNAL_ADD (queue);
826 }
827
828 /* dequeue an item from the queue and update level stats, with QUEUE_LOCK */
829 static GstMiniObject *
830 gst_queue_locked_dequeue (GstQueue * queue)
831 {
832   GstQueueItem *qitem;
833   GstMiniObject *item;
834   gsize bufsize;
835
836   qitem = gst_queue_array_pop_head_struct (queue->queue);
837   if (qitem == NULL)
838     goto no_item;
839
840   item = qitem->item;
841   bufsize = qitem->size;
842
843   if (GST_IS_BUFFER (item)) {
844     GstBuffer *buffer = GST_BUFFER_CAST (item);
845
846     GST_CAT_LOG_OBJECT (queue_dataflow, queue,
847         "retrieved buffer %p from queue", buffer);
848
849     queue->cur_level.buffers--;
850     queue->cur_level.bytes -= bufsize;
851     apply_buffer (queue, buffer, &queue->src_segment, FALSE);
852
853     /* if the queue is empty now, update the other side */
854     if (queue->cur_level.buffers == 0)
855       queue->cur_level.time = 0;
856   } else if (GST_IS_BUFFER_LIST (item)) {
857     GstBufferList *buffer_list = GST_BUFFER_LIST_CAST (item);
858
859     GST_CAT_LOG_OBJECT (queue_dataflow, queue,
860         "retrieved buffer list %p from queue", buffer_list);
861
862     queue->cur_level.buffers -= gst_buffer_list_length (buffer_list);
863     queue->cur_level.bytes -= bufsize;
864     apply_buffer_list (queue, buffer_list, &queue->src_segment, FALSE);
865
866     /* if the queue is empty now, update the other side */
867     if (queue->cur_level.buffers == 0)
868       queue->cur_level.time = 0;
869   } else if (GST_IS_EVENT (item)) {
870     GstEvent *event = GST_EVENT_CAST (item);
871
872     GST_CAT_LOG_OBJECT (queue_dataflow, queue,
873         "retrieved event %p from queue", event);
874
875     switch (GST_EVENT_TYPE (event)) {
876       case GST_EVENT_EOS:
877         /* queue is empty now that we dequeued the EOS */
878         GST_QUEUE_CLEAR_LEVEL (queue->cur_level);
879         break;
880       case GST_EVENT_SEGMENT:
881         /* apply newsegment if it has not already been applied */
882         if (G_LIKELY (!queue->newseg_applied_to_src)) {
883           apply_segment (queue, event, &queue->src_segment, FALSE);
884         } else {
885           queue->newseg_applied_to_src = FALSE;
886         }
887         break;
888       case GST_EVENT_GAP:
889         apply_gap (queue, event, &queue->src_segment, FALSE);
890         break;
891       default:
892         break;
893     }
894   } else if (GST_IS_QUERY (item)) {
895     GstQuery *query = GST_QUERY_CAST (item);
896
897     GST_CAT_LOG_OBJECT (queue_dataflow, queue,
898         "retrieved query %p from queue", query);
899   } else {
900     g_warning
901         ("Unexpected item %p dequeued from queue %s (refcounting problem?)",
902         item, GST_OBJECT_NAME (queue));
903     item = NULL;
904   }
905   GST_QUEUE_SIGNAL_DEL (queue);
906
907   return item;
908
909   /* ERRORS */
910 no_item:
911   {
912     GST_CAT_DEBUG_OBJECT (queue_dataflow, queue, "the queue is empty");
913     return NULL;
914   }
915 }
916
917 static GstFlowReturn
918 gst_queue_handle_sink_event (GstPad * pad, GstObject * parent, GstEvent * event)
919 {
920   gboolean ret = TRUE;
921   GstQueue *queue;
922
923   queue = GST_QUEUE (parent);
924
925   switch (GST_EVENT_TYPE (event)) {
926     case GST_EVENT_FLUSH_START:
927       STATUS (queue, pad, "received flush start event");
928       /* forward event */
929       ret = gst_pad_push_event (queue->srcpad, event);
930
931       /* now unblock the chain function */
932       GST_QUEUE_MUTEX_LOCK (queue);
933       queue->srcresult = GST_FLOW_FLUSHING;
934       /* unblock the loop and chain functions */
935       GST_QUEUE_SIGNAL_ADD (queue);
936       GST_QUEUE_SIGNAL_DEL (queue);
937       GST_QUEUE_MUTEX_UNLOCK (queue);
938
939       /* make sure it pauses, this should happen since we sent
940        * flush_start downstream. */
941       gst_pad_pause_task (queue->srcpad);
942       GST_CAT_LOG_OBJECT (queue_dataflow, queue, "loop stopped");
943
944       /* unblock query handler after the streaming thread is shut down.
945        * Otherwise downstream might have a query that is already unreffed
946        * upstream */
947       GST_QUEUE_MUTEX_LOCK (queue);
948       queue->last_query = FALSE;
949       g_cond_signal (&queue->query_handled);
950       GST_QUEUE_MUTEX_UNLOCK (queue);
951       break;
952     case GST_EVENT_FLUSH_STOP:
953       STATUS (queue, pad, "received flush stop event");
954       /* forward event */
955       ret = gst_pad_push_event (queue->srcpad, event);
956
957       GST_QUEUE_MUTEX_LOCK (queue);
958       gst_queue_locked_flush (queue, FALSE);
959       queue->srcresult = GST_FLOW_OK;
960       queue->eos = FALSE;
961       queue->unexpected = FALSE;
962       if (gst_pad_is_active (queue->srcpad)) {
963         gst_pad_start_task (queue->srcpad, (GstTaskFunction) gst_queue_loop,
964             queue->srcpad, NULL);
965       } else {
966         GST_INFO_OBJECT (queue->srcpad, "not re-starting task on srcpad, "
967             "pad not active any longer");
968       }
969       GST_QUEUE_MUTEX_UNLOCK (queue);
970
971       STATUS (queue, pad, "after flush");
972       break;
973     default:
974       if (GST_EVENT_IS_SERIALIZED (event)) {
975         /* serialized events go in the queue */
976         GST_QUEUE_MUTEX_LOCK (queue);
977         if (queue->srcresult != GST_FLOW_OK) {
978           /* Errors in sticky event pushing are no problem and ignored here
979            * as they will cause more meaningful errors during data flow.
980            * For EOS events, that are not followed by data flow, we still
981            * return FALSE here though and report an error.
982            */
983           if (!GST_EVENT_IS_STICKY (event)) {
984             GST_QUEUE_MUTEX_UNLOCK (queue);
985             goto out_flow_error;
986           } else if (GST_EVENT_TYPE (event) == GST_EVENT_EOS) {
987             if (queue->srcresult == GST_FLOW_NOT_LINKED
988                 || queue->srcresult < GST_FLOW_EOS) {
989               GST_QUEUE_MUTEX_UNLOCK (queue);
990               GST_ELEMENT_FLOW_ERROR (queue, queue->srcresult);
991             } else {
992               GST_QUEUE_MUTEX_UNLOCK (queue);
993             }
994             goto out_flow_error;
995           }
996         }
997         /* refuse more events on EOS */
998         if (queue->eos)
999           goto out_eos;
1000         gst_queue_locked_enqueue_event (queue, event);
1001         GST_QUEUE_MUTEX_UNLOCK (queue);
1002       } else {
1003         /* non-serialized events are forwarded downstream immediately */
1004         ret = gst_pad_push_event (queue->srcpad, event);
1005       }
1006       break;
1007   }
1008   if (ret == FALSE) {
1009     GST_ERROR_OBJECT (queue, "Failed to push event");
1010     return GST_FLOW_ERROR;
1011   }
1012   return GST_FLOW_OK;
1013
1014   /* ERRORS */
1015 out_eos:
1016   {
1017     GST_CAT_LOG_OBJECT (queue_dataflow, queue, "refusing event, we are EOS");
1018     GST_QUEUE_MUTEX_UNLOCK (queue);
1019     gst_event_unref (event);
1020     return GST_FLOW_EOS;
1021   }
1022 out_flow_error:
1023   {
1024     GST_CAT_LOG_OBJECT (queue_dataflow, queue,
1025         "refusing event, we have a downstream flow error: %s",
1026         gst_flow_get_name (queue->srcresult));
1027     gst_event_unref (event);
1028     return queue->srcresult;
1029   }
1030 }
1031
1032 static gboolean
1033 gst_queue_handle_sink_query (GstPad * pad, GstObject * parent, GstQuery * query)
1034 {
1035   GstQueue *queue = GST_QUEUE_CAST (parent);
1036   gboolean res;
1037
1038   switch (GST_QUERY_TYPE (query)) {
1039     default:
1040       if (G_UNLIKELY (GST_QUERY_IS_SERIALIZED (query))) {
1041         GstQueueItem qitem;
1042
1043         GST_QUEUE_MUTEX_LOCK_CHECK (queue, out_flushing);
1044         GST_LOG_OBJECT (queue, "queuing query %p (%s)", query,
1045             GST_QUERY_TYPE_NAME (query));
1046         qitem.item = GST_MINI_OBJECT_CAST (query);
1047         qitem.is_query = TRUE;
1048         qitem.size = 0;
1049         gst_queue_array_push_tail_struct (queue->queue, &qitem);
1050         GST_QUEUE_SIGNAL_ADD (queue);
1051         while (queue->srcresult == GST_FLOW_OK &&
1052             queue->last_handled_query != query)
1053           g_cond_wait (&queue->query_handled, &queue->qlock);
1054         queue->last_handled_query = NULL;
1055         if (queue->srcresult != GST_FLOW_OK)
1056           goto out_flushing;
1057         res = queue->last_query;
1058         GST_QUEUE_MUTEX_UNLOCK (queue);
1059       } else {
1060         res = gst_pad_query_default (pad, parent, query);
1061       }
1062       break;
1063   }
1064   return res;
1065
1066   /* ERRORS */
1067 out_flushing:
1068   {
1069     GST_DEBUG_OBJECT (queue, "we are flushing");
1070     GST_QUEUE_MUTEX_UNLOCK (queue);
1071     return FALSE;
1072   }
1073 }
1074
1075 static gboolean
1076 gst_queue_is_empty (GstQueue * queue)
1077 {
1078   GstQueueItem *head;
1079
1080   head = gst_queue_array_peek_head_struct (queue->queue);
1081
1082   if (head == NULL)
1083     return TRUE;
1084
1085   /* Only consider the queue empty if the minimum thresholds
1086    * are not reached and data is at the queue head. Otherwise
1087    * we would block forever on serialized queries.
1088    */
1089   if (!GST_IS_BUFFER (head->item) && !GST_IS_BUFFER_LIST (head->item))
1090     return FALSE;
1091
1092   /* It is possible that a max size is reached before all min thresholds are.
1093    * Therefore, only consider it empty if it is not filled. */
1094   return ((queue->min_threshold.buffers > 0 &&
1095           queue->cur_level.buffers < queue->min_threshold.buffers) ||
1096       (queue->min_threshold.bytes > 0 &&
1097           queue->cur_level.bytes < queue->min_threshold.bytes) ||
1098       (queue->min_threshold.time > 0 &&
1099           queue->cur_level.time < queue->min_threshold.time)) &&
1100       !gst_queue_is_filled (queue);
1101 }
1102
1103 static gboolean
1104 gst_queue_is_filled (GstQueue * queue)
1105 {
1106   return (((queue->max_size.buffers > 0 &&
1107               queue->cur_level.buffers >= queue->max_size.buffers) ||
1108           (queue->max_size.bytes > 0 &&
1109               queue->cur_level.bytes >= queue->max_size.bytes) ||
1110           (queue->max_size.time > 0 &&
1111               queue->cur_level.time >= queue->max_size.time)));
1112 }
1113
1114 static void
1115 gst_queue_leak_downstream (GstQueue * queue)
1116 {
1117   /* for as long as the queue is filled, dequeue an item and discard it */
1118   while (gst_queue_is_filled (queue)) {
1119     GstMiniObject *leak;
1120
1121     leak = gst_queue_locked_dequeue (queue);
1122     /* there is nothing to dequeue and the queue is still filled.. This should
1123      * not happen */
1124     g_assert (leak != NULL);
1125
1126     GST_CAT_DEBUG_OBJECT (queue_dataflow, queue,
1127         "queue is full, leaking item %p on downstream end", leak);
1128     if (GST_IS_EVENT (leak) && GST_EVENT_IS_STICKY (leak)) {
1129       GST_CAT_DEBUG_OBJECT (queue_dataflow, queue,
1130           "Storing sticky event %s on srcpad", GST_EVENT_TYPE_NAME (leak));
1131       gst_pad_store_sticky_event (queue->srcpad, GST_EVENT_CAST (leak));
1132     }
1133
1134     if (!GST_IS_QUERY (leak))
1135       gst_mini_object_unref (leak);
1136
1137     /* last buffer needs to get a DISCONT flag */
1138     queue->head_needs_discont = TRUE;
1139   }
1140 }
1141
1142 static gboolean
1143 discont_first_buffer (GstBuffer ** buffer, guint i, gpointer user_data)
1144 {
1145   GstQueue *queue = user_data;
1146   GstBuffer *subbuffer = gst_buffer_make_writable (*buffer);
1147
1148   if (subbuffer) {
1149     *buffer = subbuffer;
1150     GST_BUFFER_FLAG_SET (*buffer, GST_BUFFER_FLAG_DISCONT);
1151   } else {
1152     GST_DEBUG_OBJECT (queue, "Could not mark buffer as DISCONT");
1153   }
1154
1155   return FALSE;
1156 }
1157
1158 static GstFlowReturn
1159 gst_queue_chain_buffer_or_list (GstPad * pad, GstObject * parent,
1160     GstMiniObject * obj, gboolean is_list)
1161 {
1162   GstQueue *queue;
1163
1164   queue = GST_QUEUE_CAST (parent);
1165
1166   /* we have to lock the queue since we span threads */
1167   GST_QUEUE_MUTEX_LOCK_CHECK (queue, out_flushing);
1168   /* when we received EOS, we refuse any more data */
1169   if (queue->eos)
1170     goto out_eos;
1171   if (queue->unexpected)
1172     goto out_unexpected;
1173
1174   if (!is_list) {
1175     GstClockTime duration, timestamp;
1176     GstBuffer *buffer = GST_BUFFER_CAST (obj);
1177
1178     timestamp = GST_BUFFER_DTS_OR_PTS (buffer);
1179     duration = GST_BUFFER_DURATION (buffer);
1180
1181     GST_CAT_LOG_OBJECT (queue_dataflow, queue, "received buffer %p of size %"
1182         G_GSIZE_FORMAT ", time %" GST_TIME_FORMAT ", duration %"
1183         GST_TIME_FORMAT, buffer, gst_buffer_get_size (buffer),
1184         GST_TIME_ARGS (timestamp), GST_TIME_ARGS (duration));
1185   } else {
1186     GST_CAT_LOG_OBJECT (queue_dataflow, queue,
1187         "received buffer list %p with %u buffers", obj,
1188         gst_buffer_list_length (GST_BUFFER_LIST_CAST (obj)));
1189   }
1190
1191   /* We make space available if we're "full" according to whatever
1192    * the user defined as "full". Note that this only applies to buffers.
1193    * We always handle events and they don't count in our statistics. */
1194   while (gst_queue_is_filled (queue)) {
1195     if (!queue->silent) {
1196       GST_QUEUE_MUTEX_UNLOCK (queue);
1197       g_signal_emit (queue, gst_queue_signals[SIGNAL_OVERRUN], 0);
1198       GST_QUEUE_MUTEX_LOCK_CHECK (queue, out_flushing);
1199       /* we recheck, the signal could have changed the thresholds */
1200       if (!gst_queue_is_filled (queue))
1201         break;
1202     }
1203
1204     /* how are we going to make space for this buffer? */
1205     switch (queue->leaky) {
1206       case GST_QUEUE_LEAK_UPSTREAM:
1207         /* next buffer needs to get a DISCONT flag */
1208         queue->tail_needs_discont = TRUE;
1209         /* leak current buffer */
1210         GST_CAT_DEBUG_OBJECT (queue_dataflow, queue,
1211             "queue is full, leaking buffer on upstream end");
1212         /* now we can clean up and exit right away */
1213         goto out_unref;
1214       case GST_QUEUE_LEAK_DOWNSTREAM:
1215         gst_queue_leak_downstream (queue);
1216         break;
1217       default:
1218         g_warning ("Unknown leaky type, using default");
1219         /* fall-through */
1220       case GST_QUEUE_NO_LEAK:
1221       {
1222         GST_CAT_DEBUG_OBJECT (queue_dataflow, queue,
1223             "queue is full, waiting for free space");
1224
1225         /* don't leak. Instead, wait for space to be available */
1226         do {
1227           /* for as long as the queue is filled, wait till an item was deleted. */
1228           GST_QUEUE_WAIT_DEL_CHECK (queue, out_flushing);
1229         } while (gst_queue_is_filled (queue));
1230
1231         GST_CAT_DEBUG_OBJECT (queue_dataflow, queue, "queue is not full");
1232
1233         if (!queue->silent) {
1234           GST_QUEUE_MUTEX_UNLOCK (queue);
1235           g_signal_emit (queue, gst_queue_signals[SIGNAL_RUNNING], 0);
1236           GST_QUEUE_MUTEX_LOCK_CHECK (queue, out_flushing);
1237         }
1238         break;
1239       }
1240     }
1241   }
1242
1243   if (queue->tail_needs_discont) {
1244     if (!is_list) {
1245       GstBuffer *buffer = GST_BUFFER_CAST (obj);
1246       GstBuffer *subbuffer = gst_buffer_make_writable (buffer);
1247
1248       if (subbuffer) {
1249         buffer = subbuffer;
1250         GST_BUFFER_FLAG_SET (buffer, GST_BUFFER_FLAG_DISCONT);
1251       } else {
1252         GST_DEBUG_OBJECT (queue, "Could not mark buffer as DISCONT");
1253       }
1254
1255       obj = GST_MINI_OBJECT_CAST (buffer);
1256     } else {
1257       GstBufferList *buffer_list = GST_BUFFER_LIST_CAST (obj);
1258
1259       buffer_list = gst_buffer_list_make_writable (buffer_list);
1260       gst_buffer_list_foreach (buffer_list, discont_first_buffer, queue);
1261       obj = GST_MINI_OBJECT_CAST (buffer_list);
1262     }
1263     queue->tail_needs_discont = FALSE;
1264   }
1265
1266   /* put buffer in queue now */
1267   if (is_list)
1268     gst_queue_locked_enqueue_buffer_list (queue, obj);
1269   else
1270     gst_queue_locked_enqueue_buffer (queue, obj);
1271   GST_QUEUE_MUTEX_UNLOCK (queue);
1272
1273   return GST_FLOW_OK;
1274
1275   /* special conditions */
1276 out_unref:
1277   {
1278     GST_QUEUE_MUTEX_UNLOCK (queue);
1279
1280     gst_mini_object_unref (obj);
1281
1282     return GST_FLOW_OK;
1283   }
1284 out_flushing:
1285   {
1286     GstFlowReturn ret = queue->srcresult;
1287
1288     GST_CAT_LOG_OBJECT (queue_dataflow, queue,
1289         "exit because task paused, reason: %s", gst_flow_get_name (ret));
1290     GST_QUEUE_MUTEX_UNLOCK (queue);
1291     gst_mini_object_unref (obj);
1292
1293     return ret;
1294   }
1295 out_eos:
1296   {
1297     GST_CAT_LOG_OBJECT (queue_dataflow, queue, "exit because we received EOS");
1298     GST_QUEUE_MUTEX_UNLOCK (queue);
1299
1300     gst_mini_object_unref (obj);
1301
1302     return GST_FLOW_EOS;
1303   }
1304 out_unexpected:
1305   {
1306     GST_CAT_LOG_OBJECT (queue_dataflow, queue, "exit because we received EOS");
1307     GST_QUEUE_MUTEX_UNLOCK (queue);
1308
1309     gst_mini_object_unref (obj);
1310
1311     return GST_FLOW_EOS;
1312   }
1313 }
1314
1315 static GstFlowReturn
1316 gst_queue_chain_list (GstPad * pad, GstObject * parent,
1317     GstBufferList * buffer_list)
1318 {
1319   return gst_queue_chain_buffer_or_list (pad, parent,
1320       GST_MINI_OBJECT_CAST (buffer_list), TRUE);
1321 }
1322
1323 static GstFlowReturn
1324 gst_queue_chain (GstPad * pad, GstObject * parent, GstBuffer * buffer)
1325 {
1326   return gst_queue_chain_buffer_or_list (pad, parent,
1327       GST_MINI_OBJECT_CAST (buffer), FALSE);
1328 }
1329
1330 /* dequeue an item from the queue an push it downstream. This functions returns
1331  * the result of the push. */
1332 static GstFlowReturn
1333 gst_queue_push_one (GstQueue * queue)
1334 {
1335   GstFlowReturn result = queue->srcresult;
1336   GstMiniObject *data;
1337   gboolean is_list;
1338
1339   data = gst_queue_locked_dequeue (queue);
1340   if (data == NULL)
1341     goto no_item;
1342
1343 next:
1344   is_list = GST_IS_BUFFER_LIST (data);
1345
1346   if (GST_IS_BUFFER (data) || is_list) {
1347     if (!is_list) {
1348       GstBuffer *buffer;
1349
1350       buffer = GST_BUFFER_CAST (data);
1351
1352       if (queue->head_needs_discont) {
1353         GstBuffer *subbuffer = gst_buffer_make_writable (buffer);
1354
1355         if (subbuffer) {
1356           buffer = subbuffer;
1357           GST_BUFFER_FLAG_SET (buffer, GST_BUFFER_FLAG_DISCONT);
1358         } else {
1359           GST_DEBUG_OBJECT (queue, "Could not mark buffer as DISCONT");
1360         }
1361         queue->head_needs_discont = FALSE;
1362       }
1363
1364       GST_QUEUE_MUTEX_UNLOCK (queue);
1365       result = gst_pad_push (queue->srcpad, buffer);
1366     } else {
1367       GstBufferList *buffer_list;
1368
1369       buffer_list = GST_BUFFER_LIST_CAST (data);
1370
1371       if (queue->head_needs_discont) {
1372         buffer_list = gst_buffer_list_make_writable (buffer_list);
1373         gst_buffer_list_foreach (buffer_list, discont_first_buffer, queue);
1374         queue->head_needs_discont = FALSE;
1375       }
1376
1377       GST_QUEUE_MUTEX_UNLOCK (queue);
1378       result = gst_pad_push_list (queue->srcpad, buffer_list);
1379     }
1380
1381     /* need to check for srcresult here as well */
1382     GST_QUEUE_MUTEX_LOCK_CHECK (queue, out_flushing);
1383
1384     if (result == GST_FLOW_EOS) {
1385       GST_CAT_LOG_OBJECT (queue_dataflow, queue, "got EOS from downstream");
1386       /* stop pushing buffers, we dequeue all items until we see an item that we
1387        * can push again, which is EOS or SEGMENT. If there is nothing in the
1388        * queue we can push, we set a flag to make the sinkpad refuse more
1389        * buffers with an EOS return value. */
1390       while ((data = gst_queue_locked_dequeue (queue))) {
1391         if (GST_IS_BUFFER (data)) {
1392           GST_CAT_LOG_OBJECT (queue_dataflow, queue,
1393               "dropping EOS buffer %p", data);
1394           gst_buffer_unref (GST_BUFFER_CAST (data));
1395         } else if (GST_IS_BUFFER_LIST (data)) {
1396           GST_CAT_LOG_OBJECT (queue_dataflow, queue,
1397               "dropping EOS buffer list %p", data);
1398           gst_buffer_list_unref (GST_BUFFER_LIST_CAST (data));
1399         } else if (GST_IS_EVENT (data)) {
1400           GstEvent *event = GST_EVENT_CAST (data);
1401           GstEventType type = GST_EVENT_TYPE (event);
1402
1403           if (type == GST_EVENT_EOS || type == GST_EVENT_SEGMENT) {
1404             /* we found a pushable item in the queue, push it out */
1405             GST_CAT_LOG_OBJECT (queue_dataflow, queue,
1406                 "pushing pushable event %s after EOS",
1407                 GST_EVENT_TYPE_NAME (event));
1408             goto next;
1409           }
1410           GST_CAT_LOG_OBJECT (queue_dataflow, queue,
1411               "dropping EOS event %p", event);
1412           gst_event_unref (event);
1413         } else if (GST_IS_QUERY (data)) {
1414           GstQuery *query = GST_QUERY_CAST (data);
1415
1416           GST_CAT_LOG_OBJECT (queue_dataflow, queue,
1417               "dropping query %p because of EOS", query);
1418           queue->last_query = FALSE;
1419           g_cond_signal (&queue->query_handled);
1420         }
1421       }
1422       /* no more items in the queue. Set the unexpected flag so that upstream
1423        * make us refuse any more buffers on the sinkpad. Since we will still
1424        * accept EOS and SEGMENT we return _FLOW_OK to the caller so that the
1425        * task function does not shut down. */
1426       queue->unexpected = TRUE;
1427       result = GST_FLOW_OK;
1428     }
1429   } else if (GST_IS_EVENT (data)) {
1430     GstEvent *event = GST_EVENT_CAST (data);
1431     GstEventType type = GST_EVENT_TYPE (event);
1432
1433     GST_QUEUE_MUTEX_UNLOCK (queue);
1434
1435     gst_pad_push_event (queue->srcpad, event);
1436
1437     GST_QUEUE_MUTEX_LOCK_CHECK (queue, out_flushing);
1438     /* if we're EOS, return EOS so that the task pauses. */
1439     if (type == GST_EVENT_EOS) {
1440       GST_CAT_LOG_OBJECT (queue_dataflow, queue,
1441           "pushed EOS event %p, return EOS", event);
1442       result = GST_FLOW_EOS;
1443     }
1444   } else if (GST_IS_QUERY (data)) {
1445     GstQuery *query = GST_QUERY_CAST (data);
1446     gboolean ret;
1447
1448     GST_QUEUE_MUTEX_UNLOCK (queue);
1449     ret = gst_pad_peer_query (queue->srcpad, query);
1450     GST_QUEUE_MUTEX_LOCK_CHECK (queue, out_flushing_query);
1451     queue->last_query = ret;
1452     queue->last_handled_query = query;
1453     g_cond_signal (&queue->query_handled);
1454     GST_CAT_LOG_OBJECT (queue_dataflow, queue,
1455         "did query %p, return %d", query, queue->last_query);
1456   }
1457   return result;
1458
1459   /* ERRORS */
1460 no_item:
1461   {
1462     GST_CAT_ERROR_OBJECT (queue_dataflow, queue,
1463         "exit because we have no item in the queue");
1464     return GST_FLOW_ERROR;
1465   }
1466 out_flushing:
1467   {
1468     GST_CAT_LOG_OBJECT (queue_dataflow, queue, "exit because we are flushing");
1469     return GST_FLOW_FLUSHING;
1470   }
1471 out_flushing_query:
1472   {
1473     queue->last_query = FALSE;
1474     g_cond_signal (&queue->query_handled);
1475     GST_CAT_LOG_OBJECT (queue_dataflow, queue, "exit because we are flushing");
1476     return GST_FLOW_FLUSHING;
1477   }
1478 }
1479
1480 static void
1481 gst_queue_loop (GstPad * pad)
1482 {
1483   GstQueue *queue;
1484   GstFlowReturn ret;
1485
1486   queue = (GstQueue *) GST_PAD_PARENT (pad);
1487
1488   /* have to lock for thread-safety */
1489   GST_QUEUE_MUTEX_LOCK_CHECK (queue, out_flushing);
1490
1491   while (gst_queue_is_empty (queue)) {
1492     GST_CAT_DEBUG_OBJECT (queue_dataflow, queue, "queue is empty");
1493     if (!queue->silent) {
1494       GST_QUEUE_MUTEX_UNLOCK (queue);
1495       g_signal_emit (queue, gst_queue_signals[SIGNAL_UNDERRUN], 0);
1496       GST_QUEUE_MUTEX_LOCK_CHECK (queue, out_flushing);
1497     }
1498
1499     /* we recheck, the signal could have changed the thresholds */
1500     while (gst_queue_is_empty (queue)) {
1501       GST_QUEUE_WAIT_ADD_CHECK (queue, out_flushing);
1502     }
1503
1504     GST_CAT_DEBUG_OBJECT (queue_dataflow, queue, "queue is not empty");
1505     if (!queue->silent) {
1506       GST_QUEUE_MUTEX_UNLOCK (queue);
1507       g_signal_emit (queue, gst_queue_signals[SIGNAL_RUNNING], 0);
1508       g_signal_emit (queue, gst_queue_signals[SIGNAL_PUSHING], 0);
1509       GST_QUEUE_MUTEX_LOCK_CHECK (queue, out_flushing);
1510     }
1511   }
1512
1513   ret = gst_queue_push_one (queue);
1514   queue->srcresult = ret;
1515   if (ret != GST_FLOW_OK)
1516     goto out_flushing;
1517
1518   GST_QUEUE_MUTEX_UNLOCK (queue);
1519
1520   return;
1521
1522   /* ERRORS */
1523 out_flushing:
1524   {
1525     gboolean eos = queue->eos;
1526     GstFlowReturn ret = queue->srcresult;
1527
1528     gst_pad_pause_task (queue->srcpad);
1529     GST_CAT_LOG_OBJECT (queue_dataflow, queue,
1530         "pause task, reason:  %s", gst_flow_get_name (ret));
1531     if (ret == GST_FLOW_FLUSHING) {
1532       gst_queue_locked_flush (queue, FALSE);
1533     } else {
1534       GST_QUEUE_SIGNAL_DEL (queue);
1535       queue->last_query = FALSE;
1536       g_cond_signal (&queue->query_handled);
1537     }
1538     GST_QUEUE_MUTEX_UNLOCK (queue);
1539     /* let app know about us giving up if upstream is not expected to do so */
1540     /* EOS is already taken care of elsewhere */
1541     if (eos && (ret == GST_FLOW_NOT_LINKED || ret < GST_FLOW_EOS)) {
1542       GST_ELEMENT_FLOW_ERROR (queue, ret);
1543       gst_pad_push_event (queue->srcpad, gst_event_new_eos ());
1544     }
1545     return;
1546   }
1547 }
1548
1549 static gboolean
1550 gst_queue_handle_src_event (GstPad * pad, GstObject * parent, GstEvent * event)
1551 {
1552   gboolean res = TRUE;
1553   GstQueue *queue = GST_QUEUE (parent);
1554
1555 #ifndef GST_DISABLE_GST_DEBUG
1556   GST_CAT_DEBUG_OBJECT (queue_dataflow, queue, "got event %p (%d)",
1557       event, GST_EVENT_TYPE (event));
1558 #endif
1559
1560   switch (GST_EVENT_TYPE (event)) {
1561     case GST_EVENT_RECONFIGURE:
1562       GST_QUEUE_MUTEX_LOCK (queue);
1563       if (queue->srcresult == GST_FLOW_NOT_LINKED) {
1564         /* when we got not linked, assume downstream is linked again now and we
1565          * can try to start pushing again */
1566         queue->srcresult = GST_FLOW_OK;
1567         gst_pad_start_task (pad, (GstTaskFunction) gst_queue_loop, pad, NULL);
1568       }
1569       GST_QUEUE_MUTEX_UNLOCK (queue);
1570
1571       res = gst_pad_push_event (queue->sinkpad, event);
1572       break;
1573     default:
1574       res = gst_pad_event_default (pad, parent, event);
1575       break;
1576   }
1577
1578
1579   return res;
1580 }
1581
1582 static gboolean
1583 gst_queue_handle_src_query (GstPad * pad, GstObject * parent, GstQuery * query)
1584 {
1585   GstQueue *queue = GST_QUEUE (parent);
1586   gboolean res;
1587
1588   switch (GST_QUERY_TYPE (query)) {
1589     case GST_QUERY_SCHEDULING:{
1590       gst_query_add_scheduling_mode (query, GST_PAD_MODE_PUSH);
1591       res = TRUE;
1592       break;
1593     }
1594     default:
1595       res = gst_pad_query_default (pad, parent, query);
1596       break;
1597   }
1598
1599   if (!res)
1600     return FALSE;
1601
1602   /* Adjust peer response for data contained in queue */
1603   switch (GST_QUERY_TYPE (query)) {
1604     case GST_QUERY_POSITION:
1605     {
1606       gint64 peer_pos;
1607       GstFormat format;
1608
1609       /* get peer position */
1610       gst_query_parse_position (query, &format, &peer_pos);
1611
1612       /* FIXME: this code assumes that there's no discont in the queue */
1613       switch (format) {
1614         case GST_FORMAT_BYTES:
1615           peer_pos -= queue->cur_level.bytes;
1616           if (peer_pos < 0)     /* Clamp result to 0 */
1617             peer_pos = 0;
1618           break;
1619         case GST_FORMAT_TIME:
1620           peer_pos -= queue->cur_level.time;
1621           if (peer_pos < 0)     /* Clamp result to 0 */
1622             peer_pos = 0;
1623           break;
1624         default:
1625           GST_DEBUG_OBJECT (queue, "Can't adjust query in %s format, don't "
1626               "know how to adjust value", gst_format_get_name (format));
1627           return TRUE;
1628       }
1629       /* set updated position */
1630       gst_query_set_position (query, format, peer_pos);
1631       break;
1632     }
1633     case GST_QUERY_LATENCY:
1634     {
1635       gboolean live;
1636       GstClockTime min, max;
1637
1638       gst_query_parse_latency (query, &live, &min, &max);
1639
1640       /* we can delay up to the limit of the queue in time. If we have no time
1641        * limit, the best thing we can do is to return an infinite delay. In
1642        * reality a better estimate would be the byte/buffer rate but that is not
1643        * possible right now. */
1644       /* TODO: Use CONVERT query? */
1645       if (queue->max_size.time > 0 && max != -1
1646           && queue->leaky == GST_QUEUE_NO_LEAK)
1647         max += queue->max_size.time;
1648       else if (queue->max_size.time > 0 && queue->leaky != GST_QUEUE_NO_LEAK)
1649         max = MIN (queue->max_size.time, max);
1650       else
1651         max = -1;
1652
1653       /* adjust for min-threshold */
1654       if (queue->min_threshold.time > 0)
1655         min += queue->min_threshold.time;
1656
1657       gst_query_set_latency (query, live, min, max);
1658       break;
1659     }
1660     default:
1661       /* peer handled other queries */
1662       break;
1663   }
1664
1665   return TRUE;
1666 }
1667
1668 static gboolean
1669 gst_queue_sink_activate_mode (GstPad * pad, GstObject * parent, GstPadMode mode,
1670     gboolean active)
1671 {
1672   gboolean result;
1673   GstQueue *queue;
1674
1675   queue = GST_QUEUE (parent);
1676
1677   switch (mode) {
1678     case GST_PAD_MODE_PUSH:
1679       if (active) {
1680         GST_QUEUE_MUTEX_LOCK (queue);
1681         queue->srcresult = GST_FLOW_OK;
1682         queue->eos = FALSE;
1683         queue->unexpected = FALSE;
1684         GST_QUEUE_MUTEX_UNLOCK (queue);
1685       } else {
1686         /* step 1, unblock chain function */
1687         GST_QUEUE_MUTEX_LOCK (queue);
1688         queue->srcresult = GST_FLOW_FLUSHING;
1689         /* the item del signal will unblock */
1690         GST_QUEUE_SIGNAL_DEL (queue);
1691         GST_QUEUE_MUTEX_UNLOCK (queue);
1692
1693         /* step 2, wait until streaming thread stopped and flush queue */
1694         GST_PAD_STREAM_LOCK (pad);
1695         GST_QUEUE_MUTEX_LOCK (queue);
1696         gst_queue_locked_flush (queue, TRUE);
1697         GST_QUEUE_MUTEX_UNLOCK (queue);
1698         GST_PAD_STREAM_UNLOCK (pad);
1699       }
1700       result = TRUE;
1701       break;
1702     default:
1703       result = FALSE;
1704       break;
1705   }
1706   return result;
1707 }
1708
1709 static gboolean
1710 gst_queue_src_activate_mode (GstPad * pad, GstObject * parent, GstPadMode mode,
1711     gboolean active)
1712 {
1713   gboolean result;
1714   GstQueue *queue;
1715
1716   queue = GST_QUEUE (parent);
1717
1718   switch (mode) {
1719     case GST_PAD_MODE_PUSH:
1720       if (active) {
1721         GST_QUEUE_MUTEX_LOCK (queue);
1722         queue->srcresult = GST_FLOW_OK;
1723         queue->eos = FALSE;
1724         queue->unexpected = FALSE;
1725         result =
1726             gst_pad_start_task (pad, (GstTaskFunction) gst_queue_loop, pad,
1727             NULL);
1728         GST_QUEUE_MUTEX_UNLOCK (queue);
1729       } else {
1730         /* step 1, unblock loop function */
1731         GST_QUEUE_MUTEX_LOCK (queue);
1732         queue->srcresult = GST_FLOW_FLUSHING;
1733         /* the item add signal will unblock */
1734         g_cond_signal (&queue->item_add);
1735         GST_QUEUE_MUTEX_UNLOCK (queue);
1736
1737         /* step 2, make sure streaming finishes */
1738         result = gst_pad_stop_task (pad);
1739
1740         GST_QUEUE_MUTEX_LOCK (queue);
1741         gst_queue_locked_flush (queue, FALSE);
1742         GST_QUEUE_MUTEX_UNLOCK (queue);
1743       }
1744       break;
1745     default:
1746       result = FALSE;
1747       break;
1748   }
1749   return result;
1750 }
1751
1752 static void
1753 queue_capacity_change (GstQueue * queue)
1754 {
1755   if (queue->leaky == GST_QUEUE_LEAK_DOWNSTREAM) {
1756     gst_queue_leak_downstream (queue);
1757   }
1758
1759   /* changing the capacity of the queue must wake up
1760    * the _chain function, it might have more room now
1761    * to store the buffer/event in the queue */
1762   GST_QUEUE_SIGNAL_DEL (queue);
1763 }
1764
1765 /* Changing the minimum required fill level must
1766  * wake up the _loop function as it might now
1767  * be able to preceed.
1768  */
1769 #define QUEUE_THRESHOLD_CHANGE(q)\
1770   GST_QUEUE_SIGNAL_ADD (q);
1771
1772 static void
1773 gst_queue_set_property (GObject * object,
1774     guint prop_id, const GValue * value, GParamSpec * pspec)
1775 {
1776   GstQueue *queue = GST_QUEUE (object);
1777
1778   /* someone could change levels here, and since this
1779    * affects the get/put funcs, we need to lock for safety. */
1780   GST_QUEUE_MUTEX_LOCK (queue);
1781
1782   switch (prop_id) {
1783     case PROP_MAX_SIZE_BYTES:
1784       queue->max_size.bytes = g_value_get_uint (value);
1785       queue_capacity_change (queue);
1786       break;
1787     case PROP_MAX_SIZE_BUFFERS:
1788       queue->max_size.buffers = g_value_get_uint (value);
1789       queue_capacity_change (queue);
1790       break;
1791     case PROP_MAX_SIZE_TIME:
1792       queue->max_size.time = g_value_get_uint64 (value);
1793       queue_capacity_change (queue);
1794       break;
1795     case PROP_MIN_THRESHOLD_BYTES:
1796       queue->min_threshold.bytes = g_value_get_uint (value);
1797       queue->orig_min_threshold.bytes = queue->min_threshold.bytes;
1798       QUEUE_THRESHOLD_CHANGE (queue);
1799       break;
1800     case PROP_MIN_THRESHOLD_BUFFERS:
1801       queue->min_threshold.buffers = g_value_get_uint (value);
1802       queue->orig_min_threshold.buffers = queue->min_threshold.buffers;
1803       QUEUE_THRESHOLD_CHANGE (queue);
1804       break;
1805     case PROP_MIN_THRESHOLD_TIME:
1806       queue->min_threshold.time = g_value_get_uint64 (value);
1807       queue->orig_min_threshold.time = queue->min_threshold.time;
1808       QUEUE_THRESHOLD_CHANGE (queue);
1809       break;
1810     case PROP_LEAKY:
1811       queue->leaky = g_value_get_enum (value);
1812       break;
1813     case PROP_SILENT:
1814       queue->silent = g_value_get_boolean (value);
1815       break;
1816     case PROP_FLUSH_ON_EOS:
1817       queue->flush_on_eos = g_value_get_boolean (value);
1818       break;
1819     default:
1820       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
1821       break;
1822   }
1823
1824   GST_QUEUE_MUTEX_UNLOCK (queue);
1825 }
1826
1827 static void
1828 gst_queue_get_property (GObject * object,
1829     guint prop_id, GValue * value, GParamSpec * pspec)
1830 {
1831   GstQueue *queue = GST_QUEUE (object);
1832
1833   GST_QUEUE_MUTEX_LOCK (queue);
1834
1835   switch (prop_id) {
1836     case PROP_CUR_LEVEL_BYTES:
1837       g_value_set_uint (value, queue->cur_level.bytes);
1838       break;
1839     case PROP_CUR_LEVEL_BUFFERS:
1840       g_value_set_uint (value, queue->cur_level.buffers);
1841       break;
1842     case PROP_CUR_LEVEL_TIME:
1843       g_value_set_uint64 (value, queue->cur_level.time);
1844       break;
1845     case PROP_MAX_SIZE_BYTES:
1846       g_value_set_uint (value, queue->max_size.bytes);
1847       break;
1848     case PROP_MAX_SIZE_BUFFERS:
1849       g_value_set_uint (value, queue->max_size.buffers);
1850       break;
1851     case PROP_MAX_SIZE_TIME:
1852       g_value_set_uint64 (value, queue->max_size.time);
1853       break;
1854     case PROP_MIN_THRESHOLD_BYTES:
1855       g_value_set_uint (value, queue->min_threshold.bytes);
1856       break;
1857     case PROP_MIN_THRESHOLD_BUFFERS:
1858       g_value_set_uint (value, queue->min_threshold.buffers);
1859       break;
1860     case PROP_MIN_THRESHOLD_TIME:
1861       g_value_set_uint64 (value, queue->min_threshold.time);
1862       break;
1863     case PROP_LEAKY:
1864       g_value_set_enum (value, queue->leaky);
1865       break;
1866     case PROP_SILENT:
1867       g_value_set_boolean (value, queue->silent);
1868       break;
1869     case PROP_FLUSH_ON_EOS:
1870       g_value_set_boolean (value, queue->flush_on_eos);
1871       break;
1872     default:
1873       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
1874       break;
1875   }
1876
1877   GST_QUEUE_MUTEX_UNLOCK (queue);
1878 }