multiqueue: Fix potential deadlock with parallel release_pad calls
[platform/upstream/gstreamer.git] / subprojects / gstreamer / plugins / elements / gstmultiqueue.c
1 /* GStreamer
2  * Copyright (C) 2006 Edward Hervey <edward@fluendo.com>
3  * Copyright (C) 2007 Jan Schmidt <jan@fluendo.com>
4  * Copyright (C) 2007 Wim Taymans <wim@fluendo.com>
5  * Copyright (C) 2011 Sebastian Dröge <sebastian.droege@collabora.co.uk>
6  *
7  * gstmultiqueue.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-multiqueue
27  * @title: multiqueue
28  * @see_also: #GstQueue
29  *
30  * Multiqueue is similar to a normal #GstQueue with the following additional
31  * features:
32  *
33  * 1) Multiple streamhandling
34  *
35  *  * The element handles queueing data on more than one stream at once. To
36  * achieve such a feature it has request sink pads (sink%u) and
37  * 'sometimes' src pads (src%u). When requesting a given sinkpad with gst_element_request_pad(),
38  * the associated srcpad for that stream will be created.
39  * Example: requesting sink1 will generate src1.
40  *
41  * 2) Non-starvation on multiple stream
42  *
43  * * If more than one stream is used with the element, the streams' queues
44  * will be dynamically grown (up to a limit), in order to ensure that no
45  * stream is risking data starvation. This guarantees that at any given
46  * time there are at least N bytes queued and available for each individual
47  * stream. If an EOS event comes through a srcpad, the associated queue will be
48  * considered as 'not-empty' in the queue-size-growing algorithm.
49  *
50  * 3) Non-linked srcpads graceful handling
51  *
52  * * In order to better support dynamic switching between streams, the multiqueue
53  * (unlike the current GStreamer queue) continues to push buffers on non-linked
54  * pads rather than shutting down. In addition, to prevent a non-linked stream from very quickly consuming all
55  * available buffers and thus 'racing ahead' of the other streams, the element
56  * must ensure that buffers and inlined events for a non-linked stream are pushed
57  * in the same order as they were received, relative to the other streams
58  * controlled by the element. This means that a buffer cannot be pushed to a
59  * non-linked pad any sooner than buffers in any other stream which were received
60  * before it.
61  *
62  * Data is queued until one of the limits specified by the
63  * #GstMultiQueue:max-size-buffers, #GstMultiQueue:max-size-bytes and/or
64  * #GstMultiQueue:max-size-time properties has been reached. Any attempt to push
65  * more buffers into the queue will block the pushing thread until more space
66  * becomes available. #GstMultiQueue:extra-size-buffers,
67  *
68  *
69  * #GstMultiQueue:extra-size-bytes and #GstMultiQueue:extra-size-time are
70  * currently unused.
71  *
72  * The default queue size limits are 5 buffers, 10MB of data, or
73  * two second worth of data, whichever is reached first. Note that the number
74  * of buffers will dynamically grow depending on the fill level of
75  * other queues.
76  *
77  * The #GstMultiQueue::underrun signal is emitted when all of the queues
78  * are empty. The #GstMultiQueue::overrun signal is emitted when one of the
79  * queues is filled.
80  * Both signals are emitted from the context of the streaming thread.
81  *
82  * When using #GstMultiQueue:sync-by-running-time the unlinked streams will
83  * be throttled by the highest running-time of linked streams. This allows
84  * further relinking of those unlinked streams without them being in the
85  * future (i.e. to achieve gapless playback).
86  * When dealing with streams which have got different consumption requirements
87  * downstream (ex: video decoders which will consume more buffer (in time) than
88  * audio decoders), it is recommended to group streams of the same type
89  * by using the pad "group-id" property. This will further throttle streams
90  * in time within that group.
91  */
92
93 #ifdef HAVE_CONFIG_H
94 #  include "config.h"
95 #endif
96
97 #include <gst/gst.h>
98 #include <gst/glib-compat-private.h>
99 #include <stdio.h>
100
101 #include "gstmultiqueue.h"
102 #include "gstcoreelementselements.h"
103
104 /* GstSingleQueue:
105  * @sinkpad: associated sink #GstPad
106  * @srcpad: associated source #GstPad
107  *
108  * Structure containing all information and properties about
109  * a single queue.
110  */
111 typedef struct _GstSingleQueue GstSingleQueue;
112
113 struct _GstSingleQueue
114 {
115   gint refcount;
116
117   /* unique identifier of the queue */
118   guint id;
119   /* group of streams to which this queue belongs to */
120   guint groupid;
121
122 #ifndef GST_DISABLE_GST_DEBUG
123   /* debug identifier */
124   gchar *debug_id;
125 #endif
126   GstClockTimeDiff group_high_time;
127
128   GWeakRef mqueue;
129   GWeakRef sinkpad;
130   GWeakRef srcpad;
131
132   /* flowreturn of previous srcpad push */
133   GstFlowReturn srcresult;
134   /* If something was actually pushed on
135    * this pad after flushing/pad activation
136    * and the srcresult corresponds to something
137    * real
138    */
139   gboolean pushed;
140
141   /* segments */
142   GstSegment sink_segment;
143   GstSegment src_segment;
144   gboolean has_src_segment;     /* preferred over initializing the src_segment to
145                                  * UNDEFINED as this doesn't requires adding ifs
146                                  * in every segment usage */
147
148   /* position of src/sink */
149   GstClockTimeDiff sinktime, srctime;
150   /* cached input value, used for interleave */
151   GstClockTimeDiff cached_sinktime;
152   /* TRUE if either position needs to be recalculated */
153   gboolean sink_tainted, src_tainted;
154
155   /* stream group id */
156   guint32 sink_stream_gid;
157   guint32 src_stream_gid;
158
159   /* TRUE if the stream group-id changed. Resetted to FALSE the next time the
160    * segment is calculated */
161   gboolean sink_stream_gid_changed;
162   gboolean src_stream_gid_changed;
163
164   /* queue of data */
165   GstDataQueue *queue;
166   GstDataQueueSize max_size, extra_size;
167   GstClockTime cur_time;
168   gboolean is_eos;
169   gboolean is_segment_done;
170   gboolean is_sparse;
171   gboolean flushing;
172   gboolean active;
173
174   /* Protected by global lock */
175   guint32 nextid;               /* ID of the next object waiting to be pushed */
176   guint32 oldid;                /* ID of the last object pushed (last in a series) */
177   guint32 last_oldid;           /* Previously observed old_id, reset to MAXUINT32 on flush */
178   GstClockTimeDiff next_time;   /* End running time of next buffer to be pushed */
179   GstClockTimeDiff last_time;   /* Start running time of last pushed buffer */
180   GCond turn;                   /* SingleQueue turn waiting conditional */
181
182   /* for serialized queries */
183   GCond query_handled;
184   gboolean last_query;
185   GstQuery *last_handled_query;
186
187   /* For interleave calculation */
188   GThread *thread;              /* Streaming thread of SingleQueue */
189   GstClockTime interleave;      /* Calculated interleve within the thread */
190 };
191
192 /* Extension of GstDataQueueItem structure for our usage */
193 typedef struct _GstMultiQueueItem GstMultiQueueItem;
194
195 struct _GstMultiQueueItem
196 {
197   GstMiniObject *object;
198   guint size;
199   guint64 duration;
200   gboolean visible;
201
202   GDestroyNotify destroy;
203   guint32 posid;
204
205   gboolean is_query;
206 };
207
208 static GstSingleQueue *gst_single_queue_new (GstMultiQueue * mqueue, guint id);
209 static void gst_single_queue_unref (GstSingleQueue * squeue);
210 static GstSingleQueue *gst_single_queue_ref (GstSingleQueue * squeue);
211
212 static void wake_up_next_non_linked (GstMultiQueue * mq);
213 static void compute_high_id (GstMultiQueue * mq);
214 static void compute_high_time (GstMultiQueue * mq, guint groupid);
215 static void single_queue_overrun_cb (GstDataQueue * dq, GstSingleQueue * sq);
216 static void single_queue_underrun_cb (GstDataQueue * dq, GstSingleQueue * sq);
217
218 static void update_buffering (GstMultiQueue * mq, GstSingleQueue * sq);
219 static void gst_multi_queue_post_buffering (GstMultiQueue * mq);
220 static void recheck_buffering_status (GstMultiQueue * mq);
221
222 static void gst_single_queue_flush_queue (GstSingleQueue * sq, gboolean full);
223
224 static void calculate_interleave (GstMultiQueue * mq, GstSingleQueue * sq);
225
226 static GstStaticPadTemplate sinktemplate = GST_STATIC_PAD_TEMPLATE ("sink_%u",
227     GST_PAD_SINK,
228     GST_PAD_REQUEST,
229     GST_STATIC_CAPS_ANY);
230
231 static GstStaticPadTemplate srctemplate = GST_STATIC_PAD_TEMPLATE ("src_%u",
232     GST_PAD_SRC,
233     GST_PAD_SOMETIMES,
234     GST_STATIC_CAPS_ANY);
235
236 GST_DEBUG_CATEGORY_STATIC (multi_queue_debug);
237 #define GST_CAT_DEFAULT (multi_queue_debug)
238
239 /* Signals and args */
240 enum
241 {
242   SIGNAL_UNDERRUN,
243   SIGNAL_OVERRUN,
244   LAST_SIGNAL
245 };
246
247 /* default limits, we try to keep up to 2 seconds of data and if there is not
248  * time, up to 10 MB. The number of buffers is dynamically scaled to make sure
249  * there is data in the queues. Normally, the byte and time limits are not hit
250  * in theses conditions. */
251 #define DEFAULT_MAX_SIZE_BYTES 10 * 1024 * 1024 /* 10 MB */
252 #define DEFAULT_MAX_SIZE_BUFFERS 5
253 #define DEFAULT_MAX_SIZE_TIME 2 * GST_SECOND
254
255 /* second limits. When we hit one of the above limits we are probably dealing
256  * with a badly muxed file and we scale the limits to these emergency values.
257  * This is currently not yet implemented.
258  * Since we dynamically scale the queue buffer size up to the limits but avoid
259  * going above the max-size-buffers when we can, we don't really need this
260  * additional extra size. */
261 #define DEFAULT_EXTRA_SIZE_BYTES 10 * 1024 * 1024       /* 10 MB */
262 #define DEFAULT_EXTRA_SIZE_BUFFERS 5
263 #define DEFAULT_EXTRA_SIZE_TIME 3 * GST_SECOND
264
265 #define DEFAULT_USE_BUFFERING FALSE
266 #define DEFAULT_LOW_WATERMARK  0.01
267 #define DEFAULT_HIGH_WATERMARK 0.99
268 #define DEFAULT_SYNC_BY_RUNNING_TIME FALSE
269 #define DEFAULT_USE_INTERLEAVE FALSE
270 #define DEFAULT_UNLINKED_CACHE_TIME 250 * GST_MSECOND
271
272 #define DEFAULT_MINIMUM_INTERLEAVE (250 * GST_MSECOND)
273
274 enum
275 {
276   PROP_0,
277   PROP_EXTRA_SIZE_BYTES,
278   PROP_EXTRA_SIZE_BUFFERS,
279   PROP_EXTRA_SIZE_TIME,
280   PROP_MAX_SIZE_BYTES,
281   PROP_MAX_SIZE_BUFFERS,
282   PROP_MAX_SIZE_TIME,
283   PROP_USE_BUFFERING,
284   PROP_LOW_PERCENT,
285   PROP_HIGH_PERCENT,
286   PROP_LOW_WATERMARK,
287   PROP_HIGH_WATERMARK,
288   PROP_SYNC_BY_RUNNING_TIME,
289   PROP_USE_INTERLEAVE,
290   PROP_UNLINKED_CACHE_TIME,
291   PROP_MINIMUM_INTERLEAVE,
292   PROP_STATS,
293   PROP_LAST
294 };
295
296 /* Explanation for buffer levels and percentages:
297  *
298  * The buffering_level functions here return a value in a normalized range
299  * that specifies the current fill level of a queue. The range goes from 0 to
300  * MAX_BUFFERING_LEVEL. The low/high watermarks also use this same range.
301  *
302  * This is not to be confused with the buffering_percent value, which is
303  * a *relative* quantity - relative to the low/high watermarks.
304  * buffering_percent = 0% means overall buffering_level is at the low watermark.
305  * buffering_percent = 100% means overall buffering_level is at the high watermark.
306  * buffering_percent is used for determining if the fill level has reached
307  * the high watermark, and for producing BUFFERING messages. This value
308  * always uses a 0..100 range (since it is a percentage).
309  *
310  * To avoid future confusions, whenever "buffering level" is mentioned, it
311  * refers to the absolute level which is in the 0..MAX_BUFFERING_LEVEL
312  * range. Whenever "buffering_percent" is mentioned, it refers to the
313  * percentage value that is relative to the low/high watermark. */
314
315 /* Using a buffering level range of 0..1000000 to allow for a
316  * resolution in ppm (1 ppm = 0.0001%) */
317 #define MAX_BUFFERING_LEVEL 1000000
318
319 /* How much 1% makes up in the buffer level range */
320 #define BUF_LEVEL_PERCENT_FACTOR ((MAX_BUFFERING_LEVEL) / 100)
321
322 /* GstMultiQueuePad */
323
324 #define DEFAULT_PAD_GROUP_ID 0
325
326 enum
327 {
328   PROP_PAD_0,
329   PROP_PAD_GROUP_ID,
330   PROP_CURRENT_LEVEL_BUFFERS,
331   PROP_CURRENT_LEVEL_BYTES,
332   PROP_CURRENT_LEVEL_TIME,
333 };
334
335 #define GST_TYPE_MULTIQUEUE_PAD            (gst_multiqueue_pad_get_type())
336 #define GST_MULTIQUEUE_PAD(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_MULTIQUEUE_PAD,GstMultiQueuePad))
337 #define GST_IS_MULTIQUEUE_PAD(obj)         (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_MULTIQUEUE_PAD))
338 #define GST_MULTIQUEUE_PAD_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST((klass) ,GST_TYPE_MULTIQUEUE_PAD,GstMultiQueuePadClass))
339 #define GST_IS_MULTIQUEUE_PAD_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass) ,GST_TYPE_MULTIQUEUE_PAD))
340 #define GST_MULTIQUEUE_PAD_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS((obj) ,GST_TYPE_MULTIQUEUE_PAD,GstMultiQueuePadClass))
341
342 #define GST_MULTI_QUEUE_MUTEX_LOCK(q) G_STMT_START {                          \
343   g_mutex_lock (&q->qlock);                                              \
344 } G_STMT_END
345
346 #define GST_MULTI_QUEUE_MUTEX_UNLOCK(q) G_STMT_START {                        \
347   g_mutex_unlock (&q->qlock);                                            \
348 } G_STMT_END
349
350 #define SET_PERCENT(mq, perc) G_STMT_START {                             \
351   if (perc != mq->buffering_percent) {                                   \
352     mq->buffering_percent = perc;                                        \
353     mq->buffering_percent_changed = TRUE;                                \
354     GST_DEBUG_OBJECT (mq, "buffering %d percent", perc);                 \
355   }                                                                      \
356 } G_STMT_END
357
358 struct _GstMultiQueuePad
359 {
360   GstPad parent;
361
362   GstSingleQueue *sq;
363 };
364
365 struct _GstMultiQueuePadClass
366 {
367   GstPadClass parent_class;
368 };
369
370 GType gst_multiqueue_pad_get_type (void);
371
372 G_DEFINE_TYPE (GstMultiQueuePad, gst_multiqueue_pad, GST_TYPE_PAD);
373
374 static guint
375 gst_multiqueue_pad_get_group_id (GstMultiQueuePad * pad)
376 {
377   guint ret = 0;
378   GstMultiQueue *mq;
379
380   if (!pad->sq)
381     return 0;
382
383   mq = g_weak_ref_get (&pad->sq->mqueue);
384
385   if (mq) {
386     GST_OBJECT_LOCK (mq);
387   }
388
389   ret = pad->sq->groupid;
390
391   if (mq) {
392     GST_OBJECT_UNLOCK (mq);
393     gst_object_unref (mq);
394   }
395
396   return ret;
397 }
398
399 static guint
400 gst_multiqueue_pad_get_current_level_buffers (GstMultiQueuePad * pad)
401 {
402   GstSingleQueue *sq = pad->sq;
403   GstDataQueueSize level;
404   GstMultiQueue *mq;
405
406   if (!sq)
407     return 0;
408
409   mq = g_weak_ref_get (&pad->sq->mqueue);
410
411   if (mq) {
412     GST_MULTI_QUEUE_MUTEX_LOCK (mq);
413   }
414
415   gst_data_queue_get_level (sq->queue, &level);
416
417   if (mq) {
418     GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
419     gst_object_unref (mq);
420   }
421
422   return level.visible;
423 }
424
425 static guint
426 gst_multiqueue_pad_get_current_level_bytes (GstMultiQueuePad * pad)
427 {
428   GstSingleQueue *sq = pad->sq;
429   GstDataQueueSize level;
430   GstMultiQueue *mq;
431
432   if (!sq)
433     return 0;
434
435   mq = g_weak_ref_get (&pad->sq->mqueue);
436
437   if (mq) {
438     GST_MULTI_QUEUE_MUTEX_LOCK (mq);
439   }
440
441   gst_data_queue_get_level (sq->queue, &level);
442
443   if (mq) {
444     GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
445     gst_object_unref (mq);
446   }
447
448   return level.bytes;
449 }
450
451 static guint64
452 gst_multiqueue_pad_get_current_level_time (GstMultiQueuePad * pad)
453 {
454   GstSingleQueue *sq = pad->sq;
455   GstMultiQueue *mq;
456   guint64 ret;
457
458   if (!sq)
459     return 0;
460
461   mq = g_weak_ref_get (&pad->sq->mqueue);
462
463   if (mq) {
464     GST_MULTI_QUEUE_MUTEX_LOCK (mq);
465   }
466
467   ret = sq->cur_time;
468
469   if (mq) {
470     GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
471     gst_object_unref (mq);
472   }
473
474   return ret;
475 }
476
477 static void
478 gst_multiqueue_pad_get_property (GObject * object, guint prop_id,
479     GValue * value, GParamSpec * pspec)
480 {
481   GstMultiQueuePad *pad = GST_MULTIQUEUE_PAD (object);
482
483   switch (prop_id) {
484     case PROP_PAD_GROUP_ID:
485       g_value_set_uint (value, gst_multiqueue_pad_get_group_id (pad));
486       break;
487     case PROP_CURRENT_LEVEL_BUFFERS:{
488       g_value_set_uint (value,
489           gst_multiqueue_pad_get_current_level_buffers (pad));
490       break;
491     }
492     case PROP_CURRENT_LEVEL_BYTES:{
493       g_value_set_uint (value,
494           gst_multiqueue_pad_get_current_level_bytes (pad));
495       break;
496     }
497     case PROP_CURRENT_LEVEL_TIME:{
498       g_value_set_uint64 (value,
499           gst_multiqueue_pad_get_current_level_time (pad));
500       break;
501     }
502     default:
503       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
504       break;
505   }
506 }
507
508 static void
509 gst_multiqueue_pad_set_property (GObject * object, guint prop_id,
510     const GValue * value, GParamSpec * pspec)
511 {
512   GstMultiQueuePad *pad = GST_MULTIQUEUE_PAD (object);
513
514   switch (prop_id) {
515     case PROP_PAD_GROUP_ID:
516       if (pad->sq) {
517         GstMultiQueue *mqueue = g_weak_ref_get (&pad->sq->mqueue);
518
519         if (mqueue)
520           GST_OBJECT_LOCK (mqueue);
521
522         pad->sq->groupid = g_value_get_uint (value);
523
524         if (mqueue) {
525           GST_OBJECT_UNLOCK (mqueue);
526           gst_object_unref (mqueue);
527         }
528       }
529       break;
530     default:
531       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
532       break;
533   }
534 }
535
536 static void
537 gst_multiqueue_pad_finalize (GObject * object)
538 {
539   GstMultiQueuePad *pad = GST_MULTIQUEUE_PAD (object);
540
541   if (pad->sq)
542     gst_single_queue_unref (pad->sq);
543
544   G_OBJECT_CLASS (gst_multiqueue_pad_parent_class)->finalize (object);
545 }
546
547 static void
548 gst_multiqueue_pad_class_init (GstMultiQueuePadClass * klass)
549 {
550   GObjectClass *gobject_class = (GObjectClass *) klass;
551
552   gobject_class->set_property = gst_multiqueue_pad_set_property;
553   gobject_class->get_property = gst_multiqueue_pad_get_property;
554   gobject_class->finalize = gst_multiqueue_pad_finalize;
555
556   /**
557    * GstMultiQueuePad:group-id:
558    *
559    * Group to which this pad belongs.
560    *
561    * Since: 1.10
562    */
563   g_object_class_install_property (gobject_class, PROP_PAD_GROUP_ID,
564       g_param_spec_uint ("group-id", "Group ID",
565           "Group to which this pad belongs", 0, G_MAXUINT32,
566           DEFAULT_PAD_GROUP_ID, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
567
568   /**
569    * GstMultiQueuePad:current-level-buffers:
570    *
571    * The corresponding queue's current level of buffers.
572    *
573    * Since: 1.18
574    */
575   g_object_class_install_property (gobject_class, PROP_CURRENT_LEVEL_BUFFERS,
576       g_param_spec_uint ("current-level-buffers", "Current level buffers",
577           "Current level buffers", 0, G_MAXUINT32,
578           0, G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
579
580   /**
581    * GstMultiQueuePad:current-level-bytes:
582    *
583    * The corresponding queue's current level of bytes.
584    *
585    * Since: 1.18
586    */
587   g_object_class_install_property (gobject_class, PROP_CURRENT_LEVEL_BYTES,
588       g_param_spec_uint ("current-level-bytes", "Current level bytes",
589           "Current level bytes", 0, G_MAXUINT32,
590           0, G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
591
592   /**
593    * GstMultiQueuePad:current-level-time:
594    *
595    * The corresponding queue's current level of time.
596    *
597    * Since: 1.18
598    */
599   g_object_class_install_property (gobject_class, PROP_CURRENT_LEVEL_TIME,
600       g_param_spec_uint64 ("current-level-time", "Current level time",
601           "Current level time", 0, G_MAXUINT64,
602           0, G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
603 }
604
605 static void
606 gst_multiqueue_pad_init (GstMultiQueuePad * pad)
607 {
608
609 }
610
611
612 /* Convenience function */
613 static inline GstClockTimeDiff
614 my_segment_to_running_time (GstSegment * segment, GstClockTime val)
615 {
616   GstClockTimeDiff res = GST_CLOCK_STIME_NONE;
617
618   if (GST_CLOCK_TIME_IS_VALID (val)) {
619     gboolean sign =
620         gst_segment_to_running_time_full (segment, GST_FORMAT_TIME, val, &val);
621     if (sign > 0)
622       res = val;
623     else if (sign < 0)
624       res = -val;
625   }
626   return res;
627 }
628
629 static void gst_multi_queue_finalize (GObject * object);
630 static void gst_multi_queue_set_property (GObject * object,
631     guint prop_id, const GValue * value, GParamSpec * pspec);
632 static void gst_multi_queue_get_property (GObject * object,
633     guint prop_id, GValue * value, GParamSpec * pspec);
634
635 static GstPad *gst_multi_queue_request_new_pad (GstElement * element,
636     GstPadTemplate * temp, const gchar * name, const GstCaps * caps);
637 static void gst_multi_queue_release_pad (GstElement * element, GstPad * pad);
638 static GstStateChangeReturn gst_multi_queue_change_state (GstElement *
639     element, GstStateChange transition);
640
641 static void gst_multi_queue_loop (GstPad * pad);
642
643 #define _do_init \
644   GST_DEBUG_CATEGORY_INIT (multi_queue_debug, "multiqueue", 0, "multiqueue element");
645 #define gst_multi_queue_parent_class parent_class
646 G_DEFINE_TYPE_WITH_CODE (GstMultiQueue, gst_multi_queue, GST_TYPE_ELEMENT,
647     _do_init);
648 GST_ELEMENT_REGISTER_DEFINE (multiqueue, "multiqueue", GST_RANK_NONE,
649     GST_TYPE_MULTI_QUEUE);
650
651 static guint gst_multi_queue_signals[LAST_SIGNAL] = { 0 };
652
653 static void
654 gst_multi_queue_class_init (GstMultiQueueClass * klass)
655 {
656   GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
657   GstElementClass *gstelement_class = GST_ELEMENT_CLASS (klass);
658
659   gobject_class->set_property = gst_multi_queue_set_property;
660   gobject_class->get_property = gst_multi_queue_get_property;
661
662   /* SIGNALS */
663
664   /**
665    * GstMultiQueue::underrun:
666    * @multiqueue: the multiqueue instance
667    *
668    * This signal is emitted from the streaming thread when there is
669    * no data in any of the queues inside the multiqueue instance (underrun).
670    *
671    * This indicates either starvation or EOS from the upstream data sources.
672    */
673   gst_multi_queue_signals[SIGNAL_UNDERRUN] =
674       g_signal_new ("underrun", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_FIRST,
675       G_STRUCT_OFFSET (GstMultiQueueClass, underrun), NULL, NULL,
676       NULL, G_TYPE_NONE, 0);
677
678   /**
679    * GstMultiQueue::overrun:
680    * @multiqueue: the multiqueue instance
681    *
682    * Reports that one of the queues in the multiqueue is full (overrun).
683    * A queue is full if the total amount of data inside it (num-buffers, time,
684    * size) is higher than the boundary values which can be set through the
685    * GObject properties.
686    *
687    * This can be used as an indicator of pre-roll.
688    */
689   gst_multi_queue_signals[SIGNAL_OVERRUN] =
690       g_signal_new ("overrun", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_FIRST,
691       G_STRUCT_OFFSET (GstMultiQueueClass, overrun), NULL, NULL,
692       NULL, G_TYPE_NONE, 0);
693
694   /* PROPERTIES */
695
696   g_object_class_install_property (gobject_class, PROP_MAX_SIZE_BYTES,
697       g_param_spec_uint ("max-size-bytes", "Max. size (kB)",
698           "Max. amount of data in the queue (bytes, 0=disable)",
699           0, G_MAXUINT, DEFAULT_MAX_SIZE_BYTES,
700           G_PARAM_READWRITE | GST_PARAM_MUTABLE_PLAYING |
701           G_PARAM_STATIC_STRINGS));
702   g_object_class_install_property (gobject_class, PROP_MAX_SIZE_BUFFERS,
703       g_param_spec_uint ("max-size-buffers", "Max. size (buffers)",
704           "Max. number of buffers in the queue (0=disable)", 0, G_MAXUINT,
705           DEFAULT_MAX_SIZE_BUFFERS,
706           G_PARAM_READWRITE | GST_PARAM_MUTABLE_PLAYING |
707           G_PARAM_STATIC_STRINGS));
708   g_object_class_install_property (gobject_class, PROP_MAX_SIZE_TIME,
709       g_param_spec_uint64 ("max-size-time", "Max. size (ns)",
710           "Max. amount of data in the queue (in ns, 0=disable)", 0, G_MAXUINT64,
711           DEFAULT_MAX_SIZE_TIME, G_PARAM_READWRITE | GST_PARAM_MUTABLE_PLAYING |
712           G_PARAM_STATIC_STRINGS));
713
714   g_object_class_install_property (gobject_class, PROP_EXTRA_SIZE_BYTES,
715       g_param_spec_uint ("extra-size-bytes", "Extra Size (kB)",
716           "Amount of data the queues can grow if one of them is empty (bytes, 0=disable)"
717           " (NOT IMPLEMENTED)",
718           0, G_MAXUINT, DEFAULT_EXTRA_SIZE_BYTES,
719           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
720   g_object_class_install_property (gobject_class, PROP_EXTRA_SIZE_BUFFERS,
721       g_param_spec_uint ("extra-size-buffers", "Extra Size (buffers)",
722           "Amount of buffers the queues can grow if one of them is empty (0=disable)"
723           " (NOT IMPLEMENTED)",
724           0, G_MAXUINT, DEFAULT_EXTRA_SIZE_BUFFERS,
725           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
726   g_object_class_install_property (gobject_class, PROP_EXTRA_SIZE_TIME,
727       g_param_spec_uint64 ("extra-size-time", "Extra Size (ns)",
728           "Amount of time the queues can grow if one of them is empty (in ns, 0=disable)"
729           " (NOT IMPLEMENTED)",
730           0, G_MAXUINT64, DEFAULT_EXTRA_SIZE_TIME,
731           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
732
733   /**
734    * GstMultiQueue:use-buffering:
735    *
736    * Enable the buffering option in multiqueue so that BUFFERING messages are
737    * emitted based on low-/high-percent thresholds.
738    */
739   g_object_class_install_property (gobject_class, PROP_USE_BUFFERING,
740       g_param_spec_boolean ("use-buffering", "Use buffering",
741           "Emit GST_MESSAGE_BUFFERING based on low-/high-percent thresholds "
742           "(0% = low-watermark, 100% = high-watermark)",
743           DEFAULT_USE_BUFFERING, G_PARAM_READWRITE | GST_PARAM_MUTABLE_PLAYING |
744           G_PARAM_STATIC_STRINGS));
745   /**
746    * GstMultiQueue:low-percent:
747    *
748    * Low threshold percent for buffering to start.
749    */
750   g_object_class_install_property (gobject_class, PROP_LOW_PERCENT,
751       g_param_spec_int ("low-percent", "Low percent",
752           "Low threshold for buffering to start. Only used if use-buffering is True "
753           "(Deprecated: use low-watermark instead)",
754           0, 100, DEFAULT_LOW_WATERMARK * 100,
755           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
756   /**
757    * GstMultiQueue:high-percent:
758    *
759    * High threshold percent for buffering to finish.
760    */
761   g_object_class_install_property (gobject_class, PROP_HIGH_PERCENT,
762       g_param_spec_int ("high-percent", "High percent",
763           "High threshold for buffering to finish. Only used if use-buffering is True "
764           "(Deprecated: use high-watermark instead)",
765           0, 100, DEFAULT_HIGH_WATERMARK * 100,
766           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
767   /**
768    * GstMultiQueue:low-watermark:
769    *
770    * Low threshold watermark for buffering to start.
771    *
772    * Since: 1.10
773    */
774   g_object_class_install_property (gobject_class, PROP_LOW_WATERMARK,
775       g_param_spec_double ("low-watermark", "Low watermark",
776           "Low threshold for buffering to start. Only used if use-buffering is True",
777           0.0, 1.0, DEFAULT_LOW_WATERMARK,
778           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
779   /**
780    * GstMultiQueue:high-watermark:
781    *
782    * High threshold watermark for buffering to finish.
783    *
784    * Since: 1.10
785    */
786   g_object_class_install_property (gobject_class, PROP_HIGH_WATERMARK,
787       g_param_spec_double ("high-watermark", "High watermark",
788           "High threshold for buffering to finish. Only used if use-buffering is True",
789           0.0, 1.0, DEFAULT_HIGH_WATERMARK,
790           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
791
792   /**
793    * GstMultiQueue:sync-by-running-time:
794    *
795    * If enabled multiqueue will synchronize deactivated or not-linked streams
796    * to the activated and linked streams by taking the running time.
797    * Otherwise multiqueue will synchronize the deactivated or not-linked
798    * streams by keeping the order in which buffers and events arrived compared
799    * to active and linked streams.
800    */
801   g_object_class_install_property (gobject_class, PROP_SYNC_BY_RUNNING_TIME,
802       g_param_spec_boolean ("sync-by-running-time", "Sync By Running Time",
803           "Synchronize deactivated or not-linked streams by running time",
804           DEFAULT_SYNC_BY_RUNNING_TIME,
805           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
806
807   g_object_class_install_property (gobject_class, PROP_USE_INTERLEAVE,
808       g_param_spec_boolean ("use-interleave", "Use interleave",
809           "Adjust time limits based on input interleave",
810           DEFAULT_USE_INTERLEAVE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
811
812   g_object_class_install_property (gobject_class, PROP_UNLINKED_CACHE_TIME,
813       g_param_spec_uint64 ("unlinked-cache-time", "Unlinked cache time (ns)",
814           "Extra buffering in time for unlinked streams (if 'sync-by-running-time')",
815           0, G_MAXUINT64, DEFAULT_UNLINKED_CACHE_TIME,
816           G_PARAM_READWRITE | GST_PARAM_MUTABLE_PLAYING |
817           G_PARAM_STATIC_STRINGS));
818
819   g_object_class_install_property (gobject_class, PROP_MINIMUM_INTERLEAVE,
820       g_param_spec_uint64 ("min-interleave-time", "Minimum interleave time",
821           "Minimum extra buffering for deinterleaving (size of the queues) when use-interleave=true",
822           0, G_MAXUINT64, DEFAULT_MINIMUM_INTERLEAVE,
823           G_PARAM_READWRITE | GST_PARAM_MUTABLE_PLAYING |
824           G_PARAM_STATIC_STRINGS));
825
826   /**
827    * GstMultiQueue:stats:
828    *
829    * Various #GstMultiQueue statistics. This property returns a #GstStructure
830    * with name "application/x-gst-multi-queue-stats" with the following fields:
831    *
832    * - "queues" GST_TYPE_ARRAY    Contains one GstStructure named "queue_%d"
833    *   (where \%d is the queue's ID) per internal queue:
834    *   - "buffers" G_TYPE_UINT    The queue's current level of buffers
835    *   - "bytes" G_TYPE_UINT    The queue's current level of bytes
836    *   - "time" G_TYPE_UINT64    The queue's current level of time
837    *
838    * Since: 1.18
839    */
840   g_object_class_install_property (gobject_class, PROP_STATS,
841       g_param_spec_boxed ("stats", "Stats",
842           "Multiqueue Statistics",
843           GST_TYPE_STRUCTURE, G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
844
845   gobject_class->finalize = gst_multi_queue_finalize;
846
847   gst_element_class_set_static_metadata (gstelement_class,
848       "MultiQueue",
849       "Generic", "Multiple data queue", "Edward Hervey <edward@fluendo.com>");
850   gst_element_class_add_static_pad_template_with_gtype (gstelement_class,
851       &sinktemplate, GST_TYPE_MULTIQUEUE_PAD);
852   gst_element_class_add_static_pad_template_with_gtype (gstelement_class,
853       &srctemplate, GST_TYPE_MULTIQUEUE_PAD);
854
855   gstelement_class->request_new_pad =
856       GST_DEBUG_FUNCPTR (gst_multi_queue_request_new_pad);
857   gstelement_class->release_pad =
858       GST_DEBUG_FUNCPTR (gst_multi_queue_release_pad);
859   gstelement_class->change_state =
860       GST_DEBUG_FUNCPTR (gst_multi_queue_change_state);
861
862   gst_type_mark_as_plugin_api (GST_TYPE_MULTIQUEUE_PAD, 0);
863 }
864
865 static void
866 gst_multi_queue_init (GstMultiQueue * mqueue)
867 {
868   mqueue->nbqueues = 0;
869   mqueue->queues = NULL;
870
871   mqueue->max_size.bytes = DEFAULT_MAX_SIZE_BYTES;
872   mqueue->max_size.visible = DEFAULT_MAX_SIZE_BUFFERS;
873   mqueue->max_size.time = DEFAULT_MAX_SIZE_TIME;
874
875   mqueue->extra_size.bytes = DEFAULT_EXTRA_SIZE_BYTES;
876   mqueue->extra_size.visible = DEFAULT_EXTRA_SIZE_BUFFERS;
877   mqueue->extra_size.time = DEFAULT_EXTRA_SIZE_TIME;
878
879   mqueue->use_buffering = DEFAULT_USE_BUFFERING;
880   mqueue->low_watermark = DEFAULT_LOW_WATERMARK * MAX_BUFFERING_LEVEL;
881   mqueue->high_watermark = DEFAULT_HIGH_WATERMARK * MAX_BUFFERING_LEVEL;
882
883   mqueue->sync_by_running_time = DEFAULT_SYNC_BY_RUNNING_TIME;
884   mqueue->use_interleave = DEFAULT_USE_INTERLEAVE;
885   mqueue->min_interleave_time = DEFAULT_MINIMUM_INTERLEAVE;
886   mqueue->unlinked_cache_time = DEFAULT_UNLINKED_CACHE_TIME;
887
888   mqueue->counter = 1;
889   mqueue->highid = -1;
890   mqueue->high_time = GST_CLOCK_STIME_NONE;
891
892   g_mutex_init (&mqueue->qlock);
893   g_mutex_init (&mqueue->reconf_lock);
894   g_mutex_init (&mqueue->buffering_post_lock);
895 }
896
897 static void
898 gst_multi_queue_finalize (GObject * object)
899 {
900   GstMultiQueue *mqueue = GST_MULTI_QUEUE (object);
901
902   g_list_free_full (mqueue->queues, (GDestroyNotify) gst_single_queue_unref);
903   mqueue->queues = NULL;
904   mqueue->queues_cookie++;
905
906   /* free/unref instance data */
907   g_mutex_clear (&mqueue->qlock);
908   g_mutex_clear (&mqueue->reconf_lock);
909   g_mutex_clear (&mqueue->buffering_post_lock);
910
911   G_OBJECT_CLASS (parent_class)->finalize (object);
912 }
913
914 #define SET_CHILD_PROPERTY(mq,format) G_STMT_START {            \
915     GList * tmp = mq->queues;                                   \
916     while (tmp) {                                               \
917       GstSingleQueue *q = (GstSingleQueue*)tmp->data;           \
918       q->max_size.format = mq->max_size.format;                 \
919       update_buffering (mq, q);                                 \
920       gst_data_queue_limits_changed (q->queue);                 \
921       tmp = g_list_next(tmp);                                   \
922     };                                                          \
923 } G_STMT_END
924
925 static void
926 gst_multi_queue_set_property (GObject * object, guint prop_id,
927     const GValue * value, GParamSpec * pspec)
928 {
929   GstMultiQueue *mq = GST_MULTI_QUEUE (object);
930
931   switch (prop_id) {
932     case PROP_MAX_SIZE_BYTES:
933       GST_MULTI_QUEUE_MUTEX_LOCK (mq);
934       mq->max_size.bytes = g_value_get_uint (value);
935       SET_CHILD_PROPERTY (mq, bytes);
936       GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
937       gst_multi_queue_post_buffering (mq);
938       break;
939     case PROP_MAX_SIZE_BUFFERS:
940     {
941       GList *tmp;
942       gint new_size = g_value_get_uint (value);
943
944       GST_MULTI_QUEUE_MUTEX_LOCK (mq);
945
946       mq->max_size.visible = new_size;
947
948       tmp = mq->queues;
949       while (tmp) {
950         GstDataQueueSize size;
951         GstSingleQueue *q = (GstSingleQueue *) tmp->data;
952         gst_data_queue_get_level (q->queue, &size);
953
954         GST_DEBUG_ID (q->debug_id, "Requested buffers size: %d,"
955             " current: %d, current max %d", new_size, size.visible,
956             q->max_size.visible);
957
958         /* do not reduce max size below current level if the single queue
959          * has grown because of empty queue */
960         if (new_size == 0) {
961           q->max_size.visible = new_size;
962         } else if (q->max_size.visible == 0) {
963           q->max_size.visible = MAX (new_size, size.visible);
964         } else if (new_size > size.visible) {
965           q->max_size.visible = new_size;
966         }
967         update_buffering (mq, q);
968         gst_data_queue_limits_changed (q->queue);
969         tmp = g_list_next (tmp);
970       }
971
972       GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
973       gst_multi_queue_post_buffering (mq);
974
975       break;
976     }
977     case PROP_MAX_SIZE_TIME:
978       GST_MULTI_QUEUE_MUTEX_LOCK (mq);
979       mq->max_size.time = g_value_get_uint64 (value);
980       SET_CHILD_PROPERTY (mq, time);
981       GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
982       gst_multi_queue_post_buffering (mq);
983       break;
984     case PROP_EXTRA_SIZE_BYTES:
985       mq->extra_size.bytes = g_value_get_uint (value);
986       break;
987     case PROP_EXTRA_SIZE_BUFFERS:
988       mq->extra_size.visible = g_value_get_uint (value);
989       break;
990     case PROP_EXTRA_SIZE_TIME:
991       mq->extra_size.time = g_value_get_uint64 (value);
992       break;
993     case PROP_USE_BUFFERING:
994       mq->use_buffering = g_value_get_boolean (value);
995       recheck_buffering_status (mq);
996       break;
997     case PROP_LOW_PERCENT:
998       mq->low_watermark = g_value_get_int (value) * BUF_LEVEL_PERCENT_FACTOR;
999       /* Recheck buffering status - the new low_watermark value might
1000        * be above the current fill level. If the old low_watermark one
1001        * was below the current level, this means that mq->buffering is
1002        * disabled and needs to be re-enabled. */
1003       recheck_buffering_status (mq);
1004       break;
1005     case PROP_HIGH_PERCENT:
1006       mq->high_watermark = g_value_get_int (value) * BUF_LEVEL_PERCENT_FACTOR;
1007       recheck_buffering_status (mq);
1008       break;
1009     case PROP_LOW_WATERMARK:
1010       mq->low_watermark = g_value_get_double (value) * MAX_BUFFERING_LEVEL;
1011       recheck_buffering_status (mq);
1012       break;
1013     case PROP_HIGH_WATERMARK:
1014       mq->high_watermark = g_value_get_double (value) * MAX_BUFFERING_LEVEL;
1015       recheck_buffering_status (mq);
1016       break;
1017     case PROP_SYNC_BY_RUNNING_TIME:
1018       mq->sync_by_running_time = g_value_get_boolean (value);
1019       break;
1020     case PROP_USE_INTERLEAVE:
1021       mq->use_interleave = g_value_get_boolean (value);
1022       break;
1023     case PROP_UNLINKED_CACHE_TIME:
1024       GST_MULTI_QUEUE_MUTEX_LOCK (mq);
1025       mq->unlinked_cache_time = g_value_get_uint64 (value);
1026       GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
1027       gst_multi_queue_post_buffering (mq);
1028       break;
1029     case PROP_MINIMUM_INTERLEAVE:
1030       GST_MULTI_QUEUE_MUTEX_LOCK (mq);
1031       mq->min_interleave_time = g_value_get_uint64 (value);
1032       if (mq->use_interleave)
1033         calculate_interleave (mq, NULL);
1034       GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
1035       break;
1036     default:
1037       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
1038       break;
1039   }
1040 }
1041
1042 /* Called with mutex held */
1043 static GstStructure *
1044 gst_multi_queue_get_stats (GstMultiQueue * mq)
1045 {
1046   GstStructure *ret =
1047       gst_structure_new_empty ("application/x-gst-multi-queue-stats");
1048   GList *tmp;
1049   GstSingleQueue *sq;
1050
1051   if (mq->queues != NULL) {
1052     GValue queues = G_VALUE_INIT;
1053     GValue v = G_VALUE_INIT;
1054
1055     g_value_init (&queues, GST_TYPE_ARRAY);
1056
1057     for (tmp = mq->queues; tmp; tmp = g_list_next (tmp)) {
1058       GstDataQueueSize level;
1059       GstStructure *s;
1060       gchar *id;
1061       g_value_init (&v, GST_TYPE_STRUCTURE);
1062
1063       sq = (GstSingleQueue *) tmp->data;
1064       gst_data_queue_get_level (sq->queue, &level);
1065       id = g_strdup_printf ("queue_%d", sq->id);
1066       s = gst_structure_new (id,
1067           "buffers", G_TYPE_UINT, level.visible,
1068           "bytes", G_TYPE_UINT, level.bytes,
1069           "time", G_TYPE_UINT64, sq->cur_time, NULL);
1070       g_value_take_boxed (&v, s);
1071       gst_value_array_append_and_take_value (&queues, &v);
1072       g_free (id);
1073     }
1074     gst_structure_take_value (ret, "queues", &queues);
1075   }
1076
1077   return ret;
1078 }
1079
1080 static void
1081 gst_multi_queue_get_property (GObject * object, guint prop_id,
1082     GValue * value, GParamSpec * pspec)
1083 {
1084   GstMultiQueue *mq = GST_MULTI_QUEUE (object);
1085
1086   GST_MULTI_QUEUE_MUTEX_LOCK (mq);
1087
1088   switch (prop_id) {
1089     case PROP_EXTRA_SIZE_BYTES:
1090       g_value_set_uint (value, mq->extra_size.bytes);
1091       break;
1092     case PROP_EXTRA_SIZE_BUFFERS:
1093       g_value_set_uint (value, mq->extra_size.visible);
1094       break;
1095     case PROP_EXTRA_SIZE_TIME:
1096       g_value_set_uint64 (value, mq->extra_size.time);
1097       break;
1098     case PROP_MAX_SIZE_BYTES:
1099       g_value_set_uint (value, mq->max_size.bytes);
1100       break;
1101     case PROP_MAX_SIZE_BUFFERS:
1102       g_value_set_uint (value, mq->max_size.visible);
1103       break;
1104     case PROP_MAX_SIZE_TIME:
1105       g_value_set_uint64 (value, mq->max_size.time);
1106       break;
1107     case PROP_USE_BUFFERING:
1108       g_value_set_boolean (value, mq->use_buffering);
1109       break;
1110     case PROP_LOW_PERCENT:
1111       g_value_set_int (value, mq->low_watermark / BUF_LEVEL_PERCENT_FACTOR);
1112       break;
1113     case PROP_HIGH_PERCENT:
1114       g_value_set_int (value, mq->high_watermark / BUF_LEVEL_PERCENT_FACTOR);
1115       break;
1116     case PROP_LOW_WATERMARK:
1117       g_value_set_double (value, mq->low_watermark /
1118           (gdouble) MAX_BUFFERING_LEVEL);
1119       break;
1120     case PROP_HIGH_WATERMARK:
1121       g_value_set_double (value, mq->high_watermark /
1122           (gdouble) MAX_BUFFERING_LEVEL);
1123       break;
1124     case PROP_SYNC_BY_RUNNING_TIME:
1125       g_value_set_boolean (value, mq->sync_by_running_time);
1126       break;
1127     case PROP_USE_INTERLEAVE:
1128       g_value_set_boolean (value, mq->use_interleave);
1129       break;
1130     case PROP_UNLINKED_CACHE_TIME:
1131       g_value_set_uint64 (value, mq->unlinked_cache_time);
1132       break;
1133     case PROP_MINIMUM_INTERLEAVE:
1134       g_value_set_uint64 (value, mq->min_interleave_time);
1135       break;
1136     case PROP_STATS:
1137       g_value_take_boxed (value, gst_multi_queue_get_stats (mq));
1138       break;
1139     default:
1140       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
1141       break;
1142   }
1143
1144   GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
1145 }
1146
1147 static GstIterator *
1148 gst_multi_queue_iterate_internal_links (GstPad * pad, GstObject * parent)
1149 {
1150   GstIterator *it = NULL;
1151   GstPad *opad, *sinkpad, *srcpad;
1152   GstSingleQueue *squeue;
1153   GstMultiQueue *mq = GST_MULTI_QUEUE (parent);
1154   GValue val = { 0, };
1155
1156   GST_MULTI_QUEUE_MUTEX_LOCK (mq);
1157   squeue = GST_MULTIQUEUE_PAD (pad)->sq;
1158   if (!squeue)
1159     goto out;
1160
1161   srcpad = g_weak_ref_get (&squeue->srcpad);
1162   sinkpad = g_weak_ref_get (&squeue->sinkpad);
1163   if (sinkpad == pad && srcpad) {
1164     opad = srcpad;
1165     gst_clear_object (&sinkpad);
1166
1167   } else if (srcpad == pad && sinkpad) {
1168     opad = sinkpad;
1169     gst_clear_object (&srcpad);
1170
1171   } else {
1172     gst_clear_object (&srcpad);
1173     gst_clear_object (&sinkpad);
1174     goto out;
1175   }
1176
1177   g_value_init (&val, GST_TYPE_PAD);
1178   g_value_set_object (&val, opad);
1179   it = gst_iterator_new_single (GST_TYPE_PAD, &val);
1180   g_value_unset (&val);
1181
1182   gst_object_unref (opad);
1183
1184 out:
1185   GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
1186
1187   return it;
1188 }
1189
1190
1191 /*
1192  * GstElement methods
1193  */
1194
1195 static GstPad *
1196 gst_multi_queue_request_new_pad (GstElement * element, GstPadTemplate * temp,
1197     const gchar * name, const GstCaps * caps)
1198 {
1199   GstMultiQueue *mqueue = GST_MULTI_QUEUE (element);
1200   GstSingleQueue *squeue;
1201   GstPad *new_pad;
1202   guint temp_id = -1;
1203
1204   if (name) {
1205     sscanf (name + 4, "_%u", &temp_id);
1206     GST_LOG_OBJECT (element, "name : %s (id %d)", GST_STR_NULL (name), temp_id);
1207   }
1208
1209   g_mutex_lock (&mqueue->reconf_lock);
1210   /* Create a new single queue, add the sink and source pad and return the sink pad */
1211   squeue = gst_single_queue_new (mqueue, temp_id);
1212   g_mutex_unlock (&mqueue->reconf_lock);
1213
1214   new_pad = squeue ? g_weak_ref_get (&squeue->sinkpad) : NULL;
1215   /* request pad assumes the element is owning the ref of the pad it returns */
1216   if (new_pad)
1217     gst_object_unref (new_pad);
1218
1219   GST_DEBUG_OBJECT (mqueue, "Returning pad %" GST_PTR_FORMAT, new_pad);
1220
1221   return new_pad;
1222 }
1223
1224 static void
1225 gst_multi_queue_release_pad (GstElement * element, GstPad * pad)
1226 {
1227   GstPad *sinkpad = NULL, *srcpad = NULL;
1228   GstMultiQueue *mqueue = GST_MULTI_QUEUE (element);
1229   GstSingleQueue *sq = NULL;
1230   GList *tmp;
1231
1232   GST_LOG_OBJECT (element, "pad %s:%s", GST_DEBUG_PAD_NAME (pad));
1233
1234   /* Take the reconfiguration lock before the qlock to avoid deadlocks
1235    * from two release_pad running in parallel on different mqueue slots.
1236    * We need reconf_lock for removing the singlequeue from the list, to
1237    * prevent overlapping release/request from causing problems */
1238   g_mutex_lock (&mqueue->reconf_lock);
1239
1240   GST_MULTI_QUEUE_MUTEX_LOCK (mqueue);
1241   /* Find which single queue it belongs to, knowing that it should be a sinkpad */
1242   for (tmp = mqueue->queues; tmp; tmp = g_list_next (tmp)) {
1243     sq = (GstSingleQueue *) tmp->data;
1244     sinkpad = g_weak_ref_get (&sq->sinkpad);
1245
1246     if (sinkpad == pad) {
1247       srcpad = g_weak_ref_get (&sq->srcpad);
1248       break;
1249     }
1250
1251     gst_object_unref (sinkpad);
1252   }
1253
1254   if (!tmp) {
1255     gst_clear_object (&sinkpad);
1256     gst_clear_object (&srcpad);
1257     GST_WARNING_OBJECT (mqueue, "That pad doesn't belong to this element ???");
1258     GST_MULTI_QUEUE_MUTEX_UNLOCK (mqueue);
1259     g_mutex_unlock (&mqueue->reconf_lock);
1260     return;
1261   }
1262
1263   /* FIXME: The removal of the singlequeue should probably not happen until it
1264    * finishes draining */
1265
1266   /* remove it from the list */
1267   mqueue->queues = g_list_delete_link (mqueue->queues, tmp);
1268   mqueue->queues_cookie++;
1269
1270   /* FIXME : recompute next-non-linked */
1271   GST_MULTI_QUEUE_MUTEX_UNLOCK (mqueue);
1272
1273   /* delete SingleQueue */
1274   gst_data_queue_set_flushing (sq->queue, TRUE);
1275
1276   gst_pad_set_active (srcpad, FALSE);
1277   gst_pad_set_active (sinkpad, FALSE);
1278   gst_element_remove_pad (element, srcpad);
1279   gst_element_remove_pad (element, sinkpad);
1280   gst_object_unref (srcpad);
1281   gst_object_unref (sinkpad);
1282
1283   g_mutex_unlock (&mqueue->reconf_lock);
1284 }
1285
1286 static GstStateChangeReturn
1287 gst_multi_queue_change_state (GstElement * element, GstStateChange transition)
1288 {
1289   GstMultiQueue *mqueue = GST_MULTI_QUEUE (element);
1290   GstSingleQueue *sq = NULL;
1291   GstStateChangeReturn result;
1292
1293   switch (transition) {
1294     case GST_STATE_CHANGE_READY_TO_PAUSED:{
1295       GList *tmp;
1296
1297       /* Set all pads to non-flushing */
1298       GST_MULTI_QUEUE_MUTEX_LOCK (mqueue);
1299       for (tmp = mqueue->queues; tmp; tmp = g_list_next (tmp)) {
1300         sq = (GstSingleQueue *) tmp->data;
1301         sq->flushing = FALSE;
1302         sq->sink_stream_gid = sq->src_stream_gid = GST_GROUP_ID_INVALID;
1303       }
1304
1305       /* the visible limit might not have been set on single queues that have grown because of other queueus were empty */
1306       SET_CHILD_PROPERTY (mqueue, visible);
1307
1308       GST_MULTI_QUEUE_MUTEX_UNLOCK (mqueue);
1309       gst_multi_queue_post_buffering (mqueue);
1310
1311       break;
1312     }
1313     case GST_STATE_CHANGE_PAUSED_TO_READY:{
1314       GList *tmp;
1315
1316       /* Un-wait all waiting pads */
1317       GST_MULTI_QUEUE_MUTEX_LOCK (mqueue);
1318       for (tmp = mqueue->queues; tmp; tmp = g_list_next (tmp)) {
1319         sq = (GstSingleQueue *) tmp->data;
1320         sq->flushing = TRUE;
1321         g_cond_signal (&sq->turn);
1322
1323         sq->last_query = FALSE;
1324         g_cond_signal (&sq->query_handled);
1325       }
1326       mqueue->interleave_incomplete = FALSE;
1327       GST_MULTI_QUEUE_MUTEX_UNLOCK (mqueue);
1328       break;
1329     }
1330     default:
1331       break;
1332   }
1333
1334   result = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
1335
1336   switch (transition) {
1337     default:
1338       break;
1339   }
1340
1341   return result;
1342 }
1343
1344 static gboolean
1345 gst_single_queue_start (GstMultiQueue * mq, GstSingleQueue * sq)
1346 {
1347   gboolean res = FALSE;
1348   GstPad *srcpad = g_weak_ref_get (&sq->srcpad);
1349
1350   GST_LOG_ID (sq->debug_id, "starting task");
1351
1352   if (srcpad) {
1353     res = gst_pad_start_task (srcpad,
1354         (GstTaskFunction) gst_multi_queue_loop, srcpad, NULL);
1355     gst_object_unref (srcpad);
1356   }
1357
1358   return res;
1359 }
1360
1361 static gboolean
1362 gst_single_queue_pause (GstMultiQueue * mq, GstSingleQueue * sq)
1363 {
1364   gboolean result = FALSE;
1365   GstPad *srcpad = g_weak_ref_get (&sq->srcpad);
1366
1367   GST_LOG_ID (sq->debug_id, "pausing task");
1368   if (srcpad) {
1369     result = gst_pad_pause_task (srcpad);
1370     gst_object_unref (srcpad);
1371   }
1372
1373   sq->sink_tainted = sq->src_tainted = TRUE;
1374
1375   return result;
1376 }
1377
1378 static gboolean
1379 gst_single_queue_stop (GstMultiQueue * mq, GstSingleQueue * sq)
1380 {
1381   gboolean result = FALSE;
1382   GstPad *srcpad = g_weak_ref_get (&sq->srcpad);
1383
1384   GST_LOG_ID (sq->debug_id, "stopping task");
1385   if (srcpad) {
1386     result = gst_pad_stop_task (srcpad);
1387     gst_object_unref (srcpad);
1388   }
1389   sq->sink_tainted = sq->src_tainted = TRUE;
1390
1391   return result;
1392 }
1393
1394 static void
1395 gst_single_queue_flush (GstMultiQueue * mq, GstSingleQueue * sq, gboolean flush,
1396     gboolean full)
1397 {
1398   GST_DEBUG_ID (sq->debug_id, "flush %s", (flush ? "start" : "stop"));
1399
1400   if (flush) {
1401     GST_MULTI_QUEUE_MUTEX_LOCK (mq);
1402     sq->srcresult = GST_FLOW_FLUSHING;
1403     gst_data_queue_set_flushing (sq->queue, TRUE);
1404
1405     sq->flushing = TRUE;
1406
1407     /* wake up non-linked task */
1408     GST_LOG_ID (sq->debug_id, "Waking up eventually waiting task");
1409     g_cond_signal (&sq->turn);
1410     sq->last_query = FALSE;
1411     g_cond_signal (&sq->query_handled);
1412     GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
1413   } else {
1414     gst_single_queue_flush_queue (sq, full);
1415
1416     GST_MULTI_QUEUE_MUTEX_LOCK (mq);
1417     gst_segment_init (&sq->sink_segment, GST_FORMAT_TIME);
1418     gst_segment_init (&sq->src_segment, GST_FORMAT_TIME);
1419     sq->has_src_segment = FALSE;
1420     /* All pads start off OK for a smooth kick-off */
1421     sq->srcresult = GST_FLOW_OK;
1422     sq->pushed = FALSE;
1423     sq->cur_time = 0;
1424     sq->max_size.visible = mq->max_size.visible;
1425     sq->is_eos = FALSE;
1426     sq->is_segment_done = FALSE;
1427     sq->nextid = 0;
1428     sq->oldid = 0;
1429     sq->last_oldid = G_MAXUINT32;
1430     sq->next_time = GST_CLOCK_STIME_NONE;
1431     sq->last_time = GST_CLOCK_STIME_NONE;
1432     sq->cached_sinktime = GST_CLOCK_STIME_NONE;
1433     sq->group_high_time = GST_CLOCK_STIME_NONE;
1434     gst_data_queue_set_flushing (sq->queue, FALSE);
1435
1436     /* We will become active again on the next buffer/gap */
1437     sq->active = FALSE;
1438
1439     /* Reset high time to be recomputed next */
1440     mq->high_time = GST_CLOCK_STIME_NONE;
1441
1442     sq->flushing = FALSE;
1443     GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
1444   }
1445 }
1446
1447 /* WITH LOCK TAKEN */
1448 static gint
1449 get_buffering_level (GstMultiQueue * mq, GstSingleQueue * sq)
1450 {
1451   GstDataQueueSize size;
1452   gint buffering_level, tmp;
1453
1454   gst_data_queue_get_level (sq->queue, &size);
1455
1456   GST_DEBUG_ID (sq->debug_id,
1457       "visible %u/%u, bytes %u/%u, time %" G_GUINT64_FORMAT "/%"
1458       G_GUINT64_FORMAT, size.visible, sq->max_size.visible,
1459       size.bytes, sq->max_size.bytes, sq->cur_time, sq->max_size.time);
1460
1461   /* get bytes and time buffer levels and take the max */
1462   if (sq->is_eos || sq->is_segment_done || sq->srcresult == GST_FLOW_NOT_LINKED
1463       || sq->is_sparse) {
1464     buffering_level = MAX_BUFFERING_LEVEL;
1465   } else {
1466     buffering_level = 0;
1467     if (sq->max_size.time > 0) {
1468       tmp =
1469           gst_util_uint64_scale (sq->cur_time,
1470           MAX_BUFFERING_LEVEL, sq->max_size.time);
1471       buffering_level = MAX (buffering_level, tmp);
1472     }
1473     if (sq->max_size.bytes > 0) {
1474       tmp =
1475           gst_util_uint64_scale_int (size.bytes,
1476           MAX_BUFFERING_LEVEL, sq->max_size.bytes);
1477       buffering_level = MAX (buffering_level, tmp);
1478     }
1479   }
1480
1481   return buffering_level;
1482 }
1483
1484 /* WITH LOCK TAKEN */
1485 static void
1486 update_buffering (GstMultiQueue * mq, GstSingleQueue * sq)
1487 {
1488   gint buffering_level, percent;
1489
1490   /* nothing to dowhen we are not in buffering mode */
1491   if (!mq->use_buffering)
1492     return;
1493
1494   buffering_level = get_buffering_level (mq, sq);
1495
1496   /* scale so that if buffering_level equals the high watermark,
1497    * the percentage is 100% */
1498   percent = gst_util_uint64_scale (buffering_level, 100, mq->high_watermark);
1499   /* clip */
1500   if (percent > 100)
1501     percent = 100;
1502
1503   if (mq->buffering) {
1504     if (buffering_level >= mq->high_watermark) {
1505       mq->buffering = FALSE;
1506     }
1507     /* make sure it increases */
1508     percent = MAX (mq->buffering_percent, percent);
1509
1510     SET_PERCENT (mq, percent);
1511   } else {
1512     GList *iter;
1513     gboolean is_buffering = TRUE;
1514
1515     for (iter = mq->queues; iter; iter = g_list_next (iter)) {
1516       GstSingleQueue *oq = (GstSingleQueue *) iter->data;
1517
1518       if (get_buffering_level (mq, oq) >= mq->high_watermark) {
1519         is_buffering = FALSE;
1520
1521         break;
1522       }
1523     }
1524
1525     if (is_buffering && buffering_level < mq->low_watermark) {
1526       mq->buffering = TRUE;
1527       SET_PERCENT (mq, percent);
1528     }
1529   }
1530 }
1531
1532 static void
1533 gst_multi_queue_post_buffering (GstMultiQueue * mq)
1534 {
1535   GstMessage *msg = NULL;
1536
1537   g_mutex_lock (&mq->buffering_post_lock);
1538   GST_MULTI_QUEUE_MUTEX_LOCK (mq);
1539   if (mq->buffering_percent_changed) {
1540     gint percent = mq->buffering_percent;
1541
1542     mq->buffering_percent_changed = FALSE;
1543
1544     GST_DEBUG_OBJECT (mq, "Going to post buffering: %d%%", percent);
1545     msg = gst_message_new_buffering (GST_OBJECT_CAST (mq), percent);
1546   }
1547   GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
1548
1549   if (msg != NULL)
1550     gst_element_post_message (GST_ELEMENT_CAST (mq), msg);
1551
1552   g_mutex_unlock (&mq->buffering_post_lock);
1553 }
1554
1555 static void
1556 recheck_buffering_status (GstMultiQueue * mq)
1557 {
1558   if (!mq->use_buffering && mq->buffering) {
1559     GST_MULTI_QUEUE_MUTEX_LOCK (mq);
1560     mq->buffering = FALSE;
1561     GST_DEBUG_OBJECT (mq,
1562         "Buffering property disabled, but queue was still buffering; "
1563         "setting buffering percentage to 100%%");
1564     SET_PERCENT (mq, 100);
1565     GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
1566   }
1567
1568   if (mq->use_buffering) {
1569     GList *tmp;
1570     gint old_perc;
1571
1572     GST_MULTI_QUEUE_MUTEX_LOCK (mq);
1573
1574     /* force buffering percentage to be recalculated */
1575     old_perc = mq->buffering_percent;
1576     mq->buffering_percent = 0;
1577
1578     tmp = mq->queues;
1579     while (tmp) {
1580       GstSingleQueue *q = (GstSingleQueue *) tmp->data;
1581       update_buffering (mq, q);
1582       gst_data_queue_limits_changed (q->queue);
1583       tmp = g_list_next (tmp);
1584     }
1585
1586     GST_DEBUG_OBJECT (mq,
1587         "Recalculated buffering percentage: old: %d%% new: %d%%",
1588         old_perc, mq->buffering_percent);
1589
1590     GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
1591   }
1592
1593   gst_multi_queue_post_buffering (mq);
1594 }
1595
1596 static void
1597 calculate_interleave (GstMultiQueue * mq, GstSingleQueue * sq)
1598 {
1599   GstClockTimeDiff low, high;
1600   GstClockTime interleave, other_interleave = 0;
1601   gboolean some_inactive = FALSE;
1602   GList *tmp;
1603
1604   low = high = GST_CLOCK_STIME_NONE;
1605   interleave = mq->interleave;
1606   /* Go over all single queues and calculate lowest/highest value */
1607   for (tmp = mq->queues; tmp; tmp = tmp->next) {
1608     GstSingleQueue *oq = (GstSingleQueue *) tmp->data;
1609     /* Ignore sparse streams for interleave calculation */
1610     if (oq->is_sparse)
1611       continue;
1612
1613     /* If some streams aren't active yet (haven't received any buffers), we will
1614      * grow interleave accordingly */
1615     if (!oq->active) {
1616       some_inactive = TRUE;
1617       continue;
1618     }
1619
1620     /* Calculate within each streaming thread */
1621     if (sq && sq->thread != oq->thread) {
1622       if (oq->interleave > other_interleave)
1623         other_interleave = oq->interleave;
1624       continue;
1625     }
1626
1627     /* If the stream isn't EOS, update the low/high input value */
1628     if (GST_CLOCK_STIME_IS_VALID (oq->cached_sinktime) && !oq->is_eos) {
1629       if (low == GST_CLOCK_STIME_NONE || oq->cached_sinktime < low)
1630         low = oq->cached_sinktime;
1631       if (high == GST_CLOCK_STIME_NONE || oq->cached_sinktime > high)
1632         high = oq->cached_sinktime;
1633
1634       /* If the input is before the segment start, consider as inactive to allow
1635        * the interleave to grow until *all* streams have data within the segment.
1636        *
1637        * The reason for this is that there is no requirements for data before
1638        * the segment start to be "aligned" and therefore interleave calculation
1639        * can't reliably be done. For example a demuxer could provide video data
1640        * from the previous keyframe but audio only from just before the segment
1641        * start */
1642       if (oq->cached_sinktime < 0)
1643         some_inactive = TRUE;
1644     }
1645     GST_LOG_ID (oq->debug_id,
1646         "sinktime:%" GST_STIME_FORMAT " low:%" GST_STIME_FORMAT
1647         " high:%" GST_STIME_FORMAT,
1648         GST_STIME_ARGS (oq->cached_sinktime), GST_STIME_ARGS (low),
1649         GST_STIME_ARGS (high));
1650   }
1651
1652   if (GST_CLOCK_STIME_IS_VALID (low) && GST_CLOCK_STIME_IS_VALID (high)) {
1653     gboolean do_update = high == low;
1654     interleave = high - low;
1655     /* Padding of interleave and minimum value */
1656     interleave = (150 * interleave / 100) + mq->min_interleave_time;
1657     if (sq)
1658       sq->interleave = interleave;
1659
1660     interleave = MAX (interleave, other_interleave);
1661
1662     /* Progressively grow up the interleave up to 5s if some streams were inactive */
1663     if (some_inactive && interleave <= mq->interleave) {
1664       interleave = MIN (5 * GST_SECOND, mq->interleave + 500 * GST_MSECOND);
1665       do_update = TRUE;
1666     }
1667
1668     /* We force the interleave update if:
1669      * * the interleave was previously set while some streams were not active
1670      *   yet but they now all are
1671      * * OR the interleave was previously based on all streams being active
1672      *   whereas some now aren't
1673      */
1674     if (mq->interleave_incomplete != some_inactive)
1675       do_update = TRUE;
1676
1677     mq->interleave_incomplete = some_inactive;
1678
1679     /* Update the stored interleave if:
1680      * * No data has arrived yet (high == low)
1681      * * Or it went higher
1682      * * Or it went lower and we've gone past the previous interleave needed */
1683     if (do_update || interleave > mq->interleave ||
1684         ((mq->last_interleave_update + (2 * MIN (GST_SECOND,
1685                         mq->interleave)) < low)
1686             && interleave < (mq->interleave * 3 / 4))) {
1687       /* Update the interleave */
1688       mq->interleave = interleave;
1689       mq->last_interleave_update = high;
1690       /* Update max-size time */
1691       mq->max_size.time = mq->interleave;
1692       SET_CHILD_PROPERTY (mq, time);
1693     }
1694   }
1695
1696   GST_DEBUG_OBJECT (mq,
1697       "low:%" GST_STIME_FORMAT " high:%" GST_STIME_FORMAT " interleave:%"
1698       GST_TIME_FORMAT " mq->interleave:%" GST_TIME_FORMAT
1699       " last_interleave_update:%" GST_STIME_FORMAT, GST_STIME_ARGS (low),
1700       GST_STIME_ARGS (high), GST_TIME_ARGS (interleave),
1701       GST_TIME_ARGS (mq->interleave),
1702       GST_STIME_ARGS (mq->last_interleave_update));
1703 }
1704
1705
1706 /* calculate the diff between running time on the sink and src of the queue.
1707  * This is the total amount of time in the queue.
1708  * WITH LOCK TAKEN */
1709 static void
1710 update_time_level (GstMultiQueue * mq, GstSingleQueue * sq)
1711 {
1712   GstClockTimeDiff sink_time, src_time;
1713
1714   if (sq->sink_tainted) {
1715     sink_time = sq->sinktime = my_segment_to_running_time (&sq->sink_segment,
1716         sq->sink_segment.position);
1717
1718     GST_DEBUG_ID (sq->debug_id,
1719         "sink_segment.position:%" GST_TIME_FORMAT ", sink_time:%"
1720         GST_STIME_FORMAT, GST_TIME_ARGS (sq->sink_segment.position),
1721         GST_STIME_ARGS (sink_time));
1722
1723     if (G_UNLIKELY (sq->last_time == GST_CLOCK_STIME_NONE)) {
1724       /* If the single queue still doesn't have a last_time set, this means
1725        * that nothing has been pushed out yet.
1726        * In order for the high_time computation to be as efficient as possible,
1727        * we set the last_time */
1728       sq->last_time = sink_time;
1729     }
1730     if (G_UNLIKELY (sink_time != GST_CLOCK_STIME_NONE)) {
1731       /* if we have a time, we become untainted and use the time */
1732       sq->sink_tainted = FALSE;
1733       if (mq->use_interleave) {
1734         sq->cached_sinktime = sink_time;
1735         calculate_interleave (mq, sq);
1736       }
1737     }
1738   } else
1739     sink_time = sq->sinktime;
1740
1741   if (sq->src_tainted) {
1742     GstSegment *segment;
1743     gint64 position;
1744
1745     if (sq->has_src_segment) {
1746       segment = &sq->src_segment;
1747       position = sq->src_segment.position;
1748     } else {
1749       /*
1750        * If the src pad had no segment yet, use the sink segment
1751        * to avoid signalling overrun if the received sink segment has a
1752        * a position > max-size-time while the src pad time would be the default=0
1753        *
1754        * This can happen when switching pads on chained/adaptive streams and the
1755        * new chain has a segment with a much larger position
1756        */
1757       segment = &sq->sink_segment;
1758       position = sq->sink_segment.position;
1759     }
1760
1761     src_time = sq->srctime = my_segment_to_running_time (segment, position);
1762     /* if we have a time, we become untainted and use the time */
1763     if (G_UNLIKELY (src_time != GST_CLOCK_STIME_NONE)) {
1764       sq->src_tainted = FALSE;
1765     }
1766   } else
1767     src_time = sq->srctime;
1768
1769   GST_DEBUG_ID (sq->debug_id,
1770       "sink %" GST_STIME_FORMAT ", src %" GST_STIME_FORMAT,
1771       GST_STIME_ARGS (sink_time), GST_STIME_ARGS (src_time));
1772
1773   /* This allows for streams with out of order timestamping - sometimes the
1774    * emerging timestamp is later than the arriving one(s) */
1775   if (G_LIKELY (GST_CLOCK_STIME_IS_VALID (sink_time) &&
1776           GST_CLOCK_STIME_IS_VALID (src_time) && sink_time > src_time))
1777     sq->cur_time = sink_time - src_time;
1778   else
1779     sq->cur_time = 0;
1780
1781   /* updating the time level can change the buffering state */
1782   update_buffering (mq, sq);
1783
1784   return;
1785 }
1786
1787 /* take a SEGMENT event and apply the values to segment, updating the time
1788  * level of queue. */
1789 static void
1790 apply_segment (GstMultiQueue * mq, GstSingleQueue * sq, GstEvent * event,
1791     GstSegment * segment)
1792 {
1793   GstClockTimeDiff ppos = 0;
1794
1795   /* If we switched groups, grab the previous position */
1796   if (segment->rate > 0.0) {
1797     if (segment == &sq->sink_segment && sq->sink_stream_gid_changed) {
1798       ppos =
1799           gst_segment_to_running_time (segment, GST_FORMAT_TIME,
1800           segment->position);
1801       sq->sink_stream_gid_changed = FALSE;
1802     } else if (segment == &sq->src_segment && sq->src_stream_gid_changed) {
1803       ppos =
1804           gst_segment_to_running_time (segment, GST_FORMAT_TIME,
1805           segment->position);
1806       sq->src_stream_gid_changed = FALSE;
1807     }
1808   }
1809
1810   gst_event_copy_segment (event, segment);
1811
1812   /* now configure the values, we use these to track timestamps on the
1813    * sinkpad. */
1814   if (segment->format != GST_FORMAT_TIME) {
1815     /* non-time format, pretent the current time segment is closed with a
1816      * 0 start and unknown stop time. */
1817     segment->format = GST_FORMAT_TIME;
1818     segment->start = 0;
1819     segment->stop = -1;
1820     segment->time = 0;
1821   }
1822   GST_MULTI_QUEUE_MUTEX_LOCK (mq);
1823
1824   if (ppos) {
1825     GST_DEBUG_ID (sq->debug_id, "Applying base of %" GST_TIME_FORMAT,
1826         GST_TIME_ARGS (ppos));
1827     segment->base = ppos;
1828   }
1829
1830   /* Make sure we have a valid initial segment position (and not garbage
1831    * from upstream) */
1832   if (segment->rate > 0.0)
1833     segment->position = segment->start;
1834   else
1835     segment->position = segment->stop;
1836
1837   if (segment == &sq->sink_segment)
1838     sq->sink_tainted = TRUE;
1839   else {
1840     sq->has_src_segment = TRUE;
1841     sq->src_tainted = TRUE;
1842   }
1843
1844   GST_DEBUG_ID (sq->debug_id,
1845       "configured SEGMENT %" GST_SEGMENT_FORMAT, segment);
1846
1847   /* segment can update the time level of the queue */
1848   update_time_level (mq, sq);
1849
1850   GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
1851   gst_multi_queue_post_buffering (mq);
1852 }
1853
1854 /* take a buffer and update segment, updating the time level of the queue. */
1855 static void
1856 apply_buffer (GstMultiQueue * mq, GstSingleQueue * sq, GstClockTime timestamp,
1857     GstClockTime duration, GstSegment * segment)
1858 {
1859   GST_MULTI_QUEUE_MUTEX_LOCK (mq);
1860
1861   /* if no timestamp is set, assume it's continuous with the previous
1862    * time */
1863   if (timestamp == GST_CLOCK_TIME_NONE)
1864     timestamp = segment->position;
1865
1866   /* add duration */
1867   if (duration != GST_CLOCK_TIME_NONE)
1868     timestamp += duration;
1869
1870   GST_DEBUG_ID (sq->debug_id, "%s position updated to %" GST_TIME_FORMAT,
1871       segment == &sq->sink_segment ? "sink" : "src", GST_TIME_ARGS (timestamp));
1872
1873   segment->position = timestamp;
1874
1875   if (segment == &sq->sink_segment)
1876     sq->sink_tainted = TRUE;
1877   else
1878     sq->src_tainted = TRUE;
1879
1880   /* calc diff with other end */
1881   update_time_level (mq, sq);
1882   GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
1883   gst_multi_queue_post_buffering (mq);
1884 }
1885
1886 static void
1887 apply_gap (GstMultiQueue * mq, GstSingleQueue * sq, GstEvent * event,
1888     GstSegment * segment)
1889 {
1890   GstClockTime timestamp;
1891   GstClockTime duration;
1892
1893   GST_MULTI_QUEUE_MUTEX_LOCK (mq);
1894
1895   gst_event_parse_gap (event, &timestamp, &duration);
1896
1897   if (GST_CLOCK_TIME_IS_VALID (timestamp)) {
1898
1899     if (GST_CLOCK_TIME_IS_VALID (duration)) {
1900       timestamp += duration;
1901     }
1902
1903     GST_DEBUG_ID (sq->debug_id,
1904         "%s position updated to %" GST_TIME_FORMAT,
1905         segment == &sq->sink_segment ? "sink" : "src",
1906         GST_TIME_ARGS (timestamp));
1907
1908     segment->position = timestamp;
1909
1910     if (segment == &sq->sink_segment)
1911       sq->sink_tainted = TRUE;
1912     else
1913       sq->src_tainted = TRUE;
1914
1915     /* calc diff with other end */
1916     update_time_level (mq, sq);
1917   }
1918
1919   GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
1920   gst_multi_queue_post_buffering (mq);
1921 }
1922
1923 static GstClockTimeDiff
1924 get_running_time (GstSegment * segment, GstMiniObject * object, gboolean end)
1925 {
1926   GstClockTimeDiff time = GST_CLOCK_STIME_NONE;
1927
1928   if (GST_IS_BUFFER (object)) {
1929     GstBuffer *buf = GST_BUFFER_CAST (object);
1930     GstClockTime btime = GST_BUFFER_DTS_OR_PTS (buf);
1931
1932     if (GST_CLOCK_TIME_IS_VALID (btime)) {
1933       if (end && GST_BUFFER_DURATION_IS_VALID (buf))
1934         btime += GST_BUFFER_DURATION (buf);
1935       time = my_segment_to_running_time (segment, btime);
1936     }
1937   } else if (GST_IS_BUFFER_LIST (object)) {
1938     GstBufferList *list = GST_BUFFER_LIST_CAST (object);
1939     gint i, n;
1940     GstBuffer *buf;
1941
1942     n = gst_buffer_list_length (list);
1943     for (i = 0; i < n; i++) {
1944       GstClockTime btime;
1945       buf = gst_buffer_list_get (list, i);
1946       btime = GST_BUFFER_DTS_OR_PTS (buf);
1947       if (GST_CLOCK_TIME_IS_VALID (btime)) {
1948         if (end && GST_BUFFER_DURATION_IS_VALID (buf))
1949           btime += GST_BUFFER_DURATION (buf);
1950         time = my_segment_to_running_time (segment, btime);
1951         if (!end)
1952           goto done;
1953       } else if (!end) {
1954         goto done;
1955       }
1956     }
1957   } else if (GST_IS_EVENT (object)) {
1958     GstEvent *event = GST_EVENT_CAST (object);
1959
1960     /* For newsegment events return the running time of the start position */
1961     if (GST_EVENT_TYPE (event) == GST_EVENT_SEGMENT) {
1962       const GstSegment *new_segment;
1963
1964       gst_event_parse_segment (event, &new_segment);
1965       if (new_segment->format == GST_FORMAT_TIME) {
1966         time =
1967             my_segment_to_running_time ((GstSegment *) new_segment,
1968             new_segment->start);
1969       }
1970     } else if (GST_EVENT_TYPE (event) == GST_EVENT_GAP) {
1971       GstClockTime ts, dur;
1972       gst_event_parse_gap (event, &ts, &dur);
1973       if (GST_CLOCK_TIME_IS_VALID (ts)) {
1974         if (GST_CLOCK_TIME_IS_VALID (dur))
1975           ts += dur;
1976         time = my_segment_to_running_time (segment, ts);
1977       }
1978     }
1979   }
1980
1981 done:
1982   return time;
1983 }
1984
1985 static GstFlowReturn
1986 gst_single_queue_push_one (GstMultiQueue * mq, GstSingleQueue * sq,
1987     GstMiniObject * object, gboolean * allow_drop)
1988 {
1989   GstFlowReturn result = sq->srcresult;
1990   GstPad *srcpad = g_weak_ref_get (&sq->srcpad);
1991
1992   if (!srcpad) {
1993     GST_INFO_OBJECT (mq,
1994         "Pushing while corresponding sourcepad has been cleared");
1995     return GST_FLOW_FLUSHING;
1996   }
1997
1998   if (GST_IS_BUFFER (object)) {
1999     GstBuffer *buffer;
2000     GstClockTime timestamp, duration;
2001
2002     buffer = GST_BUFFER_CAST (object);
2003     timestamp = GST_BUFFER_DTS_OR_PTS (buffer);
2004     duration = GST_BUFFER_DURATION (buffer);
2005
2006     apply_buffer (mq, sq, timestamp, duration, &sq->src_segment);
2007
2008     /* Applying the buffer may have made the queue non-full again, unblock it if needed */
2009     gst_data_queue_limits_changed (sq->queue);
2010
2011     if (G_UNLIKELY (*allow_drop)) {
2012       GST_DEBUG_ID (sq->debug_id,
2013           "Dropping EOS buffer %p with ts %" GST_TIME_FORMAT,
2014           buffer, GST_TIME_ARGS (timestamp));
2015       gst_buffer_unref (buffer);
2016     } else {
2017       GST_DEBUG_ID (sq->debug_id,
2018           "Pushing buffer %p with ts %" GST_TIME_FORMAT,
2019           buffer, GST_TIME_ARGS (timestamp));
2020       result = gst_pad_push (srcpad, buffer);
2021     }
2022   } else if (GST_IS_EVENT (object)) {
2023     GstEvent *event;
2024
2025     event = GST_EVENT_CAST (object);
2026
2027     switch (GST_EVENT_TYPE (event)) {
2028       case GST_EVENT_SEGMENT_DONE:
2029         *allow_drop = FALSE;
2030         break;
2031       case GST_EVENT_EOS:
2032         result = GST_FLOW_EOS;
2033         if (G_UNLIKELY (*allow_drop))
2034           *allow_drop = FALSE;
2035         break;
2036       case GST_EVENT_STREAM_START:
2037       {
2038         guint32 group_id;
2039         if (gst_event_parse_group_id (event, &group_id)) {
2040           if (sq->src_stream_gid == GST_GROUP_ID_INVALID) {
2041             sq->src_stream_gid = group_id;
2042           } else if (group_id != sq->src_stream_gid) {
2043             sq->src_stream_gid = group_id;
2044             sq->src_stream_gid_changed = TRUE;
2045           }
2046         }
2047         result = GST_FLOW_OK;
2048         if (G_UNLIKELY (*allow_drop))
2049           *allow_drop = FALSE;
2050         break;
2051       }
2052       case GST_EVENT_SEGMENT:
2053         apply_segment (mq, sq, event, &sq->src_segment);
2054         /* Applying the segment may have made the queue non-full again, unblock it if needed */
2055         gst_data_queue_limits_changed (sq->queue);
2056         if (G_UNLIKELY (*allow_drop)) {
2057           result = GST_FLOW_OK;
2058           *allow_drop = FALSE;
2059         }
2060         break;
2061       case GST_EVENT_GAP:
2062         apply_gap (mq, sq, event, &sq->src_segment);
2063         /* Applying the gap may have made the queue non-full again, unblock it if needed */
2064         gst_data_queue_limits_changed (sq->queue);
2065         break;
2066       default:
2067         break;
2068     }
2069
2070     if (G_UNLIKELY (*allow_drop)) {
2071       GST_DEBUG_ID (sq->debug_id,
2072           "Dropping EOS event %p of type %s",
2073           event, GST_EVENT_TYPE_NAME (event));
2074       gst_event_unref (event);
2075     } else {
2076       GST_DEBUG_ID (sq->debug_id,
2077           "Pushing event %p of type %s", event, GST_EVENT_TYPE_NAME (event));
2078
2079       gst_pad_push_event (srcpad, event);
2080     }
2081   } else if (GST_IS_QUERY (object)) {
2082     GstQuery *query;
2083     gboolean res;
2084
2085     query = GST_QUERY_CAST (object);
2086
2087     if (G_UNLIKELY (*allow_drop)) {
2088       GST_DEBUG_ID (sq->debug_id, "Dropping EOS query %p", query);
2089       gst_query_unref (query);
2090       res = FALSE;
2091     } else {
2092       res = gst_pad_peer_query (srcpad, query);
2093     }
2094
2095     GST_MULTI_QUEUE_MUTEX_LOCK (mq);
2096     sq->last_query = res;
2097     sq->last_handled_query = query;
2098     g_cond_signal (&sq->query_handled);
2099     GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
2100   } else {
2101     g_warning ("Unexpected object in singlequeue %u (refcounting problem?)",
2102         sq->id);
2103   }
2104
2105   gst_object_unref (srcpad);
2106   return result;
2107
2108   /* ERRORS */
2109 }
2110
2111 static GstMiniObject *
2112 gst_multi_queue_item_steal_object (GstMultiQueueItem * item)
2113 {
2114   GstMiniObject *res;
2115
2116   res = item->object;
2117   item->object = NULL;
2118
2119   return res;
2120 }
2121
2122 static void
2123 gst_multi_queue_item_destroy (GstMultiQueueItem * item)
2124 {
2125   if (!item->is_query && item->object)
2126     gst_mini_object_unref (item->object);
2127   g_slice_free (GstMultiQueueItem, item);
2128 }
2129
2130 /* takes ownership of passed mini object! */
2131 static GstMultiQueueItem *
2132 gst_multi_queue_buffer_item_new (GstMiniObject * object, guint32 curid)
2133 {
2134   GstMultiQueueItem *item;
2135
2136   item = g_slice_new (GstMultiQueueItem);
2137   item->object = object;
2138   item->destroy = (GDestroyNotify) gst_multi_queue_item_destroy;
2139   item->posid = curid;
2140   item->is_query = GST_IS_QUERY (object);
2141
2142   item->size = gst_buffer_get_size (GST_BUFFER_CAST (object));
2143   item->duration = GST_BUFFER_DURATION (object);
2144   if (item->duration == GST_CLOCK_TIME_NONE)
2145     item->duration = 0;
2146   item->visible = TRUE;
2147   return item;
2148 }
2149
2150 static GstMultiQueueItem *
2151 gst_multi_queue_mo_item_new (GstMiniObject * object, guint32 curid)
2152 {
2153   GstMultiQueueItem *item;
2154
2155   item = g_slice_new (GstMultiQueueItem);
2156   item->object = object;
2157   item->destroy = (GDestroyNotify) gst_multi_queue_item_destroy;
2158   item->posid = curid;
2159   item->is_query = GST_IS_QUERY (object);
2160
2161   item->size = 0;
2162   item->duration = 0;
2163   item->visible = FALSE;
2164   return item;
2165 }
2166
2167 /* Each main loop attempts to push buffers until the return value
2168  * is not-linked. not-linked pads are not allowed to push data beyond
2169  * any linked pads, so they don't 'rush ahead of the pack'.
2170  */
2171 static void
2172 gst_multi_queue_loop (GstPad * pad)
2173 {
2174   GstSingleQueue *sq;
2175   GstMultiQueueItem *item;
2176   GstDataQueueItem *sitem;
2177   GstMultiQueue *mq;
2178   GstMiniObject *object = NULL;
2179   guint32 newid;
2180   GstFlowReturn result;
2181   GstClockTimeDiff next_time;
2182   gboolean is_buffer;
2183   gboolean is_query = FALSE;
2184   gboolean do_update_buffering = FALSE;
2185   gboolean dropping = FALSE;
2186   GstPad *srcpad = NULL;
2187
2188   sq = GST_MULTIQUEUE_PAD (pad)->sq;
2189   mq = g_weak_ref_get (&sq->mqueue);
2190   srcpad = g_weak_ref_get (&sq->srcpad);
2191
2192   if (!mq || !srcpad)
2193     goto done;
2194
2195 next:
2196   GST_DEBUG_ID (sq->debug_id, "trying to pop an object");
2197
2198   if (sq->flushing)
2199     goto out_flushing;
2200
2201   /* Get something from the queue, blocking until that happens, or we get
2202    * flushed */
2203   if (!(gst_data_queue_pop (sq->queue, &sitem)))
2204     goto out_flushing;
2205
2206   item = (GstMultiQueueItem *) sitem;
2207   newid = item->posid;
2208
2209   is_query = item->is_query;
2210
2211   /* steal the object and destroy the item */
2212   object = gst_multi_queue_item_steal_object (item);
2213   gst_multi_queue_item_destroy (item);
2214
2215   is_buffer = GST_IS_BUFFER (object);
2216
2217   /* Get running time of the item. Events will have GST_CLOCK_STIME_NONE */
2218   next_time = get_running_time (&sq->src_segment, object, FALSE);
2219
2220   GST_LOG_ID (sq->debug_id, "newid:%d , oldid:%d", newid, sq->last_oldid);
2221
2222   /* If we're not-linked, we do some extra work because we might need to
2223    * wait before pushing. If we're linked but there's a gap in the IDs,
2224    * or it's the first loop, or we just passed the previous highid,
2225    * we might need to wake some sleeping pad up, so there's extra work
2226    * there too */
2227   GST_MULTI_QUEUE_MUTEX_LOCK (mq);
2228   if (sq->srcresult == GST_FLOW_NOT_LINKED
2229       || (sq->last_oldid == G_MAXUINT32) || (newid != (sq->last_oldid + 1))
2230       || sq->last_oldid > mq->highid) {
2231     GST_LOG_ID (sq->debug_id, "CHECKING srcresult: %s",
2232         gst_flow_get_name (sq->srcresult));
2233
2234     /* Check again if we're flushing after the lock is taken,
2235      * the flush flag might have been changed in the meantime */
2236     if (sq->flushing) {
2237       GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
2238       goto out_flushing;
2239     }
2240
2241     /* Update the nextid so other threads know when to wake us up */
2242     sq->nextid = newid;
2243     /* Take into account the extra cache time since we're unlinked */
2244     if (GST_CLOCK_STIME_IS_VALID (next_time))
2245       next_time += mq->unlinked_cache_time;
2246     sq->next_time = next_time;
2247
2248     /* Update the oldid (the last ID we output) for highid tracking */
2249     if (sq->last_oldid != G_MAXUINT32)
2250       sq->oldid = sq->last_oldid;
2251
2252     if (sq->srcresult == GST_FLOW_NOT_LINKED) {
2253       gboolean should_wait;
2254       /* Go to sleep until it's time to push this buffer */
2255
2256       /* Recompute the highid */
2257       compute_high_id (mq);
2258       /* Recompute the high time */
2259       compute_high_time (mq, sq->groupid);
2260
2261       GST_DEBUG_ID (sq->debug_id,
2262           "groupid %d high_time %" GST_STIME_FORMAT " next_time %"
2263           GST_STIME_FORMAT, sq->groupid, GST_STIME_ARGS (sq->group_high_time),
2264           GST_STIME_ARGS (next_time));
2265
2266       if (mq->sync_by_running_time) {
2267         if (sq->group_high_time == GST_CLOCK_STIME_NONE) {
2268           should_wait = GST_CLOCK_STIME_IS_VALID (next_time) &&
2269               (mq->high_time == GST_CLOCK_STIME_NONE
2270               || next_time > mq->high_time);
2271         } else {
2272           should_wait = GST_CLOCK_STIME_IS_VALID (next_time) &&
2273               next_time > sq->group_high_time;
2274         }
2275       } else
2276         should_wait = newid > mq->highid;
2277
2278       while (should_wait && sq->srcresult == GST_FLOW_NOT_LINKED) {
2279
2280         GST_DEBUG_ID (sq->debug_id,
2281             "Sleeping for not-linked wakeup with "
2282             "newid %u, highid %u, next_time %" GST_STIME_FORMAT
2283             ", high_time %" GST_STIME_FORMAT, newid, mq->highid,
2284             GST_STIME_ARGS (next_time), GST_STIME_ARGS (sq->group_high_time));
2285
2286         /* Wake up all non-linked pads before we sleep */
2287         wake_up_next_non_linked (mq);
2288
2289         mq->numwaiting++;
2290         g_cond_wait (&sq->turn, &mq->qlock);
2291         mq->numwaiting--;
2292
2293         if (sq->flushing) {
2294           GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
2295           goto out_flushing;
2296         }
2297
2298         /* Recompute the high time and ID */
2299         compute_high_time (mq, sq->groupid);
2300         compute_high_id (mq);
2301
2302         GST_DEBUG_ID (sq->debug_id, "Woken from sleeping for not-linked "
2303             "wakeup with newid %u, highid %u, next_time %" GST_STIME_FORMAT
2304             ", high_time %" GST_STIME_FORMAT " mq high_time %" GST_STIME_FORMAT,
2305             newid, mq->highid,
2306             GST_STIME_ARGS (next_time), GST_STIME_ARGS (sq->group_high_time),
2307             GST_STIME_ARGS (mq->high_time));
2308
2309         if (mq->sync_by_running_time) {
2310           if (sq->group_high_time == GST_CLOCK_STIME_NONE) {
2311             should_wait = GST_CLOCK_STIME_IS_VALID (next_time) &&
2312                 (mq->high_time == GST_CLOCK_STIME_NONE
2313                 || next_time > mq->high_time);
2314           } else {
2315             should_wait = GST_CLOCK_STIME_IS_VALID (next_time) &&
2316                 next_time > sq->group_high_time;
2317           }
2318         } else
2319           should_wait = newid > mq->highid;
2320       }
2321
2322       /* Re-compute the high_id in case someone else pushed */
2323       compute_high_id (mq);
2324       compute_high_time (mq, sq->groupid);
2325     } else {
2326       compute_high_id (mq);
2327       compute_high_time (mq, sq->groupid);
2328       /* Wake up all non-linked pads */
2329       wake_up_next_non_linked (mq);
2330     }
2331     /* We're done waiting, we can clear the nextid and nexttime */
2332     sq->nextid = 0;
2333     sq->next_time = GST_CLOCK_STIME_NONE;
2334   }
2335   GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
2336
2337   if (sq->flushing)
2338     goto out_flushing;
2339
2340   GST_LOG_ID (sq->debug_id, "BEFORE PUSHING sq->srcresult: %s",
2341       gst_flow_get_name (sq->srcresult));
2342
2343   /* Update time stats */
2344   GST_MULTI_QUEUE_MUTEX_LOCK (mq);
2345   next_time = get_running_time (&sq->src_segment, object, TRUE);
2346   if (GST_CLOCK_STIME_IS_VALID (next_time)) {
2347     if (sq->last_time == GST_CLOCK_STIME_NONE || sq->last_time < next_time)
2348       sq->last_time = next_time;
2349     if (mq->high_time == GST_CLOCK_STIME_NONE || mq->high_time <= next_time) {
2350       /* Wake up all non-linked pads now that we advanced the high time */
2351       mq->high_time = next_time;
2352       wake_up_next_non_linked (mq);
2353     }
2354   }
2355   GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
2356
2357   /* Try to push out the new object */
2358   result = gst_single_queue_push_one (mq, sq, object, &dropping);
2359   object = NULL;
2360
2361   /* Check if we pushed something already and if this is
2362    * now a switch from an active to a non-active stream.
2363    *
2364    * If it is, we reset all the waiting streams, let them
2365    * push another buffer to see if they're now active again.
2366    * This allows faster switching between streams and prevents
2367    * deadlocks if downstream does any waiting too.
2368    */
2369   GST_MULTI_QUEUE_MUTEX_LOCK (mq);
2370   if (sq->pushed && sq->srcresult == GST_FLOW_OK
2371       && result == GST_FLOW_NOT_LINKED) {
2372     GList *tmp;
2373
2374     GST_LOG_ID (sq->debug_id, "Changed from active to non-active");
2375
2376     compute_high_id (mq);
2377     compute_high_time (mq, sq->groupid);
2378     do_update_buffering = TRUE;
2379
2380     /* maybe no-one is waiting */
2381     if (mq->numwaiting > 0) {
2382       /* Else figure out which singlequeue(s) need waking up */
2383       for (tmp = mq->queues; tmp; tmp = g_list_next (tmp)) {
2384         GstSingleQueue *sq2 = (GstSingleQueue *) tmp->data;
2385
2386         if (sq2->srcresult == GST_FLOW_NOT_LINKED) {
2387           GST_LOG_ID (sq2->debug_id, "Waking up singlequeue");
2388           sq2->pushed = FALSE;
2389           sq2->srcresult = GST_FLOW_OK;
2390           g_cond_signal (&sq2->turn);
2391         }
2392       }
2393     }
2394   }
2395
2396   if (is_buffer)
2397     sq->pushed = TRUE;
2398
2399   /* now hold on a bit;
2400    * can not simply throw this result to upstream, because
2401    * that might already be onto another segment, so we have to make
2402    * sure we are relaying the correct info wrt proper segment */
2403   if (result == GST_FLOW_EOS && !dropping &&
2404       sq->srcresult != GST_FLOW_NOT_LINKED) {
2405     GST_DEBUG_ID (sq->debug_id, "starting EOS drop");
2406     dropping = TRUE;
2407     /* pretend we have not seen EOS yet for upstream's sake */
2408     result = sq->srcresult;
2409   } else if (dropping && gst_data_queue_is_empty (sq->queue)) {
2410     /* queue empty, so stop dropping
2411      * we can commit the result we have now,
2412      * which is either OK after a segment, or EOS */
2413     GST_DEBUG_ID (sq->debug_id, "committed EOS drop");
2414     dropping = FALSE;
2415     result = GST_FLOW_EOS;
2416   }
2417   sq->srcresult = result;
2418   sq->last_oldid = newid;
2419
2420   if (do_update_buffering)
2421     update_buffering (mq, sq);
2422
2423   GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
2424   gst_multi_queue_post_buffering (mq);
2425
2426   GST_LOG_ID (sq->debug_id,
2427       "AFTER PUSHING sq->srcresult: %s (is_eos:%d)",
2428       gst_flow_get_name (sq->srcresult), GST_PAD_IS_EOS (srcpad));
2429
2430   /* Need to make sure wake up any sleeping pads when we exit */
2431   GST_MULTI_QUEUE_MUTEX_LOCK (mq);
2432   if (mq->numwaiting > 0 && (GST_PAD_IS_EOS (srcpad)
2433           || sq->srcresult == GST_FLOW_EOS)) {
2434     compute_high_time (mq, sq->groupid);
2435     compute_high_id (mq);
2436     wake_up_next_non_linked (mq);
2437   }
2438   GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
2439
2440   if (dropping)
2441     goto next;
2442
2443   if (result != GST_FLOW_OK && result != GST_FLOW_NOT_LINKED
2444       && result != GST_FLOW_EOS)
2445     goto out_flushing;
2446
2447 done:
2448   gst_clear_object (&mq);
2449   gst_clear_object (&srcpad);
2450
2451   return;
2452
2453 out_flushing:
2454   {
2455     if (object && !is_query)
2456       gst_mini_object_unref (object);
2457
2458     GST_MULTI_QUEUE_MUTEX_LOCK (mq);
2459     sq->last_query = FALSE;
2460     g_cond_signal (&sq->query_handled);
2461
2462     /* Post an error message if we got EOS while downstream
2463      * has returned an error flow return. After EOS there
2464      * will be no further buffer which could propagate the
2465      * error upstream */
2466     if ((sq->is_eos || sq->is_segment_done) && sq->srcresult < GST_FLOW_EOS) {
2467       GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
2468       GST_ELEMENT_FLOW_ERROR (mq, sq->srcresult);
2469     } else {
2470       GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
2471     }
2472
2473     /* upstream needs to see fatal result ASAP to shut things down,
2474      * but might be stuck in one of our other full queues;
2475      * so empty this one and trigger dynamic queue growth. At
2476      * this point the srcresult is not OK, NOT_LINKED
2477      * or EOS, i.e. a real failure */
2478     gst_single_queue_flush_queue (sq, FALSE);
2479     single_queue_underrun_cb (sq->queue, sq);
2480     gst_data_queue_set_flushing (sq->queue, TRUE);
2481     gst_pad_pause_task (srcpad);
2482     GST_LOG_ID (sq->debug_id,
2483         "task paused, reason:%s", gst_flow_get_name (sq->srcresult));
2484     goto done;
2485   }
2486 }
2487
2488 /**
2489  * gst_multi_queue_chain:
2490  *
2491  * This is similar to GstQueue's chain function, except:
2492  * _ we don't have leak behaviours,
2493  * _ we push with a unique id (curid)
2494  */
2495 static GstFlowReturn
2496 gst_multi_queue_chain (GstPad * pad, GstObject * parent, GstBuffer * buffer)
2497 {
2498   GstSingleQueue *sq;
2499   GstMultiQueue *mq;
2500   GstMultiQueueItem *item = NULL;
2501   guint32 curid;
2502   GstClockTime timestamp, duration;
2503
2504   sq = GST_MULTIQUEUE_PAD (pad)->sq;
2505   mq = g_weak_ref_get (&sq->mqueue);
2506
2507   if (!mq)
2508     goto done;
2509
2510   /* if eos, we are always full, so avoid hanging incoming indefinitely */
2511   if (sq->is_eos)
2512     goto was_eos;
2513
2514   sq->active = TRUE;
2515
2516   /* Get a unique incrementing id */
2517   curid = g_atomic_int_add ((gint *) & mq->counter, 1);
2518
2519   timestamp = GST_BUFFER_DTS_OR_PTS (buffer);
2520   duration = GST_BUFFER_DURATION (buffer);
2521
2522   GST_LOG_ID (sq->debug_id,
2523       "About to enqueue buffer %p with id %d (pts:%"
2524       GST_TIME_FORMAT " dts:%" GST_TIME_FORMAT " dur:%" GST_TIME_FORMAT ")",
2525       buffer, curid, GST_TIME_ARGS (GST_BUFFER_PTS (buffer)),
2526       GST_TIME_ARGS (GST_BUFFER_DTS (buffer)), GST_TIME_ARGS (duration));
2527
2528   item = gst_multi_queue_buffer_item_new (GST_MINI_OBJECT_CAST (buffer), curid);
2529
2530   /* Update interleave before pushing data into queue */
2531   if (mq->use_interleave) {
2532     GstClockTime val = timestamp;
2533     GstClockTimeDiff dval;
2534
2535     GST_MULTI_QUEUE_MUTEX_LOCK (mq);
2536     if (val == GST_CLOCK_TIME_NONE)
2537       val = sq->sink_segment.position;
2538     if (duration != GST_CLOCK_TIME_NONE)
2539       val += duration;
2540
2541     dval = my_segment_to_running_time (&sq->sink_segment, val);
2542     if (GST_CLOCK_STIME_IS_VALID (dval)) {
2543       sq->cached_sinktime = dval;
2544       GST_DEBUG_ID (sq->debug_id,
2545           "Cached sink time now %" G_GINT64_FORMAT " %"
2546           GST_STIME_FORMAT, sq->cached_sinktime,
2547           GST_STIME_ARGS (sq->cached_sinktime));
2548       calculate_interleave (mq, sq);
2549     }
2550     GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
2551   }
2552
2553   if (!(gst_data_queue_push (sq->queue, (GstDataQueueItem *) item)))
2554     goto flushing;
2555
2556   /* update time level, we must do this after pushing the data in the queue so
2557    * that we never end up filling the queue first. */
2558   apply_buffer (mq, sq, timestamp, duration, &sq->sink_segment);
2559
2560 done:
2561   gst_clear_object (&mq);
2562   return sq->srcresult;
2563
2564   /* ERRORS */
2565 flushing:
2566   {
2567     GST_LOG_ID (sq->debug_id, "exit because task paused, reason: %s",
2568         gst_flow_get_name (sq->srcresult));
2569     if (item)
2570       gst_multi_queue_item_destroy (item);
2571     goto done;
2572   }
2573 was_eos:
2574   {
2575     GST_DEBUG_OBJECT (mq, "we are EOS, dropping buffer, return EOS");
2576     gst_buffer_unref (buffer);
2577     gst_object_unref (mq);
2578     return GST_FLOW_EOS;
2579   }
2580 }
2581
2582 static gboolean
2583 gst_multi_queue_sink_activate_mode (GstPad * pad, GstObject * parent,
2584     GstPadMode mode, gboolean active)
2585 {
2586   gboolean res;
2587   GstSingleQueue *sq;
2588   GstMultiQueue *mq;
2589
2590   sq = GST_MULTIQUEUE_PAD (pad)->sq;
2591   mq = (GstMultiQueue *) gst_pad_get_parent (pad);
2592
2593   /* mq is NULL if the pad is activated/deactivated before being
2594    * added to the multiqueue */
2595   if (mq)
2596     GST_MULTI_QUEUE_MUTEX_LOCK (mq);
2597
2598   switch (mode) {
2599     case GST_PAD_MODE_PUSH:
2600       if (active) {
2601         /* All pads start off linked until they push one buffer */
2602         sq->srcresult = GST_FLOW_OK;
2603         sq->pushed = FALSE;
2604         gst_data_queue_set_flushing (sq->queue, FALSE);
2605       } else {
2606         sq->srcresult = GST_FLOW_FLUSHING;
2607         sq->last_query = FALSE;
2608         g_cond_signal (&sq->query_handled);
2609         gst_data_queue_set_flushing (sq->queue, TRUE);
2610
2611         /* Wait until streaming thread has finished */
2612         if (mq)
2613           GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
2614         GST_PAD_STREAM_LOCK (pad);
2615         if (mq)
2616           GST_MULTI_QUEUE_MUTEX_LOCK (mq);
2617         gst_data_queue_flush (sq->queue);
2618         if (mq)
2619           GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
2620         GST_PAD_STREAM_UNLOCK (pad);
2621         if (mq)
2622           GST_MULTI_QUEUE_MUTEX_LOCK (mq);
2623       }
2624       res = TRUE;
2625       break;
2626     default:
2627       res = FALSE;
2628       break;
2629   }
2630
2631   if (mq) {
2632     GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
2633     gst_object_unref (mq);
2634   }
2635
2636   return res;
2637 }
2638
2639 static GstFlowReturn
2640 gst_multi_queue_sink_event (GstPad * pad, GstObject * parent, GstEvent * event)
2641 {
2642   GstSingleQueue *sq;
2643   GstMultiQueue *mq;
2644   guint32 curid;
2645   GstMultiQueueItem *item;
2646   gboolean res = TRUE;
2647   GstFlowReturn flowret = GST_FLOW_OK;
2648   GstEventType type;
2649   GstEvent *sref = NULL;
2650   GstPad *srcpad;
2651
2652
2653   sq = GST_MULTIQUEUE_PAD (pad)->sq;
2654   mq = (GstMultiQueue *) parent;
2655   srcpad = g_weak_ref_get (&sq->srcpad);
2656
2657   if (!srcpad) {
2658     GST_INFO_OBJECT (pad, "Pushing while corresponding sourcepad has been"
2659         " removed already");
2660
2661     return GST_FLOW_FLUSHING;
2662   }
2663
2664   type = GST_EVENT_TYPE (event);
2665
2666   switch (type) {
2667     case GST_EVENT_STREAM_START:
2668     {
2669       guint32 group_id;
2670       if (gst_event_parse_group_id (event, &group_id)) {
2671         if (sq->sink_stream_gid == GST_GROUP_ID_INVALID) {
2672           sq->sink_stream_gid = group_id;
2673         } else if (group_id != sq->sink_stream_gid) {
2674           sq->sink_stream_gid = group_id;
2675           sq->sink_stream_gid_changed = TRUE;
2676         }
2677       }
2678       if (mq->sync_by_running_time) {
2679         GstStreamFlags stream_flags;
2680         gst_event_parse_stream_flags (event, &stream_flags);
2681         if ((stream_flags & GST_STREAM_FLAG_SPARSE)) {
2682           GST_INFO_ID (sq->debug_id, "Stream is sparse");
2683           sq->is_sparse = TRUE;
2684         }
2685       }
2686
2687       sq->thread = g_thread_self ();
2688
2689       /* Remove EOS flag */
2690       sq->is_eos = FALSE;
2691       break;
2692     }
2693     case GST_EVENT_FLUSH_START:
2694       GST_DEBUG_ID (sq->debug_id, "Received flush start event");
2695
2696       res = gst_pad_push_event (srcpad, event);
2697
2698       gst_single_queue_flush (mq, sq, TRUE, FALSE);
2699       gst_single_queue_pause (mq, sq);
2700       goto done;
2701
2702     case GST_EVENT_FLUSH_STOP:
2703       GST_DEBUG_ID (sq->debug_id, "Received flush stop event");
2704
2705       res = gst_pad_push_event (srcpad, event);
2706
2707       gst_single_queue_flush (mq, sq, FALSE, FALSE);
2708       gst_single_queue_start (mq, sq);
2709       goto done;
2710
2711     case GST_EVENT_SEGMENT:
2712       sq->is_segment_done = FALSE;
2713       sref = gst_event_ref (event);
2714       break;
2715     case GST_EVENT_GAP:
2716       /* take ref because the queue will take ownership and we need the event
2717        * afterwards to update the segment */
2718       sref = gst_event_ref (event);
2719       if (mq->use_interleave) {
2720         GstClockTime val, dur;
2721         GstClockTime stime;
2722         gst_event_parse_gap (event, &val, &dur);
2723         if (GST_CLOCK_TIME_IS_VALID (val)) {
2724           GST_MULTI_QUEUE_MUTEX_LOCK (mq);
2725           if (GST_CLOCK_TIME_IS_VALID (dur))
2726             val += dur;
2727           stime = my_segment_to_running_time (&sq->sink_segment, val);
2728           if (GST_CLOCK_STIME_IS_VALID (stime)) {
2729             sq->cached_sinktime = stime;
2730             calculate_interleave (mq, sq);
2731           }
2732           GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
2733         }
2734       }
2735       break;
2736
2737     default:
2738       if (!(GST_EVENT_IS_SERIALIZED (event))) {
2739         res = gst_pad_push_event (srcpad, event);
2740         goto done;
2741       }
2742       break;
2743   }
2744
2745   /* if eos, we are always full, so avoid hanging incoming indefinitely */
2746   if (sq->is_eos)
2747     goto was_eos;
2748
2749   /* Get an unique incrementing id. */
2750   curid = g_atomic_int_add ((gint *) & mq->counter, 1);
2751
2752   item = gst_multi_queue_mo_item_new ((GstMiniObject *) event, curid);
2753
2754   GST_DEBUG_ID (sq->debug_id,
2755       "Enqueuing event %p of type %s with id %d",
2756       event, GST_EVENT_TYPE_NAME (event), curid);
2757
2758   if (!gst_data_queue_push (sq->queue, (GstDataQueueItem *) item))
2759     goto flushing;
2760
2761   /* mark EOS when we received one, we must do that after putting the
2762    * buffer in the queue because EOS marks the buffer as filled. */
2763   switch (type) {
2764     case GST_EVENT_SEGMENT_DONE:
2765       sq->is_segment_done = TRUE;
2766       GST_MULTI_QUEUE_MUTEX_LOCK (mq);
2767       update_buffering (mq, sq);
2768       GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
2769       single_queue_overrun_cb (sq->queue, sq);
2770       gst_multi_queue_post_buffering (mq);
2771       break;
2772     case GST_EVENT_EOS:
2773       GST_MULTI_QUEUE_MUTEX_LOCK (mq);
2774       sq->is_eos = TRUE;
2775
2776       /* Post an error message if we got EOS while downstream
2777        * has returned an error flow return. After EOS there
2778        * will be no further buffer which could propagate the
2779        * error upstream */
2780       if (sq->srcresult < GST_FLOW_EOS) {
2781         GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
2782         GST_ELEMENT_FLOW_ERROR (mq, sq->srcresult);
2783       } else {
2784         GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
2785       }
2786
2787       /* EOS affects the buffering state */
2788       GST_MULTI_QUEUE_MUTEX_LOCK (mq);
2789       update_buffering (mq, sq);
2790       GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
2791       single_queue_overrun_cb (sq->queue, sq);
2792       gst_multi_queue_post_buffering (mq);
2793       break;
2794     case GST_EVENT_SEGMENT:
2795       apply_segment (mq, sq, sref, &sq->sink_segment);
2796       gst_event_unref (sref);
2797       /* a new segment allows us to accept more buffers if we got EOS
2798        * from downstream */
2799       GST_MULTI_QUEUE_MUTEX_LOCK (mq);
2800       if (sq->srcresult == GST_FLOW_EOS)
2801         sq->srcresult = GST_FLOW_OK;
2802       GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
2803       break;
2804     case GST_EVENT_GAP:
2805       sq->active = TRUE;
2806       apply_gap (mq, sq, sref, &sq->sink_segment);
2807       gst_event_unref (sref);
2808     default:
2809       break;
2810   }
2811
2812 done:
2813
2814   gst_object_unref (srcpad);
2815   if (res == FALSE)
2816     flowret = GST_FLOW_ERROR;
2817   GST_DEBUG_ID (sq->debug_id, "Returning %s", gst_flow_get_name (flowret));
2818   return flowret;
2819
2820 flushing:
2821   {
2822     gst_object_unref (srcpad);
2823     GST_LOG_ID (sq->debug_id, "Exit because task paused, reason: %s",
2824         gst_flow_get_name (sq->srcresult));
2825     if (sref)
2826       gst_event_unref (sref);
2827     gst_multi_queue_item_destroy (item);
2828     return sq->srcresult;
2829   }
2830 was_eos:
2831   {
2832     gst_object_unref (srcpad);
2833     GST_DEBUG_OBJECT (mq, "we are EOS, dropping event, return GST_FLOW_EOS");
2834     gst_event_unref (event);
2835     return GST_FLOW_EOS;
2836   }
2837 }
2838
2839 static gboolean
2840 gst_multi_queue_sink_query (GstPad * pad, GstObject * parent, GstQuery * query)
2841 {
2842   gboolean res;
2843   GstSingleQueue *sq;
2844   GstMultiQueue *mq;
2845
2846   sq = GST_MULTIQUEUE_PAD (pad)->sq;
2847   mq = (GstMultiQueue *) parent;
2848
2849   switch (GST_QUERY_TYPE (query)) {
2850     default:
2851       if (GST_QUERY_IS_SERIALIZED (query)) {
2852         guint32 curid;
2853         GstMultiQueueItem *item;
2854
2855         GST_MULTI_QUEUE_MUTEX_LOCK (mq);
2856         if (sq->srcresult != GST_FLOW_OK)
2857           goto out_flushing;
2858
2859         /* serialized events go in the queue. We need to be certain that we
2860          * don't cause deadlocks waiting for the query return value. We check if
2861          * the queue is empty (nothing is blocking downstream and the query can
2862          * be pushed for sure) or we are not buffering. If we are buffering,
2863          * the pipeline waits to unblock downstream until our queue fills up
2864          * completely, which can not happen if we block on the query..
2865          * Therefore we only potentially block when we are not buffering. */
2866         if (!mq->use_buffering || gst_data_queue_is_empty (sq->queue)) {
2867           /* Get an unique incrementing id. */
2868           curid = g_atomic_int_add ((gint *) & mq->counter, 1);
2869
2870           item = gst_multi_queue_mo_item_new ((GstMiniObject *) query, curid);
2871
2872           GST_DEBUG_ID (sq->debug_id,
2873               "Enqueuing query %p of type %s with id %d",
2874               query, GST_QUERY_TYPE_NAME (query), curid);
2875           GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
2876           res = gst_data_queue_push (sq->queue, (GstDataQueueItem *) item);
2877           GST_MULTI_QUEUE_MUTEX_LOCK (mq);
2878           if (!res || sq->flushing)
2879             goto out_flushing;
2880           /* it might be that the query has been taken out of the queue
2881            * while we were unlocked. So, we need to check if the last
2882            * handled query is the same one than the one we just
2883            * pushed. If it is, we don't need to wait for the condition
2884            * variable, otherwise we wait for the condition variable to
2885            * be signaled. */
2886           while (!sq->flushing && sq->srcresult == GST_FLOW_OK
2887               && sq->last_handled_query != query)
2888             g_cond_wait (&sq->query_handled, &mq->qlock);
2889           res = sq->last_query;
2890           sq->last_handled_query = NULL;
2891         } else {
2892           GST_DEBUG_OBJECT (mq, "refusing query, we are buffering and the "
2893               "queue is not empty");
2894           res = FALSE;
2895         }
2896         GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
2897       } else {
2898         /* default handling */
2899         res = gst_pad_query_default (pad, parent, query);
2900       }
2901       break;
2902   }
2903   return res;
2904
2905 out_flushing:
2906   {
2907     GST_DEBUG_OBJECT (mq, "Flushing");
2908     GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
2909     return FALSE;
2910   }
2911 }
2912
2913 static gboolean
2914 gst_multi_queue_src_activate_mode (GstPad * pad, GstObject * parent,
2915     GstPadMode mode, gboolean active)
2916 {
2917   GstMultiQueue *mq;
2918   GstSingleQueue *sq;
2919   gboolean result;
2920
2921   sq = GST_MULTIQUEUE_PAD (pad)->sq;
2922   mq = g_weak_ref_get (&sq->mqueue);
2923
2924   if (!mq) {
2925     GST_ERROR_OBJECT (pad, "No multiqueue set anymore, can't activate pad");
2926
2927     return FALSE;
2928   }
2929
2930   GST_DEBUG_ID (sq->debug_id, "active: %d", active);
2931
2932   switch (mode) {
2933     case GST_PAD_MODE_PUSH:
2934       if (active) {
2935         gst_single_queue_flush (mq, sq, FALSE, TRUE);
2936         result = parent ? gst_single_queue_start (mq, sq) : TRUE;
2937       } else {
2938         gst_single_queue_flush (mq, sq, TRUE, TRUE);
2939         result = gst_single_queue_stop (mq, sq);
2940       }
2941       break;
2942     default:
2943       result = FALSE;
2944       break;
2945   }
2946   gst_object_unref (mq);
2947   return result;
2948 }
2949
2950 static gboolean
2951 gst_multi_queue_src_event (GstPad * pad, GstObject * parent, GstEvent * event)
2952 {
2953   GstSingleQueue *sq = GST_MULTIQUEUE_PAD (pad)->sq;
2954   GstMultiQueue *mq = g_weak_ref_get (&sq->mqueue);
2955   gboolean ret;
2956   GstPad *sinkpad = g_weak_ref_get (&sq->sinkpad);
2957
2958   if (!mq || !sinkpad) {
2959     gst_clear_object (&sinkpad);
2960     gst_clear_object (&mq);
2961     GST_INFO_OBJECT (pad, "No multique/sinkpad set anymore, flushing");
2962
2963     return FALSE;
2964   }
2965
2966   switch (GST_EVENT_TYPE (event)) {
2967     case GST_EVENT_RECONFIGURE:
2968       GST_MULTI_QUEUE_MUTEX_LOCK (mq);
2969       if (sq->srcresult == GST_FLOW_NOT_LINKED) {
2970         sq->srcresult = GST_FLOW_OK;
2971         g_cond_signal (&sq->turn);
2972       }
2973       GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
2974
2975       ret = gst_pad_push_event (sinkpad, event);
2976       break;
2977     default:
2978       ret = gst_pad_push_event (sinkpad, event);
2979       break;
2980   }
2981
2982   gst_object_unref (sinkpad);
2983   gst_object_unref (mq);
2984
2985   return ret;
2986 }
2987
2988 static gboolean
2989 gst_multi_queue_src_query (GstPad * pad, GstObject * parent, GstQuery * query)
2990 {
2991   gboolean res;
2992
2993   /* FIXME, Handle position offset depending on queue size */
2994   switch (GST_QUERY_TYPE (query)) {
2995     default:
2996       /* default handling */
2997       res = gst_pad_query_default (pad, parent, query);
2998       break;
2999   }
3000   return res;
3001 }
3002
3003 /*
3004  * Next-non-linked functions
3005  */
3006
3007 /* WITH LOCK TAKEN */
3008 static void
3009 wake_up_next_non_linked (GstMultiQueue * mq)
3010 {
3011   GList *tmp;
3012
3013   /* maybe no-one is waiting */
3014   if (mq->numwaiting < 1)
3015     return;
3016
3017   if (mq->sync_by_running_time && GST_CLOCK_STIME_IS_VALID (mq->high_time)) {
3018     /* Else figure out which singlequeue(s) need waking up */
3019     for (tmp = mq->queues; tmp; tmp = tmp->next) {
3020       GstSingleQueue *sq = (GstSingleQueue *) tmp->data;
3021       if (sq->srcresult == GST_FLOW_NOT_LINKED) {
3022         GstClockTimeDiff high_time;
3023
3024         if (GST_CLOCK_STIME_IS_VALID (sq->group_high_time))
3025           high_time = sq->group_high_time;
3026         else
3027           high_time = mq->high_time;
3028
3029         if (GST_CLOCK_STIME_IS_VALID (sq->next_time) &&
3030             GST_CLOCK_STIME_IS_VALID (high_time)
3031             && sq->next_time <= high_time) {
3032           GST_LOG_ID (sq->debug_id, "Waking up singlequeue");
3033           g_cond_signal (&sq->turn);
3034         }
3035       }
3036     }
3037   } else {
3038     /* Else figure out which singlequeue(s) need waking up */
3039     for (tmp = mq->queues; tmp; tmp = tmp->next) {
3040       GstSingleQueue *sq = (GstSingleQueue *) tmp->data;
3041       if (sq->srcresult == GST_FLOW_NOT_LINKED &&
3042           sq->nextid != 0 && sq->nextid <= mq->highid) {
3043         GST_LOG_ID (sq->debug_id, "Waking up singlequeue");
3044         g_cond_signal (&sq->turn);
3045       }
3046     }
3047   }
3048 }
3049
3050 /* WITH LOCK TAKEN */
3051 static void
3052 compute_high_id (GstMultiQueue * mq)
3053 {
3054   /* The high-id is either the highest id among the linked pads, or if all
3055    * pads are not-linked, it's the lowest not-linked pad */
3056   GList *tmp;
3057   guint32 lowest = G_MAXUINT32;
3058   guint32 highid = G_MAXUINT32;
3059
3060   for (tmp = mq->queues; tmp; tmp = g_list_next (tmp)) {
3061     GstSingleQueue *sq = (GstSingleQueue *) tmp->data;
3062     GstPad *srcpad = g_weak_ref_get (&sq->srcpad);
3063
3064     if (!srcpad) {
3065       GST_INFO_OBJECT (mq,
3066           "srcpad has been removed already... ignoring single queue");
3067
3068       continue;
3069     }
3070
3071     GST_LOG_ID (sq->debug_id, "nextid:%d, oldid:%d, srcresult:%s",
3072         sq->nextid, sq->oldid, gst_flow_get_name (sq->srcresult));
3073
3074     /* No need to consider queues which are not waiting */
3075     if (sq->nextid == 0) {
3076       GST_LOG_ID (sq->debug_id, "not waiting - ignoring");
3077       gst_object_unref (srcpad);
3078       continue;
3079     }
3080
3081     if (sq->srcresult == GST_FLOW_NOT_LINKED) {
3082       if (sq->nextid < lowest)
3083         lowest = sq->nextid;
3084     } else if (!GST_PAD_IS_EOS (srcpad) && sq->srcresult != GST_FLOW_EOS) {
3085       /* If we don't have a global highid, or the global highid is lower than
3086        * this single queue's last outputted id, store the queue's one,
3087        * unless the singlequeue output is at EOS */
3088       if ((highid == G_MAXUINT32) || (sq->oldid > highid))
3089         highid = sq->oldid;
3090     }
3091     gst_object_unref (srcpad);
3092   }
3093
3094   if (highid == G_MAXUINT32 || lowest < highid)
3095     mq->highid = lowest;
3096   else
3097     mq->highid = highid;
3098
3099   GST_LOG_OBJECT (mq, "Highid is now : %u, lowest non-linked %u", mq->highid,
3100       lowest);
3101 }
3102
3103 /* WITH LOCK TAKEN */
3104 static void
3105 compute_high_time (GstMultiQueue * mq, guint groupid)
3106 {
3107   /* The high-time is either the highest last time among the linked
3108    * pads, or if all pads are not-linked, it's the lowest nex time of
3109    * not-linked pad */
3110   GList *tmp;
3111   GstClockTimeDiff highest = GST_CLOCK_STIME_NONE;
3112   GstClockTimeDiff lowest = GST_CLOCK_STIME_NONE;
3113   GstClockTimeDiff group_high = GST_CLOCK_STIME_NONE;
3114   GstClockTimeDiff group_low = GST_CLOCK_STIME_NONE;
3115   GstClockTimeDiff res;
3116   /* Number of streams which belong to groupid */
3117   guint group_count = 0;
3118
3119   if (!mq->sync_by_running_time)
3120     /* return GST_CLOCK_STIME_NONE; */
3121     return;
3122
3123   for (tmp = mq->queues; tmp; tmp = tmp->next) {
3124     GstSingleQueue *sq = (GstSingleQueue *) tmp->data;
3125     GstPad *srcpad = g_weak_ref_get (&sq->srcpad);
3126
3127     if (!srcpad) {
3128       GST_INFO_OBJECT (mq,
3129           "srcpad has been removed already... ignoring single queue");
3130
3131       continue;
3132     }
3133
3134     GST_LOG_ID (sq->debug_id,
3135         "inspecting (group:%d) , next_time:%" GST_STIME_FORMAT
3136         ", last_time:%" GST_STIME_FORMAT ", srcresult:%s", sq->groupid,
3137         GST_STIME_ARGS (sq->next_time), GST_STIME_ARGS (sq->last_time),
3138         gst_flow_get_name (sq->srcresult));
3139
3140     if (sq->groupid == groupid)
3141       group_count++;
3142
3143     if (sq->srcresult == GST_FLOW_NOT_LINKED) {
3144       /* No need to consider queues which are not waiting */
3145       if (!GST_CLOCK_STIME_IS_VALID (sq->next_time)) {
3146         GST_LOG_ID (sq->debug_id, "Not waiting - ignoring");
3147         gst_object_unref (srcpad);
3148         continue;
3149       }
3150
3151       if (lowest == GST_CLOCK_STIME_NONE || sq->next_time < lowest)
3152         lowest = sq->next_time;
3153       if (sq->groupid == groupid && (group_low == GST_CLOCK_STIME_NONE
3154               || sq->next_time < group_low))
3155         group_low = sq->next_time;
3156     } else if (!GST_PAD_IS_EOS (srcpad) && sq->srcresult != GST_FLOW_EOS) {
3157       /* If we don't have a global high time, or the global high time
3158        * is lower than this single queue's last outputted time, store
3159        * the queue's one, unless the singlequeue output is at EOS. */
3160       if (highest == GST_CLOCK_STIME_NONE
3161           || (sq->last_time != GST_CLOCK_STIME_NONE && sq->last_time > highest))
3162         highest = sq->last_time;
3163       if (sq->groupid == groupid && (group_high == GST_CLOCK_STIME_NONE
3164               || (sq->last_time != GST_CLOCK_STIME_NONE
3165                   && sq->last_time > group_high)))
3166         group_high = sq->last_time;
3167     }
3168     GST_LOG_OBJECT (mq,
3169         "highest now %" GST_STIME_FORMAT " lowest %" GST_STIME_FORMAT,
3170         GST_STIME_ARGS (highest), GST_STIME_ARGS (lowest));
3171     if (sq->groupid == groupid)
3172       GST_LOG_OBJECT (mq,
3173           "grouphigh %" GST_STIME_FORMAT " grouplow %" GST_STIME_FORMAT,
3174           GST_STIME_ARGS (group_high), GST_STIME_ARGS (group_low));
3175
3176     gst_object_unref (srcpad);
3177   }
3178
3179   if (highest == GST_CLOCK_STIME_NONE)
3180     mq->high_time = lowest;
3181   else
3182     mq->high_time = highest;
3183
3184   /* If there's only one stream of a given type, use the global high */
3185   if (group_count < 2)
3186     res = GST_CLOCK_STIME_NONE;
3187   else if (group_high == GST_CLOCK_STIME_NONE)
3188     res = group_low;
3189   else
3190     res = group_high;
3191
3192   GST_LOG_OBJECT (mq, "group count %d for groupid %u", group_count, groupid);
3193   GST_LOG_OBJECT (mq,
3194       "MQ High time is now : %" GST_STIME_FORMAT ", group %d high time %"
3195       GST_STIME_FORMAT ", lowest non-linked %" GST_STIME_FORMAT,
3196       GST_STIME_ARGS (mq->high_time), groupid, GST_STIME_ARGS (mq->high_time),
3197       GST_STIME_ARGS (lowest));
3198
3199   for (tmp = mq->queues; tmp; tmp = tmp->next) {
3200     GstSingleQueue *sq = (GstSingleQueue *) tmp->data;
3201     if (groupid == sq->groupid)
3202       sq->group_high_time = res;
3203   }
3204 }
3205
3206 #define IS_FILLED(q, format, value) (((q)->max_size.format) != 0 && \
3207      ((q)->max_size.format) <= (value))
3208
3209 /*
3210  * GstSingleQueue functions
3211  */
3212 static void
3213 single_queue_overrun_cb (GstDataQueue * dq, GstSingleQueue * sq)
3214 {
3215   GList *tmp;
3216   GstDataQueueSize size;
3217   gboolean filled = TRUE;
3218   gboolean empty_found = FALSE;
3219   GstMultiQueue *mq = g_weak_ref_get (&sq->mqueue);
3220
3221   if (!mq) {
3222     GST_ERROR ("No multique set anymore, not doing anything");
3223
3224     return;
3225   }
3226
3227   gst_data_queue_get_level (sq->queue, &size);
3228
3229   GST_LOG_ID (sq->debug_id,
3230       "EOS %d, visible %u/%u, bytes %u/%u, time %"
3231       G_GUINT64_FORMAT "/%" G_GUINT64_FORMAT, sq->is_eos, size.visible,
3232       sq->max_size.visible, size.bytes, sq->max_size.bytes, sq->cur_time,
3233       sq->max_size.time);
3234
3235   GST_MULTI_QUEUE_MUTEX_LOCK (mq);
3236
3237   /* check if we reached the hard time/bytes limits;
3238      time limit is only taken into account for non-sparse streams */
3239   if (sq->is_eos || IS_FILLED (sq, bytes, size.bytes) ||
3240       (!sq->is_sparse && IS_FILLED (sq, time, sq->cur_time))) {
3241     goto done;
3242   }
3243
3244   /* Search for empty queues */
3245   for (tmp = mq->queues; tmp; tmp = g_list_next (tmp)) {
3246     GstSingleQueue *oq = (GstSingleQueue *) tmp->data;
3247
3248     if (oq == sq)
3249       continue;
3250
3251     if (oq->srcresult == GST_FLOW_NOT_LINKED) {
3252       GST_LOG_ID (sq->debug_id, "Queue is not-linked");
3253       continue;
3254     }
3255
3256     GST_LOG_ID (oq->debug_id, "Checking queue");
3257     if (gst_data_queue_is_empty (oq->queue) && !oq->is_sparse) {
3258       GST_LOG_ID (oq->debug_id, "Queue is empty");
3259       empty_found = TRUE;
3260       break;
3261     }
3262   }
3263
3264   /* if hard limits are not reached then we allow one more buffer in the full
3265    * queue, but only if any of the other singelqueues are empty */
3266   if (empty_found) {
3267     if (IS_FILLED (sq, visible, size.visible)) {
3268       sq->max_size.visible = size.visible + 1;
3269       GST_DEBUG_ID (sq->debug_id,
3270           "Bumping max visible to %d", sq->max_size.visible);
3271       filled = FALSE;
3272     }
3273   }
3274
3275 done:
3276   GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
3277   gst_object_unref (mq);
3278
3279   /* Overrun is always forwarded, since this is blocking the upstream element */
3280   if (filled) {
3281     GST_DEBUG_ID (sq->debug_id, "Queue is filled, signalling overrun");
3282     g_signal_emit (mq, gst_multi_queue_signals[SIGNAL_OVERRUN], 0);
3283   }
3284 }
3285
3286 static void
3287 single_queue_underrun_cb (GstDataQueue * dq, GstSingleQueue * sq)
3288 {
3289   gboolean empty = TRUE;
3290   GstMultiQueue *mq = g_weak_ref_get (&sq->mqueue);
3291   GList *tmp;
3292
3293   if (!mq) {
3294     GST_ERROR ("No multique set anymore, not doing anything");
3295
3296     return;
3297   }
3298
3299   if (sq->srcresult == GST_FLOW_NOT_LINKED) {
3300     GST_LOG_ID (sq->debug_id, "Single Queue is empty but not-linked");
3301     gst_object_unref (mq);
3302     return;
3303   } else {
3304     GST_LOG_ID (sq->debug_id,
3305         "Single Queue is empty, Checking other single queues");
3306   }
3307
3308   GST_MULTI_QUEUE_MUTEX_LOCK (mq);
3309   for (tmp = mq->queues; tmp; tmp = g_list_next (tmp)) {
3310     GstSingleQueue *oq = (GstSingleQueue *) tmp->data;
3311
3312     if (gst_data_queue_is_full (oq->queue)) {
3313       GstDataQueueSize size;
3314
3315       gst_data_queue_get_level (oq->queue, &size);
3316       if (IS_FILLED (oq, visible, size.visible)) {
3317         oq->max_size.visible = size.visible + 1;
3318         GST_DEBUG_ID (oq->debug_id,
3319             "queue is filled, bumping its max visible to %d",
3320             oq->max_size.visible);
3321         gst_data_queue_limits_changed (oq->queue);
3322       }
3323     }
3324     if (!gst_data_queue_is_empty (oq->queue) || oq->is_sparse)
3325       empty = FALSE;
3326   }
3327   GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
3328   gst_object_unref (mq);
3329
3330   if (empty) {
3331     GST_DEBUG_OBJECT (mq, "All queues are empty, signalling it");
3332     g_signal_emit (mq, gst_multi_queue_signals[SIGNAL_UNDERRUN], 0);
3333   }
3334 }
3335
3336 static gboolean
3337 single_queue_check_full (GstDataQueue * dataq, guint visible, guint bytes,
3338     guint64 time, GstSingleQueue * sq)
3339 {
3340   gboolean res;
3341   GstMultiQueue *mq = g_weak_ref_get (&sq->mqueue);
3342
3343   if (!mq) {
3344     GST_ERROR ("No multique set anymore, let's say we are full");
3345
3346     return TRUE;
3347   }
3348
3349   GST_DEBUG_ID (sq->debug_id,
3350       "visible %u/%u, bytes %u/%u, time %" G_GUINT64_FORMAT "/%"
3351       G_GUINT64_FORMAT, visible, sq->max_size.visible, bytes,
3352       sq->max_size.bytes, sq->cur_time, sq->max_size.time);
3353
3354   /* we are always filled on EOS */
3355   if (sq->is_eos || sq->is_segment_done) {
3356     res = TRUE;
3357     goto done;
3358   }
3359
3360   /* we never go past the max visible items unless we are in buffering mode */
3361   if (!mq->use_buffering && IS_FILLED (sq, visible, visible)) {
3362     res = TRUE;
3363     goto done;
3364   }
3365
3366   /* check time or bytes */
3367   res = IS_FILLED (sq, bytes, bytes);
3368   /* We only care about limits in time if we're not a sparse stream or
3369    * we're not syncing by running time */
3370   if (!sq->is_sparse || !mq->sync_by_running_time) {
3371     /* If unlinked, take into account the extra unlinked cache time */
3372     if (mq->sync_by_running_time && sq->srcresult == GST_FLOW_NOT_LINKED) {
3373       if (sq->cur_time > mq->unlinked_cache_time)
3374         res |= IS_FILLED (sq, time, sq->cur_time - mq->unlinked_cache_time);
3375       else
3376         res = FALSE;
3377     } else
3378       res |= IS_FILLED (sq, time, sq->cur_time);
3379   }
3380 done:
3381   gst_object_unref (mq);
3382
3383   return res;
3384 }
3385
3386 static void
3387 gst_single_queue_flush_queue (GstSingleQueue * sq, gboolean full)
3388 {
3389   GstDataQueueItem *sitem;
3390   GstMultiQueueItem *mitem;
3391   gboolean was_flushing = FALSE;
3392   GstPad *srcpad = g_weak_ref_get (&sq->srcpad);
3393   GstMultiQueue *mq = g_weak_ref_get (&sq->mqueue);
3394
3395   while (!gst_data_queue_is_empty (sq->queue)) {
3396     GstMiniObject *data;
3397
3398     /* FIXME: If this fails here although the queue is not empty,
3399      * we're flushing... but we want to rescue all sticky
3400      * events nonetheless.
3401      */
3402     if (!gst_data_queue_pop (sq->queue, &sitem)) {
3403       was_flushing = TRUE;
3404       gst_data_queue_set_flushing (sq->queue, FALSE);
3405       continue;
3406     }
3407
3408     mitem = (GstMultiQueueItem *) sitem;
3409
3410     data = sitem->object;
3411
3412     if (!full && !mitem->is_query && GST_IS_EVENT (data)
3413         && srcpad && GST_EVENT_IS_STICKY (data)
3414         && GST_EVENT_TYPE (data) != GST_EVENT_SEGMENT
3415         && GST_EVENT_TYPE (data) != GST_EVENT_EOS) {
3416       gst_pad_store_sticky_event (srcpad, GST_EVENT_CAST (data));
3417     }
3418
3419     sitem->destroy (sitem);
3420   }
3421   gst_clear_object (&srcpad);
3422
3423   gst_data_queue_flush (sq->queue);
3424   if (was_flushing)
3425     gst_data_queue_set_flushing (sq->queue, TRUE);
3426
3427   if (mq) {
3428     GST_MULTI_QUEUE_MUTEX_LOCK (mq);
3429     update_buffering (mq, sq);
3430     GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
3431     gst_multi_queue_post_buffering (mq);
3432     gst_object_unref (mq);
3433   }
3434 }
3435
3436 static void
3437 gst_single_queue_unref (GstSingleQueue * sq)
3438 {
3439   if (g_atomic_int_dec_and_test (&sq->refcount)) {
3440     /* DRAIN QUEUE */
3441     gst_data_queue_flush (sq->queue);
3442     g_object_unref (sq->queue);
3443     g_cond_clear (&sq->turn);
3444     g_cond_clear (&sq->query_handled);
3445     g_weak_ref_clear (&sq->sinkpad);
3446     g_weak_ref_clear (&sq->srcpad);
3447     g_weak_ref_clear (&sq->mqueue);
3448 #ifndef GST_DISABLE_GST_DEBUG
3449     g_free (sq->debug_id);
3450 #endif
3451     g_free (sq);
3452   }
3453 }
3454
3455
3456 static GstSingleQueue *
3457 gst_single_queue_ref (GstSingleQueue * squeue)
3458 {
3459   g_atomic_int_inc (&squeue->refcount);
3460
3461   return squeue;
3462 }
3463
3464 static GstSingleQueue *
3465 gst_single_queue_new (GstMultiQueue * mqueue, guint id)
3466 {
3467   GstPad *srcpad, *sinkpad;
3468   GstSingleQueue *sq;
3469   GstPadTemplate *templ;
3470   gchar *name;
3471   GList *tmp;
3472   guint temp_id = (id == -1) ? 0 : id;
3473
3474   GST_MULTI_QUEUE_MUTEX_LOCK (mqueue);
3475
3476   /* Find an unused queue ID, if possible the passed one */
3477   for (tmp = mqueue->queues; tmp; tmp = g_list_next (tmp)) {
3478     GstSingleQueue *sq2 = (GstSingleQueue *) tmp->data;
3479     /* This works because the IDs are sorted in ascending order */
3480     if (sq2->id == temp_id) {
3481       /* If this ID was requested by the caller return NULL,
3482        * otherwise just get us the next one */
3483       if (id == -1) {
3484         temp_id = sq2->id + 1;
3485       } else {
3486         GST_MULTI_QUEUE_MUTEX_UNLOCK (mqueue);
3487         return NULL;
3488       }
3489     } else if (sq2->id > temp_id) {
3490       break;
3491     }
3492   }
3493
3494   sq = g_new0 (GstSingleQueue, 1);
3495   g_atomic_int_set (&sq->refcount, 1);
3496
3497   mqueue->nbqueues++;
3498   sq->id = temp_id;
3499 #ifndef GST_DISABLE_GST_DEBUG
3500   sq->debug_id =
3501       g_strdup_printf ("%s:queue_%d", GST_OBJECT_NAME (mqueue), temp_id);
3502 #endif
3503   sq->groupid = DEFAULT_PAD_GROUP_ID;
3504   sq->group_high_time = GST_CLOCK_STIME_NONE;
3505
3506   mqueue->queues = g_list_insert_before (mqueue->queues, tmp, sq);
3507   mqueue->queues_cookie++;
3508
3509   /* copy over max_size and extra_size so we don't need to take the lock
3510    * any longer when checking if the queue is full. */
3511   sq->max_size.visible = mqueue->max_size.visible;
3512   sq->max_size.bytes = mqueue->max_size.bytes;
3513   sq->max_size.time = mqueue->max_size.time;
3514
3515   sq->extra_size.visible = mqueue->extra_size.visible;
3516   sq->extra_size.bytes = mqueue->extra_size.bytes;
3517   sq->extra_size.time = mqueue->extra_size.time;
3518
3519   GST_DEBUG_OBJECT (mqueue, "Creating GstSingleQueue id:%d", sq->id);
3520
3521   g_weak_ref_init (&sq->mqueue, mqueue);
3522   sq->srcresult = GST_FLOW_FLUSHING;
3523   sq->pushed = FALSE;
3524   sq->queue = gst_data_queue_new ((GstDataQueueCheckFullFunction)
3525       single_queue_check_full,
3526       (GstDataQueueFullCallback) single_queue_overrun_cb,
3527       (GstDataQueueEmptyCallback) single_queue_underrun_cb, sq);
3528   sq->is_eos = FALSE;
3529   sq->is_sparse = FALSE;
3530   sq->flushing = FALSE;
3531   sq->active = FALSE;
3532   gst_segment_init (&sq->sink_segment, GST_FORMAT_TIME);
3533   gst_segment_init (&sq->src_segment, GST_FORMAT_TIME);
3534
3535   sq->nextid = 0;
3536   sq->oldid = 0;
3537   sq->next_time = GST_CLOCK_STIME_NONE;
3538   sq->last_time = GST_CLOCK_STIME_NONE;
3539   g_cond_init (&sq->turn);
3540   g_cond_init (&sq->query_handled);
3541
3542   sq->sinktime = GST_CLOCK_STIME_NONE;
3543   sq->srctime = GST_CLOCK_STIME_NONE;
3544   sq->sink_tainted = TRUE;
3545   sq->src_tainted = TRUE;
3546
3547   sq->sink_stream_gid = sq->src_stream_gid = GST_GROUP_ID_INVALID;
3548   sq->sink_stream_gid_changed = FALSE;
3549   sq->src_stream_gid_changed = FALSE;
3550
3551   name = g_strdup_printf ("sink_%u", sq->id);
3552   templ = gst_static_pad_template_get (&sinktemplate);
3553   sinkpad = g_object_new (GST_TYPE_MULTIQUEUE_PAD, "name", name,
3554       "direction", templ->direction, "template", templ, NULL);
3555   g_weak_ref_init (&sq->sinkpad, sinkpad);
3556   gst_object_unref (templ);
3557   g_free (name);
3558
3559   GST_MULTIQUEUE_PAD (sinkpad)->sq = sq;
3560
3561   gst_pad_set_chain_function (sinkpad,
3562       GST_DEBUG_FUNCPTR (gst_multi_queue_chain));
3563   gst_pad_set_activatemode_function (sinkpad,
3564       GST_DEBUG_FUNCPTR (gst_multi_queue_sink_activate_mode));
3565   gst_pad_set_event_full_function (sinkpad,
3566       GST_DEBUG_FUNCPTR (gst_multi_queue_sink_event));
3567   gst_pad_set_query_function (sinkpad,
3568       GST_DEBUG_FUNCPTR (gst_multi_queue_sink_query));
3569   gst_pad_set_iterate_internal_links_function (sinkpad,
3570       GST_DEBUG_FUNCPTR (gst_multi_queue_iterate_internal_links));
3571   GST_OBJECT_FLAG_SET (sinkpad, GST_PAD_FLAG_PROXY_CAPS);
3572
3573   name = g_strdup_printf ("src_%u", sq->id);
3574   templ = gst_static_pad_template_get (&srctemplate);
3575   srcpad = g_object_new (GST_TYPE_MULTIQUEUE_PAD, "name", name,
3576       "direction", templ->direction, "template", templ, NULL);
3577   g_weak_ref_init (&sq->srcpad, srcpad);
3578   gst_object_unref (templ);
3579   g_free (name);
3580
3581   GST_MULTIQUEUE_PAD (srcpad)->sq = gst_single_queue_ref (sq);
3582
3583   gst_pad_set_activatemode_function (srcpad,
3584       GST_DEBUG_FUNCPTR (gst_multi_queue_src_activate_mode));
3585   gst_pad_set_event_function (srcpad,
3586       GST_DEBUG_FUNCPTR (gst_multi_queue_src_event));
3587   gst_pad_set_query_function (srcpad,
3588       GST_DEBUG_FUNCPTR (gst_multi_queue_src_query));
3589   gst_pad_set_iterate_internal_links_function (srcpad,
3590       GST_DEBUG_FUNCPTR (gst_multi_queue_iterate_internal_links));
3591   GST_OBJECT_FLAG_SET (srcpad, GST_PAD_FLAG_PROXY_CAPS);
3592
3593   GST_MULTI_QUEUE_MUTEX_UNLOCK (mqueue);
3594
3595   /* only activate the pads when we are not in the NULL state
3596    * and add the pad under the state_lock to prevent state changes
3597    * between activating and adding */
3598   g_rec_mutex_lock (GST_STATE_GET_LOCK (mqueue));
3599   if (GST_STATE_TARGET (mqueue) != GST_STATE_NULL) {
3600     gst_pad_set_active (srcpad, TRUE);
3601     gst_pad_set_active (sinkpad, TRUE);
3602   }
3603   gst_element_add_pad (GST_ELEMENT (mqueue), srcpad);
3604   gst_element_add_pad (GST_ELEMENT (mqueue), sinkpad);
3605   if (GST_STATE_TARGET (mqueue) != GST_STATE_NULL) {
3606     gst_single_queue_start (mqueue, sq);
3607   }
3608   g_rec_mutex_unlock (GST_STATE_GET_LOCK (mqueue));
3609
3610   GST_DEBUG_ID (sq->debug_id, "GstSingleQueue created and pads added");
3611
3612   return sq;
3613 }