multiqueue: post 100% buffering if single queue is not linked
[platform/upstream/gstreamer.git] / 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  * @see_also: #GstQueue
28  *
29  * <refsect2>
30  * <para>
31  * Multiqueue is similar to a normal #GstQueue with the following additional
32  * features:
33  * <orderedlist>
34  * <listitem>
35  *   <itemizedlist><title>Multiple streamhandling</title>
36  *   <listitem><para>
37  *     The element handles queueing data on more than one stream at once. To
38  *     achieve such a feature it has request sink pads (sink&percnt;d) and
39  *     'sometimes' src pads (src&percnt;d).
40  *   </para><para>
41  *     When requesting a given sinkpad with gst_element_get_request_pad(),
42  *     the associated srcpad for that stream will be created.
43  *     Example: requesting sink1 will generate src1.
44  *   </para></listitem>
45  *   </itemizedlist>
46  * </listitem>
47  * <listitem>
48  *   <itemizedlist><title>Non-starvation on multiple streams</title>
49  *   <listitem><para>
50  *     If more than one stream is used with the element, the streams' queues
51  *     will be dynamically grown (up to a limit), in order to ensure that no
52  *     stream is risking data starvation. This guarantees that at any given
53  *     time there are at least N bytes queued and available for each individual
54  *     stream.
55  *   </para><para>
56  *     If an EOS event comes through a srcpad, the associated queue will be
57  *     considered as 'not-empty' in the queue-size-growing algorithm.
58  *   </para></listitem>
59  *   </itemizedlist>
60  * </listitem>
61  * <listitem>
62  *   <itemizedlist><title>Non-linked srcpads graceful handling</title>
63  *   <listitem><para>
64  *     In order to better support dynamic switching between streams, the multiqueue
65  *     (unlike the current GStreamer queue) continues to push buffers on non-linked
66  *     pads rather than shutting down.
67  *   </para><para>
68  *     In addition, to prevent a non-linked stream from very quickly consuming all
69  *     available buffers and thus 'racing ahead' of the other streams, the element
70  *     must ensure that buffers and inlined events for a non-linked stream are pushed
71  *     in the same order as they were received, relative to the other streams
72  *     controlled by the element. This means that a buffer cannot be pushed to a
73  *     non-linked pad any sooner than buffers in any other stream which were received
74  *     before it.
75  *   </para></listitem>
76  *   </itemizedlist>
77  * </listitem>
78  * </orderedlist>
79  * </para>
80  * <para>
81  *   Data is queued until one of the limits specified by the
82  *   #GstMultiQueue:max-size-buffers, #GstMultiQueue:max-size-bytes and/or
83  *   #GstMultiQueue:max-size-time properties has been reached. Any attempt to push
84  *   more buffers into the queue will block the pushing thread until more space
85  *   becomes available. #GstMultiQueue:extra-size-buffers,
86  * </para>
87  * <para>
88  *   #GstMultiQueue:extra-size-bytes and #GstMultiQueue:extra-size-time are
89  *   currently unused.
90  * </para>
91  * <para>
92  *   The default queue size limits are 5 buffers, 10MB of data, or
93  *   two second worth of data, whichever is reached first. Note that the number
94  *   of buffers will dynamically grow depending on the fill level of 
95  *   other queues.
96  * </para>
97  * <para>
98  *   The #GstMultiQueue::underrun signal is emitted when all of the queues
99  *   are empty. The #GstMultiQueue::overrun signal is emitted when one of the
100  *   queues is filled.
101  *   Both signals are emitted from the context of the streaming thread.
102  * </para>
103  * </refsect2>
104  *
105  * Last reviewed on 2008-01-25 (0.10.17)
106  */
107
108 #ifdef HAVE_CONFIG_H
109 #  include "config.h"
110 #endif
111
112 #include <gst/gst.h>
113 #include <stdio.h>
114 #include "gstmultiqueue.h"
115 #include <gst/glib-compat-private.h>
116
117 /**
118  * GstSingleQueue:
119  * @sinkpad: associated sink #GstPad
120  * @srcpad: associated source #GstPad
121  *
122  * Structure containing all information and properties about
123  * a single queue.
124  */
125 typedef struct _GstSingleQueue GstSingleQueue;
126
127 struct _GstSingleQueue
128 {
129   /* unique identifier of the queue */
130   guint id;
131
132   GstMultiQueue *mqueue;
133
134   GstPad *sinkpad;
135   GstPad *srcpad;
136
137   /* flowreturn of previous srcpad push */
138   GstFlowReturn srcresult;
139   /* If something was actually pushed on
140    * this pad after flushing/pad activation
141    * and the srcresult corresponds to something
142    * real
143    */
144   gboolean pushed;
145
146   /* segments */
147   GstSegment sink_segment;
148   GstSegment src_segment;
149
150   /* position of src/sink */
151   GstClockTime sinktime, srctime;
152   /* TRUE if either position needs to be recalculated */
153   gboolean sink_tainted, src_tainted;
154
155   /* queue of data */
156   GstDataQueue *queue;
157   GstDataQueueSize max_size, extra_size;
158   GstClockTime cur_time;
159   gboolean is_eos;
160   gboolean flushing;
161
162   /* Protected by global lock */
163   guint32 nextid;               /* ID of the next object waiting to be pushed */
164   guint32 oldid;                /* ID of the last object pushed (last in a series) */
165   guint32 last_oldid;           /* Previously observed old_id, reset to MAXUINT32 on flush */
166   GstClockTime next_time;       /* End running time of next buffer to be pushed */
167   GstClockTime last_time;       /* Start running time of last pushed buffer */
168   GCond turn;                   /* SingleQueue turn waiting conditional */
169
170   /* for serialized queries */
171   GCond query_handled;
172   gboolean last_query;
173 };
174
175
176 /* Extension of GstDataQueueItem structure for our usage */
177 typedef struct _GstMultiQueueItem GstMultiQueueItem;
178
179 struct _GstMultiQueueItem
180 {
181   GstMiniObject *object;
182   guint size;
183   guint64 duration;
184   gboolean visible;
185
186   GDestroyNotify destroy;
187   guint32 posid;
188
189   gboolean is_query;
190 };
191
192 static GstSingleQueue *gst_single_queue_new (GstMultiQueue * mqueue, guint id);
193 static void gst_single_queue_free (GstSingleQueue * squeue);
194
195 static void wake_up_next_non_linked (GstMultiQueue * mq);
196 static void compute_high_id (GstMultiQueue * mq);
197 static void compute_high_time (GstMultiQueue * mq);
198 static void single_queue_overrun_cb (GstDataQueue * dq, GstSingleQueue * sq);
199 static void single_queue_underrun_cb (GstDataQueue * dq, GstSingleQueue * sq);
200
201 static void gst_single_queue_flush_queue (GstSingleQueue * sq, gboolean full);
202
203 static GstStaticPadTemplate sinktemplate = GST_STATIC_PAD_TEMPLATE ("sink_%u",
204     GST_PAD_SINK,
205     GST_PAD_REQUEST,
206     GST_STATIC_CAPS_ANY);
207
208 static GstStaticPadTemplate srctemplate = GST_STATIC_PAD_TEMPLATE ("src_%u",
209     GST_PAD_SRC,
210     GST_PAD_SOMETIMES,
211     GST_STATIC_CAPS_ANY);
212
213 GST_DEBUG_CATEGORY_STATIC (multi_queue_debug);
214 #define GST_CAT_DEFAULT (multi_queue_debug)
215
216 /* Signals and args */
217 enum
218 {
219   SIGNAL_UNDERRUN,
220   SIGNAL_OVERRUN,
221   LAST_SIGNAL
222 };
223
224 /* default limits, we try to keep up to 2 seconds of data and if there is not
225  * time, up to 10 MB. The number of buffers is dynamically scaled to make sure
226  * there is data in the queues. Normally, the byte and time limits are not hit
227  * in theses conditions. */
228 #define DEFAULT_MAX_SIZE_BYTES 10 * 1024 * 1024 /* 10 MB */
229 #define DEFAULT_MAX_SIZE_BUFFERS 5
230 #define DEFAULT_MAX_SIZE_TIME 2 * GST_SECOND
231
232 /* second limits. When we hit one of the above limits we are probably dealing
233  * with a badly muxed file and we scale the limits to these emergency values.
234  * This is currently not yet implemented.
235  * Since we dynamically scale the queue buffer size up to the limits but avoid
236  * going above the max-size-buffers when we can, we don't really need this
237  * aditional extra size. */
238 #define DEFAULT_EXTRA_SIZE_BYTES 10 * 1024 * 1024       /* 10 MB */
239 #define DEFAULT_EXTRA_SIZE_BUFFERS 5
240 #define DEFAULT_EXTRA_SIZE_TIME 3 * GST_SECOND
241
242 #define DEFAULT_USE_BUFFERING FALSE
243 #define DEFAULT_LOW_PERCENT   10
244 #define DEFAULT_HIGH_PERCENT  99
245 #define DEFAULT_SYNC_BY_RUNNING_TIME FALSE
246
247 enum
248 {
249   PROP_0,
250   PROP_EXTRA_SIZE_BYTES,
251   PROP_EXTRA_SIZE_BUFFERS,
252   PROP_EXTRA_SIZE_TIME,
253   PROP_MAX_SIZE_BYTES,
254   PROP_MAX_SIZE_BUFFERS,
255   PROP_MAX_SIZE_TIME,
256   PROP_USE_BUFFERING,
257   PROP_LOW_PERCENT,
258   PROP_HIGH_PERCENT,
259   PROP_SYNC_BY_RUNNING_TIME,
260   PROP_LAST
261 };
262
263 #define GST_MULTI_QUEUE_MUTEX_LOCK(q) G_STMT_START {                          \
264   g_mutex_lock (&q->qlock);                                              \
265 } G_STMT_END
266
267 #define GST_MULTI_QUEUE_MUTEX_UNLOCK(q) G_STMT_START {                        \
268   g_mutex_unlock (&q->qlock);                                            \
269 } G_STMT_END
270
271 static void gst_multi_queue_finalize (GObject * object);
272 static void gst_multi_queue_set_property (GObject * object,
273     guint prop_id, const GValue * value, GParamSpec * pspec);
274 static void gst_multi_queue_get_property (GObject * object,
275     guint prop_id, GValue * value, GParamSpec * pspec);
276
277 static GstPad *gst_multi_queue_request_new_pad (GstElement * element,
278     GstPadTemplate * temp, const gchar * name, const GstCaps * caps);
279 static void gst_multi_queue_release_pad (GstElement * element, GstPad * pad);
280 static GstStateChangeReturn gst_multi_queue_change_state (GstElement *
281     element, GstStateChange transition);
282
283 static void gst_multi_queue_loop (GstPad * pad);
284
285 #define _do_init \
286   GST_DEBUG_CATEGORY_INIT (multi_queue_debug, "multiqueue", 0, "multiqueue element");
287 #define gst_multi_queue_parent_class parent_class
288 G_DEFINE_TYPE_WITH_CODE (GstMultiQueue, gst_multi_queue, GST_TYPE_ELEMENT,
289     _do_init);
290
291 static guint gst_multi_queue_signals[LAST_SIGNAL] = { 0 };
292
293 static void
294 gst_multi_queue_class_init (GstMultiQueueClass * klass)
295 {
296   GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
297   GstElementClass *gstelement_class = GST_ELEMENT_CLASS (klass);
298
299   gobject_class->set_property = gst_multi_queue_set_property;
300   gobject_class->get_property = gst_multi_queue_get_property;
301
302   /* SIGNALS */
303
304   /**
305    * GstMultiQueue::underrun:
306    * @multiqueue: the multiqueue instance
307    *
308    * This signal is emitted from the streaming thread when there is
309    * no data in any of the queues inside the multiqueue instance (underrun).
310    *
311    * This indicates either starvation or EOS from the upstream data sources.
312    */
313   gst_multi_queue_signals[SIGNAL_UNDERRUN] =
314       g_signal_new ("underrun", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_FIRST,
315       G_STRUCT_OFFSET (GstMultiQueueClass, underrun), NULL, NULL,
316       g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0);
317
318   /**
319    * GstMultiQueue::overrun:
320    * @multiqueue: the multiqueue instance
321    *
322    * Reports that one of the queues in the multiqueue is full (overrun).
323    * A queue is full if the total amount of data inside it (num-buffers, time,
324    * size) is higher than the boundary values which can be set through the
325    * GObject properties.
326    *
327    * This can be used as an indicator of pre-roll. 
328    */
329   gst_multi_queue_signals[SIGNAL_OVERRUN] =
330       g_signal_new ("overrun", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_FIRST,
331       G_STRUCT_OFFSET (GstMultiQueueClass, overrun), NULL, NULL,
332       g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0);
333
334   /* PROPERTIES */
335
336   g_object_class_install_property (gobject_class, PROP_MAX_SIZE_BYTES,
337       g_param_spec_uint ("max-size-bytes", "Max. size (kB)",
338           "Max. amount of data in the queue (bytes, 0=disable)",
339           0, G_MAXUINT, DEFAULT_MAX_SIZE_BYTES,
340           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
341   g_object_class_install_property (gobject_class, PROP_MAX_SIZE_BUFFERS,
342       g_param_spec_uint ("max-size-buffers", "Max. size (buffers)",
343           "Max. number of buffers in the queue (0=disable)", 0, G_MAXUINT,
344           DEFAULT_MAX_SIZE_BUFFERS,
345           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
346   g_object_class_install_property (gobject_class, PROP_MAX_SIZE_TIME,
347       g_param_spec_uint64 ("max-size-time", "Max. size (ns)",
348           "Max. amount of data in the queue (in ns, 0=disable)", 0, G_MAXUINT64,
349           DEFAULT_MAX_SIZE_TIME, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
350
351   g_object_class_install_property (gobject_class, PROP_EXTRA_SIZE_BYTES,
352       g_param_spec_uint ("extra-size-bytes", "Extra Size (kB)",
353           "Amount of data the queues can grow if one of them is empty (bytes, 0=disable)"
354           " (NOT IMPLEMENTED)",
355           0, G_MAXUINT, DEFAULT_EXTRA_SIZE_BYTES,
356           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
357   g_object_class_install_property (gobject_class, PROP_EXTRA_SIZE_BUFFERS,
358       g_param_spec_uint ("extra-size-buffers", "Extra Size (buffers)",
359           "Amount of buffers the queues can grow if one of them is empty (0=disable)"
360           " (NOT IMPLEMENTED)",
361           0, G_MAXUINT, DEFAULT_EXTRA_SIZE_BUFFERS,
362           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
363   g_object_class_install_property (gobject_class, PROP_EXTRA_SIZE_TIME,
364       g_param_spec_uint64 ("extra-size-time", "Extra Size (ns)",
365           "Amount of time the queues can grow if one of them is empty (in ns, 0=disable)"
366           " (NOT IMPLEMENTED)",
367           0, G_MAXUINT64, DEFAULT_EXTRA_SIZE_TIME,
368           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
369
370   /**
371    * GstMultiQueue:use-buffering
372    * 
373    * Enable the buffering option in multiqueue so that BUFFERING messages are
374    * emitted based on low-/high-percent thresholds.
375    */
376   g_object_class_install_property (gobject_class, PROP_USE_BUFFERING,
377       g_param_spec_boolean ("use-buffering", "Use buffering",
378           "Emit GST_MESSAGE_BUFFERING based on low-/high-percent thresholds",
379           DEFAULT_USE_BUFFERING, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
380   /**
381    * GstMultiQueue:low-percent
382    * 
383    * Low threshold percent for buffering to start.
384    */
385   g_object_class_install_property (gobject_class, PROP_LOW_PERCENT,
386       g_param_spec_int ("low-percent", "Low percent",
387           "Low threshold for buffering to start", 0, 100,
388           DEFAULT_LOW_PERCENT, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
389   /**
390    * GstMultiQueue:high-percent
391    * 
392    * High threshold percent for buffering to finish.
393    */
394   g_object_class_install_property (gobject_class, PROP_HIGH_PERCENT,
395       g_param_spec_int ("high-percent", "High percent",
396           "High threshold for buffering to finish", 0, 100,
397           DEFAULT_HIGH_PERCENT, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
398
399   /**
400    * GstMultiQueue:sync-by-running-time
401    * 
402    * If enabled multiqueue will synchronize deactivated or not-linked streams
403    * to the activated and linked streams by taking the running time.
404    * Otherwise multiqueue will synchronize the deactivated or not-linked
405    * streams by keeping the order in which buffers and events arrived compared
406    * to active and linked streams.
407    */
408   g_object_class_install_property (gobject_class, PROP_SYNC_BY_RUNNING_TIME,
409       g_param_spec_boolean ("sync-by-running-time", "Sync By Running Time",
410           "Synchronize deactivated or not-linked streams by running time",
411           DEFAULT_SYNC_BY_RUNNING_TIME,
412           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
413
414   gobject_class->finalize = gst_multi_queue_finalize;
415
416   gst_element_class_set_static_metadata (gstelement_class,
417       "MultiQueue",
418       "Generic", "Multiple data queue", "Edward Hervey <edward@fluendo.com>");
419   gst_element_class_add_pad_template (gstelement_class,
420       gst_static_pad_template_get (&sinktemplate));
421   gst_element_class_add_pad_template (gstelement_class,
422       gst_static_pad_template_get (&srctemplate));
423
424   gstelement_class->request_new_pad =
425       GST_DEBUG_FUNCPTR (gst_multi_queue_request_new_pad);
426   gstelement_class->release_pad =
427       GST_DEBUG_FUNCPTR (gst_multi_queue_release_pad);
428   gstelement_class->change_state =
429       GST_DEBUG_FUNCPTR (gst_multi_queue_change_state);
430 }
431
432 static void
433 gst_multi_queue_init (GstMultiQueue * mqueue)
434 {
435   mqueue->nbqueues = 0;
436   mqueue->queues = NULL;
437
438   mqueue->max_size.bytes = DEFAULT_MAX_SIZE_BYTES;
439   mqueue->max_size.visible = DEFAULT_MAX_SIZE_BUFFERS;
440   mqueue->max_size.time = DEFAULT_MAX_SIZE_TIME;
441
442   mqueue->extra_size.bytes = DEFAULT_EXTRA_SIZE_BYTES;
443   mqueue->extra_size.visible = DEFAULT_EXTRA_SIZE_BUFFERS;
444   mqueue->extra_size.time = DEFAULT_EXTRA_SIZE_TIME;
445
446   mqueue->use_buffering = DEFAULT_USE_BUFFERING;
447   mqueue->low_percent = DEFAULT_LOW_PERCENT;
448   mqueue->high_percent = DEFAULT_HIGH_PERCENT;
449
450   mqueue->sync_by_running_time = DEFAULT_SYNC_BY_RUNNING_TIME;
451
452   mqueue->counter = 1;
453   mqueue->highid = -1;
454   mqueue->high_time = GST_CLOCK_TIME_NONE;
455
456   g_mutex_init (&mqueue->qlock);
457 }
458
459 static void
460 gst_multi_queue_finalize (GObject * object)
461 {
462   GstMultiQueue *mqueue = GST_MULTI_QUEUE (object);
463
464   g_list_foreach (mqueue->queues, (GFunc) gst_single_queue_free, NULL);
465   g_list_free (mqueue->queues);
466   mqueue->queues = NULL;
467   mqueue->queues_cookie++;
468
469   /* free/unref instance data */
470   g_mutex_clear (&mqueue->qlock);
471
472   G_OBJECT_CLASS (parent_class)->finalize (object);
473 }
474
475 #define SET_CHILD_PROPERTY(mq,format) G_STMT_START {            \
476     GList * tmp = mq->queues;                                   \
477     while (tmp) {                                               \
478       GstSingleQueue *q = (GstSingleQueue*)tmp->data;           \
479       q->max_size.format = mq->max_size.format;                 \
480       tmp = g_list_next(tmp);                                   \
481     };                                                          \
482 } G_STMT_END
483
484 static void
485 gst_multi_queue_set_property (GObject * object, guint prop_id,
486     const GValue * value, GParamSpec * pspec)
487 {
488   GstMultiQueue *mq = GST_MULTI_QUEUE (object);
489
490   switch (prop_id) {
491     case PROP_MAX_SIZE_BYTES:
492       GST_MULTI_QUEUE_MUTEX_LOCK (mq);
493       mq->max_size.bytes = g_value_get_uint (value);
494       SET_CHILD_PROPERTY (mq, bytes);
495       GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
496       break;
497     case PROP_MAX_SIZE_BUFFERS:
498     {
499       GList *tmp;
500       gint new_size = g_value_get_uint (value);
501
502       GST_MULTI_QUEUE_MUTEX_LOCK (mq);
503
504       tmp = mq->queues;
505       while (tmp) {
506         GstDataQueueSize size;
507         GstSingleQueue *q = (GstSingleQueue *) tmp->data;
508         gst_data_queue_get_level (q->queue, &size);
509
510         /* do not reduce max size below current level if the single queue has grown because of empty queue */
511         if (new_size >= size.visible && size.visible <= mq->max_size.visible)
512           q->max_size.visible = new_size;
513         tmp = g_list_next (tmp);
514       };
515
516       mq->max_size.visible = new_size;
517
518       GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
519
520       break;
521     }
522     case PROP_MAX_SIZE_TIME:
523       GST_MULTI_QUEUE_MUTEX_LOCK (mq);
524       mq->max_size.time = g_value_get_uint64 (value);
525       SET_CHILD_PROPERTY (mq, time);
526       GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
527       break;
528     case PROP_EXTRA_SIZE_BYTES:
529       mq->extra_size.bytes = g_value_get_uint (value);
530       break;
531     case PROP_EXTRA_SIZE_BUFFERS:
532       mq->extra_size.visible = g_value_get_uint (value);
533       break;
534     case PROP_EXTRA_SIZE_TIME:
535       mq->extra_size.time = g_value_get_uint64 (value);
536       break;
537     case PROP_USE_BUFFERING:
538       mq->use_buffering = g_value_get_boolean (value);
539       break;
540     case PROP_LOW_PERCENT:
541       mq->low_percent = g_value_get_int (value);
542       break;
543     case PROP_HIGH_PERCENT:
544       mq->high_percent = g_value_get_int (value);
545       break;
546     case PROP_SYNC_BY_RUNNING_TIME:
547       mq->sync_by_running_time = g_value_get_boolean (value);
548       break;
549     default:
550       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
551       break;
552   }
553 }
554
555 static void
556 gst_multi_queue_get_property (GObject * object, guint prop_id,
557     GValue * value, GParamSpec * pspec)
558 {
559   GstMultiQueue *mq = GST_MULTI_QUEUE (object);
560
561   GST_MULTI_QUEUE_MUTEX_LOCK (mq);
562
563   switch (prop_id) {
564     case PROP_EXTRA_SIZE_BYTES:
565       g_value_set_uint (value, mq->extra_size.bytes);
566       break;
567     case PROP_EXTRA_SIZE_BUFFERS:
568       g_value_set_uint (value, mq->extra_size.visible);
569       break;
570     case PROP_EXTRA_SIZE_TIME:
571       g_value_set_uint64 (value, mq->extra_size.time);
572       break;
573     case PROP_MAX_SIZE_BYTES:
574       g_value_set_uint (value, mq->max_size.bytes);
575       break;
576     case PROP_MAX_SIZE_BUFFERS:
577       g_value_set_uint (value, mq->max_size.visible);
578       break;
579     case PROP_MAX_SIZE_TIME:
580       g_value_set_uint64 (value, mq->max_size.time);
581       break;
582     case PROP_USE_BUFFERING:
583       g_value_set_boolean (value, mq->use_buffering);
584       break;
585     case PROP_LOW_PERCENT:
586       g_value_set_int (value, mq->low_percent);
587       break;
588     case PROP_HIGH_PERCENT:
589       g_value_set_int (value, mq->high_percent);
590       break;
591     case PROP_SYNC_BY_RUNNING_TIME:
592       g_value_set_boolean (value, mq->sync_by_running_time);
593       break;
594     default:
595       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
596       break;
597   }
598
599   GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
600 }
601
602 static GstIterator *
603 gst_multi_queue_iterate_internal_links (GstPad * pad, GstObject * parent)
604 {
605   GstIterator *it = NULL;
606   GstPad *opad;
607   GstSingleQueue *squeue;
608   GstMultiQueue *mq = GST_MULTI_QUEUE (parent);
609   GValue val = { 0, };
610
611   GST_MULTI_QUEUE_MUTEX_LOCK (mq);
612   squeue = gst_pad_get_element_private (pad);
613   if (!squeue)
614     goto out;
615
616   if (squeue->sinkpad == pad)
617     opad = gst_object_ref (squeue->srcpad);
618   else if (squeue->srcpad == pad)
619     opad = gst_object_ref (squeue->sinkpad);
620   else
621     goto out;
622
623   g_value_init (&val, GST_TYPE_PAD);
624   g_value_set_object (&val, opad);
625   it = gst_iterator_new_single (GST_TYPE_PAD, &val);
626   g_value_unset (&val);
627
628   gst_object_unref (opad);
629
630 out:
631   GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
632
633   return it;
634 }
635
636
637 /*
638  * GstElement methods
639  */
640
641 static GstPad *
642 gst_multi_queue_request_new_pad (GstElement * element, GstPadTemplate * temp,
643     const gchar * name, const GstCaps * caps)
644 {
645   GstMultiQueue *mqueue = GST_MULTI_QUEUE (element);
646   GstSingleQueue *squeue;
647   guint temp_id = -1;
648
649   if (name) {
650     sscanf (name + 4, "_%u", &temp_id);
651     GST_LOG_OBJECT (element, "name : %s (id %d)", GST_STR_NULL (name), temp_id);
652   }
653
654   /* Create a new single queue, add the sink and source pad and return the sink pad */
655   squeue = gst_single_queue_new (mqueue, temp_id);
656
657   GST_DEBUG_OBJECT (mqueue, "Returning pad %s:%s",
658       GST_DEBUG_PAD_NAME (squeue->sinkpad));
659
660   return squeue ? squeue->sinkpad : NULL;
661 }
662
663 static void
664 gst_multi_queue_release_pad (GstElement * element, GstPad * pad)
665 {
666   GstMultiQueue *mqueue = GST_MULTI_QUEUE (element);
667   GstSingleQueue *sq = NULL;
668   GList *tmp;
669
670   GST_LOG_OBJECT (element, "pad %s:%s", GST_DEBUG_PAD_NAME (pad));
671
672   GST_MULTI_QUEUE_MUTEX_LOCK (mqueue);
673   /* Find which single queue it belongs to, knowing that it should be a sinkpad */
674   for (tmp = mqueue->queues; tmp; tmp = g_list_next (tmp)) {
675     sq = (GstSingleQueue *) tmp->data;
676
677     if (sq->sinkpad == pad)
678       break;
679   }
680
681   if (!tmp) {
682     GST_WARNING_OBJECT (mqueue, "That pad doesn't belong to this element ???");
683     GST_MULTI_QUEUE_MUTEX_UNLOCK (mqueue);
684     return;
685   }
686
687   /* FIXME: The removal of the singlequeue should probably not happen until it
688    * finishes draining */
689
690   /* remove it from the list */
691   mqueue->queues = g_list_delete_link (mqueue->queues, tmp);
692   mqueue->queues_cookie++;
693
694   /* FIXME : recompute next-non-linked */
695   GST_MULTI_QUEUE_MUTEX_UNLOCK (mqueue);
696
697   /* delete SingleQueue */
698   gst_data_queue_set_flushing (sq->queue, TRUE);
699
700   gst_pad_set_active (sq->srcpad, FALSE);
701   gst_pad_set_active (sq->sinkpad, FALSE);
702   gst_pad_set_element_private (sq->srcpad, NULL);
703   gst_pad_set_element_private (sq->sinkpad, NULL);
704   gst_element_remove_pad (element, sq->srcpad);
705   gst_element_remove_pad (element, sq->sinkpad);
706   gst_single_queue_free (sq);
707 }
708
709 static GstStateChangeReturn
710 gst_multi_queue_change_state (GstElement * element, GstStateChange transition)
711 {
712   GstMultiQueue *mqueue = GST_MULTI_QUEUE (element);
713   GstSingleQueue *sq = NULL;
714   GstStateChangeReturn result;
715
716   switch (transition) {
717     case GST_STATE_CHANGE_READY_TO_PAUSED:{
718       GList *tmp;
719
720       /* Set all pads to non-flushing */
721       GST_MULTI_QUEUE_MUTEX_LOCK (mqueue);
722       for (tmp = mqueue->queues; tmp; tmp = g_list_next (tmp)) {
723         sq = (GstSingleQueue *) tmp->data;
724         sq->flushing = FALSE;
725       }
726
727       /* the visible limit might not have been set on single queues that have grown because of other queueus were empty */
728       SET_CHILD_PROPERTY (mqueue, visible);
729
730       GST_MULTI_QUEUE_MUTEX_UNLOCK (mqueue);
731
732       break;
733     }
734     case GST_STATE_CHANGE_PAUSED_TO_READY:{
735       GList *tmp;
736
737       /* Un-wait all waiting pads */
738       GST_MULTI_QUEUE_MUTEX_LOCK (mqueue);
739       for (tmp = mqueue->queues; tmp; tmp = g_list_next (tmp)) {
740         sq = (GstSingleQueue *) tmp->data;
741         sq->flushing = TRUE;
742         g_cond_signal (&sq->turn);
743       }
744       GST_MULTI_QUEUE_MUTEX_UNLOCK (mqueue);
745       break;
746     }
747     default:
748       break;
749   }
750
751   result = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
752
753   switch (transition) {
754     default:
755       break;
756   }
757
758   return result;
759 }
760
761 static gboolean
762 gst_single_queue_flush (GstMultiQueue * mq, GstSingleQueue * sq, gboolean flush,
763     gboolean full)
764 {
765   gboolean result;
766
767   GST_DEBUG_OBJECT (mq, "flush %s queue %d", (flush ? "start" : "stop"),
768       sq->id);
769
770   if (flush) {
771     GST_MULTI_QUEUE_MUTEX_LOCK (mq);
772     sq->srcresult = GST_FLOW_FLUSHING;
773     gst_data_queue_set_flushing (sq->queue, TRUE);
774
775     sq->flushing = TRUE;
776
777     /* wake up non-linked task */
778     GST_LOG_OBJECT (mq, "SingleQueue %d : waking up eventually waiting task",
779         sq->id);
780     g_cond_signal (&sq->turn);
781     sq->last_query = FALSE;
782     g_cond_signal (&sq->query_handled);
783     GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
784
785     GST_LOG_OBJECT (mq, "SingleQueue %d : pausing task", sq->id);
786     result = gst_pad_pause_task (sq->srcpad);
787     sq->sink_tainted = sq->src_tainted = TRUE;
788   } else {
789     GST_MULTI_QUEUE_MUTEX_LOCK (mq);
790     gst_single_queue_flush_queue (sq, full);
791     gst_segment_init (&sq->sink_segment, GST_FORMAT_TIME);
792     gst_segment_init (&sq->src_segment, GST_FORMAT_TIME);
793     /* All pads start off not-linked for a smooth kick-off */
794     sq->srcresult = GST_FLOW_OK;
795     sq->pushed = FALSE;
796     sq->cur_time = 0;
797     sq->max_size.visible = mq->max_size.visible;
798     sq->is_eos = FALSE;
799     sq->nextid = 0;
800     sq->oldid = 0;
801     sq->last_oldid = G_MAXUINT32;
802     sq->next_time = GST_CLOCK_TIME_NONE;
803     sq->last_time = GST_CLOCK_TIME_NONE;
804     gst_data_queue_set_flushing (sq->queue, FALSE);
805
806     /* Reset high time to be recomputed next */
807     mq->high_time = GST_CLOCK_TIME_NONE;
808
809     sq->flushing = FALSE;
810     GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
811
812     GST_LOG_OBJECT (mq, "SingleQueue %d : starting task", sq->id);
813     result =
814         gst_pad_start_task (sq->srcpad, (GstTaskFunction) gst_multi_queue_loop,
815         sq->srcpad, NULL);
816   }
817   return result;
818 }
819
820 static void
821 update_buffering (GstMultiQueue * mq, GstSingleQueue * sq)
822 {
823   GstDataQueueSize size;
824   gint percent, tmp;
825   gboolean post = FALSE;
826
827   /* nothing to dowhen we are not in buffering mode */
828   if (!mq->use_buffering)
829     return;
830
831   gst_data_queue_get_level (sq->queue, &size);
832
833   GST_DEBUG_OBJECT (mq,
834       "queue %d: visible %u/%u, bytes %u/%u, time %" G_GUINT64_FORMAT "/%"
835       G_GUINT64_FORMAT, sq->id, size.visible, sq->max_size.visible,
836       size.bytes, sq->max_size.bytes, sq->cur_time, sq->max_size.time);
837
838   /* get bytes and time percentages and take the max */
839   if (sq->is_eos || sq->srcresult == GST_FLOW_NOT_LINKED) {
840     percent = 100;
841   } else {
842     percent = 0;
843     if (sq->max_size.time > 0) {
844       tmp = (sq->cur_time * 100) / sq->max_size.time;
845       percent = MAX (percent, tmp);
846     }
847     if (sq->max_size.bytes > 0) {
848       tmp = (size.bytes * 100) / sq->max_size.bytes;
849       percent = MAX (percent, tmp);
850     }
851   }
852
853   if (mq->buffering) {
854     post = TRUE;
855     if (percent >= mq->high_percent) {
856       mq->buffering = FALSE;
857     }
858     /* make sure it increases */
859     percent = MAX (mq->percent, percent);
860
861     if (percent == mq->percent)
862       /* don't post if nothing changed */
863       post = FALSE;
864     else
865       /* else keep last value we posted */
866       mq->percent = percent;
867   } else {
868     if (percent < mq->low_percent) {
869       mq->buffering = TRUE;
870       mq->percent = percent;
871       post = TRUE;
872     }
873   }
874   if (post) {
875     GstMessage *message;
876
877     /* scale to high percent so that it becomes the 100% mark */
878     percent = percent * 100 / mq->high_percent;
879     /* clip */
880     if (percent > 100)
881       percent = 100;
882
883     GST_DEBUG_OBJECT (mq, "buffering %d percent", percent);
884     message = gst_message_new_buffering (GST_OBJECT_CAST (mq), percent);
885
886     gst_element_post_message (GST_ELEMENT_CAST (mq), message);
887   } else {
888     GST_DEBUG_OBJECT (mq, "filled %d percent", percent);
889   }
890 }
891
892 /* calculate the diff between running time on the sink and src of the queue.
893  * This is the total amount of time in the queue. 
894  * WITH LOCK TAKEN */
895 static void
896 update_time_level (GstMultiQueue * mq, GstSingleQueue * sq)
897 {
898   gint64 sink_time, src_time;
899
900   if (sq->sink_tainted) {
901     sink_time = sq->sinktime =
902         gst_segment_to_running_time (&sq->sink_segment, GST_FORMAT_TIME,
903         sq->sink_segment.position);
904
905     if (G_UNLIKELY (sink_time != GST_CLOCK_TIME_NONE))
906       /* if we have a time, we become untainted and use the time */
907       sq->sink_tainted = FALSE;
908   } else
909     sink_time = sq->sinktime;
910
911   if (sq->src_tainted) {
912     src_time = sq->srctime =
913         gst_segment_to_running_time (&sq->src_segment, GST_FORMAT_TIME,
914         sq->src_segment.position);
915     /* if we have a time, we become untainted and use the time */
916     if (G_UNLIKELY (src_time != GST_CLOCK_TIME_NONE))
917       sq->src_tainted = FALSE;
918   } else
919     src_time = sq->srctime;
920
921   GST_DEBUG_OBJECT (mq,
922       "queue %d, sink %" GST_TIME_FORMAT ", src %" GST_TIME_FORMAT, sq->id,
923       GST_TIME_ARGS (sink_time), GST_TIME_ARGS (src_time));
924
925   /* This allows for streams with out of order timestamping - sometimes the
926    * emerging timestamp is later than the arriving one(s) */
927   if (G_LIKELY (sink_time != -1 && src_time != -1 && sink_time > src_time))
928     sq->cur_time = sink_time - src_time;
929   else
930     sq->cur_time = 0;
931
932   /* updating the time level can change the buffering state */
933   update_buffering (mq, sq);
934
935   return;
936 }
937
938 /* take a SEGMENT event and apply the values to segment, updating the time
939  * level of queue. */
940 static void
941 apply_segment (GstMultiQueue * mq, GstSingleQueue * sq, GstEvent * event,
942     GstSegment * segment)
943 {
944   gst_event_copy_segment (event, segment);
945
946   /* now configure the values, we use these to track timestamps on the
947    * sinkpad. */
948   if (segment->format != GST_FORMAT_TIME) {
949     /* non-time format, pretent the current time segment is closed with a
950      * 0 start and unknown stop time. */
951     segment->format = GST_FORMAT_TIME;
952     segment->start = 0;
953     segment->stop = -1;
954     segment->time = 0;
955   }
956   GST_MULTI_QUEUE_MUTEX_LOCK (mq);
957
958   if (segment == &sq->sink_segment)
959     sq->sink_tainted = TRUE;
960   else
961     sq->src_tainted = TRUE;
962
963   GST_DEBUG_OBJECT (mq,
964       "queue %d, configured SEGMENT %" GST_SEGMENT_FORMAT, sq->id, segment);
965
966   /* segment can update the time level of the queue */
967   update_time_level (mq, sq);
968
969   GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
970 }
971
972 /* take a buffer and update segment, updating the time level of the queue. */
973 static void
974 apply_buffer (GstMultiQueue * mq, GstSingleQueue * sq, GstClockTime timestamp,
975     GstClockTime duration, GstSegment * segment)
976 {
977   GST_MULTI_QUEUE_MUTEX_LOCK (mq);
978
979   /* if no timestamp is set, assume it's continuous with the previous 
980    * time */
981   if (timestamp == GST_CLOCK_TIME_NONE)
982     timestamp = segment->position;
983
984   /* add duration */
985   if (duration != GST_CLOCK_TIME_NONE)
986     timestamp += duration;
987
988   GST_DEBUG_OBJECT (mq, "queue %d, position updated to %" GST_TIME_FORMAT,
989       sq->id, GST_TIME_ARGS (timestamp));
990
991   segment->position = timestamp;
992
993   if (segment == &sq->sink_segment)
994     sq->sink_tainted = TRUE;
995   else
996     sq->src_tainted = TRUE;
997
998   /* calc diff with other end */
999   update_time_level (mq, sq);
1000   GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
1001 }
1002
1003 static GstClockTime
1004 get_running_time (GstSegment * segment, GstMiniObject * object, gboolean end)
1005 {
1006   GstClockTime time = GST_CLOCK_TIME_NONE;
1007
1008   if (GST_IS_BUFFER (object)) {
1009     GstBuffer *buf = GST_BUFFER_CAST (object);
1010
1011     if (GST_BUFFER_TIMESTAMP_IS_VALID (buf)) {
1012       time = GST_BUFFER_TIMESTAMP (buf);
1013       if (end && GST_BUFFER_DURATION_IS_VALID (buf))
1014         time += GST_BUFFER_DURATION (buf);
1015       if (time > segment->stop)
1016         time = segment->stop;
1017       time = gst_segment_to_running_time (segment, GST_FORMAT_TIME, time);
1018     }
1019   } else if (GST_IS_BUFFER_LIST (object)) {
1020     GstBufferList *list = GST_BUFFER_LIST_CAST (object);
1021     gint i, n;
1022     GstBuffer *buf;
1023
1024     n = gst_buffer_list_length (list);
1025     for (i = 0; i < n; i++) {
1026       buf = gst_buffer_list_get (list, i);
1027       if (GST_BUFFER_TIMESTAMP_IS_VALID (buf)) {
1028         time = GST_BUFFER_TIMESTAMP (buf);
1029         if (end && GST_BUFFER_DURATION_IS_VALID (buf))
1030           time += GST_BUFFER_DURATION (buf);
1031         if (time > segment->stop)
1032           time = segment->stop;
1033         time = gst_segment_to_running_time (segment, GST_FORMAT_TIME, time);
1034         if (!end)
1035           goto done;
1036       } else if (!end) {
1037         goto done;
1038       }
1039     }
1040   } else if (GST_IS_EVENT (object)) {
1041     GstEvent *event = GST_EVENT_CAST (object);
1042
1043     /* For newsegment events return the running time of the start position */
1044     if (GST_EVENT_TYPE (event) == GST_EVENT_SEGMENT) {
1045       const GstSegment *new_segment;
1046
1047       gst_event_parse_segment (event, &new_segment);
1048       if (new_segment->format == GST_FORMAT_TIME) {
1049         time =
1050             gst_segment_to_running_time (new_segment, GST_FORMAT_TIME,
1051             new_segment->start);
1052       }
1053     }
1054   }
1055
1056 done:
1057   return time;
1058 }
1059
1060 static GstFlowReturn
1061 gst_single_queue_push_one (GstMultiQueue * mq, GstSingleQueue * sq,
1062     GstMiniObject * object)
1063 {
1064   GstFlowReturn result = GST_FLOW_OK;
1065
1066   if (GST_IS_BUFFER (object)) {
1067     GstBuffer *buffer;
1068     GstClockTime timestamp, duration;
1069
1070     buffer = GST_BUFFER_CAST (object);
1071     timestamp = GST_BUFFER_TIMESTAMP (buffer);
1072     duration = GST_BUFFER_DURATION (buffer);
1073
1074     apply_buffer (mq, sq, timestamp, duration, &sq->src_segment);
1075
1076     /* Applying the buffer may have made the queue non-full again, unblock it if needed */
1077     gst_data_queue_limits_changed (sq->queue);
1078
1079     GST_DEBUG_OBJECT (mq,
1080         "SingleQueue %d : Pushing buffer %p with ts %" GST_TIME_FORMAT,
1081         sq->id, buffer, GST_TIME_ARGS (timestamp));
1082
1083     result = gst_pad_push (sq->srcpad, buffer);
1084   } else if (GST_IS_EVENT (object)) {
1085     GstEvent *event;
1086
1087     event = GST_EVENT_CAST (object);
1088
1089     switch (GST_EVENT_TYPE (event)) {
1090       case GST_EVENT_EOS:
1091         result = GST_FLOW_EOS;
1092         break;
1093       case GST_EVENT_SEGMENT:
1094         apply_segment (mq, sq, event, &sq->src_segment);
1095         /* Applying the segment may have made the queue non-full again, unblock it if needed */
1096         gst_data_queue_limits_changed (sq->queue);
1097         break;
1098       default:
1099         break;
1100     }
1101
1102     GST_DEBUG_OBJECT (mq,
1103         "SingleQueue %d : Pushing event %p of type %s",
1104         sq->id, event, GST_EVENT_TYPE_NAME (event));
1105
1106     gst_pad_push_event (sq->srcpad, event);
1107   } else if (GST_IS_QUERY (object)) {
1108     GstQuery *query;
1109     gboolean res;
1110
1111     query = GST_QUERY_CAST (object);
1112
1113     res = gst_pad_peer_query (sq->srcpad, query);
1114
1115     GST_MULTI_QUEUE_MUTEX_LOCK (mq);
1116     sq->last_query = res;
1117     g_cond_signal (&sq->query_handled);
1118     GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
1119   } else {
1120     g_warning ("Unexpected object in singlequeue %u (refcounting problem?)",
1121         sq->id);
1122   }
1123   return result;
1124
1125   /* ERRORS */
1126 }
1127
1128 static GstMiniObject *
1129 gst_multi_queue_item_steal_object (GstMultiQueueItem * item)
1130 {
1131   GstMiniObject *res;
1132
1133   res = item->object;
1134   item->object = NULL;
1135
1136   return res;
1137 }
1138
1139 static void
1140 gst_multi_queue_item_destroy (GstMultiQueueItem * item)
1141 {
1142   if (!item->is_query && item->object)
1143     gst_mini_object_unref (item->object);
1144   g_slice_free (GstMultiQueueItem, item);
1145 }
1146
1147 /* takes ownership of passed mini object! */
1148 static GstMultiQueueItem *
1149 gst_multi_queue_buffer_item_new (GstMiniObject * object, guint32 curid)
1150 {
1151   GstMultiQueueItem *item;
1152
1153   item = g_slice_new (GstMultiQueueItem);
1154   item->object = object;
1155   item->destroy = (GDestroyNotify) gst_multi_queue_item_destroy;
1156   item->posid = curid;
1157   item->is_query = GST_IS_QUERY (object);
1158
1159   item->size = gst_buffer_get_size (GST_BUFFER_CAST (object));
1160   item->duration = GST_BUFFER_DURATION (object);
1161   if (item->duration == GST_CLOCK_TIME_NONE)
1162     item->duration = 0;
1163   item->visible = TRUE;
1164   return item;
1165 }
1166
1167 static GstMultiQueueItem *
1168 gst_multi_queue_mo_item_new (GstMiniObject * object, guint32 curid)
1169 {
1170   GstMultiQueueItem *item;
1171
1172   item = g_slice_new (GstMultiQueueItem);
1173   item->object = object;
1174   item->destroy = (GDestroyNotify) gst_multi_queue_item_destroy;
1175   item->posid = curid;
1176   item->is_query = GST_IS_QUERY (object);
1177
1178   item->size = 0;
1179   item->duration = 0;
1180   item->visible = FALSE;
1181   return item;
1182 }
1183
1184 /* Each main loop attempts to push buffers until the return value
1185  * is not-linked. not-linked pads are not allowed to push data beyond
1186  * any linked pads, so they don't 'rush ahead of the pack'.
1187  */
1188 static void
1189 gst_multi_queue_loop (GstPad * pad)
1190 {
1191   GstSingleQueue *sq;
1192   GstMultiQueueItem *item;
1193   GstDataQueueItem *sitem;
1194   GstMultiQueue *mq;
1195   GstMiniObject *object = NULL;
1196   guint32 newid;
1197   GstFlowReturn result;
1198   GstClockTime next_time;
1199   gboolean is_buffer;
1200   gboolean do_update_buffering = FALSE;
1201
1202   sq = (GstSingleQueue *) gst_pad_get_element_private (pad);
1203   mq = sq->mqueue;
1204
1205   GST_DEBUG_OBJECT (mq, "SingleQueue %d : trying to pop an object", sq->id);
1206
1207   if (sq->flushing)
1208     goto out_flushing;
1209
1210   /* Get something from the queue, blocking until that happens, or we get
1211    * flushed */
1212   if (!(gst_data_queue_pop (sq->queue, &sitem)))
1213     goto out_flushing;
1214
1215   item = (GstMultiQueueItem *) sitem;
1216   newid = item->posid;
1217
1218   /* steal the object and destroy the item */
1219   object = gst_multi_queue_item_steal_object (item);
1220   gst_multi_queue_item_destroy (item);
1221
1222   is_buffer = GST_IS_BUFFER (object);
1223
1224   /* Get running time of the item. Events will have GST_CLOCK_TIME_NONE */
1225   next_time = get_running_time (&sq->src_segment, object, TRUE);
1226
1227   GST_LOG_OBJECT (mq, "SingleQueue %d : newid:%d , oldid:%d",
1228       sq->id, newid, sq->last_oldid);
1229
1230   /* If we're not-linked, we do some extra work because we might need to
1231    * wait before pushing. If we're linked but there's a gap in the IDs,
1232    * or it's the first loop, or we just passed the previous highid, 
1233    * we might need to wake some sleeping pad up, so there's extra work 
1234    * there too */
1235   GST_MULTI_QUEUE_MUTEX_LOCK (mq);
1236   if (sq->srcresult == GST_FLOW_NOT_LINKED
1237       || (sq->last_oldid == G_MAXUINT32) || (newid != (sq->last_oldid + 1))
1238       || sq->last_oldid > mq->highid) {
1239     GST_LOG_OBJECT (mq, "CHECKING sq->srcresult: %s",
1240         gst_flow_get_name (sq->srcresult));
1241
1242     /* Check again if we're flushing after the lock is taken,
1243      * the flush flag might have been changed in the meantime */
1244     if (sq->flushing) {
1245       GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
1246       goto out_flushing;
1247     }
1248
1249     /* Update the nextid so other threads know when to wake us up */
1250     sq->nextid = newid;
1251     sq->next_time = next_time;
1252
1253     /* Update the oldid (the last ID we output) for highid tracking */
1254     if (sq->last_oldid != G_MAXUINT32)
1255       sq->oldid = sq->last_oldid;
1256
1257     if (sq->srcresult == GST_FLOW_NOT_LINKED) {
1258       /* Go to sleep until it's time to push this buffer */
1259
1260       /* Recompute the highid */
1261       compute_high_id (mq);
1262       /* Recompute the high time */
1263       compute_high_time (mq);
1264
1265       while (((mq->sync_by_running_time && next_time != GST_CLOCK_TIME_NONE &&
1266                   (mq->high_time == GST_CLOCK_TIME_NONE
1267                       || next_time >= mq->high_time))
1268               || (!mq->sync_by_running_time && newid > mq->highid))
1269           && sq->srcresult == GST_FLOW_NOT_LINKED) {
1270
1271         GST_DEBUG_OBJECT (mq,
1272             "queue %d sleeping for not-linked wakeup with "
1273             "newid %u, highid %u, next_time %" GST_TIME_FORMAT
1274             ", high_time %" GST_TIME_FORMAT, sq->id, newid, mq->highid,
1275             GST_TIME_ARGS (next_time), GST_TIME_ARGS (mq->high_time));
1276
1277         /* Wake up all non-linked pads before we sleep */
1278         wake_up_next_non_linked (mq);
1279
1280         mq->numwaiting++;
1281         g_cond_wait (&sq->turn, &mq->qlock);
1282         mq->numwaiting--;
1283
1284         if (sq->flushing) {
1285           GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
1286           goto out_flushing;
1287         }
1288
1289         /* Recompute the high time */
1290         compute_high_time (mq);
1291
1292         GST_DEBUG_OBJECT (mq, "queue %d woken from sleeping for not-linked "
1293             "wakeup with newid %u, highid %u, next_time %" GST_TIME_FORMAT
1294             ", high_time %" GST_TIME_FORMAT, sq->id, newid, mq->highid,
1295             GST_TIME_ARGS (next_time), GST_TIME_ARGS (mq->high_time));
1296       }
1297
1298       /* Re-compute the high_id in case someone else pushed */
1299       compute_high_id (mq);
1300     } else {
1301       compute_high_id (mq);
1302       /* Wake up all non-linked pads */
1303       wake_up_next_non_linked (mq);
1304     }
1305     /* We're done waiting, we can clear the nextid and nexttime */
1306     sq->nextid = 0;
1307     sq->next_time = GST_CLOCK_TIME_NONE;
1308   }
1309   GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
1310
1311   if (sq->flushing)
1312     goto out_flushing;
1313
1314   GST_LOG_OBJECT (mq, "BEFORE PUSHING sq->srcresult: %s",
1315       gst_flow_get_name (sq->srcresult));
1316
1317   /* Update time stats */
1318   GST_MULTI_QUEUE_MUTEX_LOCK (mq);
1319   next_time = get_running_time (&sq->src_segment, object, FALSE);
1320   if (next_time != GST_CLOCK_TIME_NONE) {
1321     if (sq->last_time == GST_CLOCK_TIME_NONE || sq->last_time < next_time)
1322       sq->last_time = next_time;
1323     if (mq->high_time == GST_CLOCK_TIME_NONE || mq->high_time <= next_time) {
1324       /* Wake up all non-linked pads now that we advanced the high time */
1325       mq->high_time = next_time;
1326       wake_up_next_non_linked (mq);
1327     }
1328   }
1329   GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
1330
1331   /* Try to push out the new object */
1332   result = gst_single_queue_push_one (mq, sq, object);
1333   object = NULL;
1334
1335   /* Check if we pushed something already and if this is
1336    * now a switch from an active to a non-active stream.
1337    *
1338    * If it is, we reset all the waiting streams, let them
1339    * push another buffer to see if they're now active again.
1340    * This allows faster switching between streams and prevents
1341    * deadlocks if downstream does any waiting too.
1342    */
1343   GST_MULTI_QUEUE_MUTEX_LOCK (mq);
1344   if (sq->pushed && sq->srcresult == GST_FLOW_OK
1345       && result == GST_FLOW_NOT_LINKED) {
1346     GList *tmp;
1347
1348     GST_LOG_OBJECT (mq, "SingleQueue %d : Changed from active to non-active",
1349         sq->id);
1350
1351     compute_high_id (mq);
1352     do_update_buffering = TRUE;
1353
1354     /* maybe no-one is waiting */
1355     if (mq->numwaiting > 0) {
1356       /* Else figure out which singlequeue(s) need waking up */
1357       for (tmp = mq->queues; tmp; tmp = g_list_next (tmp)) {
1358         GstSingleQueue *sq2 = (GstSingleQueue *) tmp->data;
1359
1360         if (sq2->srcresult == GST_FLOW_NOT_LINKED) {
1361           GST_LOG_OBJECT (mq, "Waking up singlequeue %d", sq2->id);
1362           sq2->pushed = FALSE;
1363           sq2->srcresult = GST_FLOW_OK;
1364           g_cond_signal (&sq2->turn);
1365         }
1366       }
1367     }
1368   }
1369
1370   if (is_buffer)
1371     sq->pushed = TRUE;
1372   sq->srcresult = result;
1373   sq->last_oldid = newid;
1374
1375   if (do_update_buffering)
1376     update_buffering (mq, sq);
1377
1378   GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
1379
1380   if (result != GST_FLOW_OK && result != GST_FLOW_NOT_LINKED
1381       && result != GST_FLOW_EOS)
1382     goto out_flushing;
1383
1384   GST_LOG_OBJECT (mq, "AFTER PUSHING sq->srcresult: %s",
1385       gst_flow_get_name (sq->srcresult));
1386
1387   return;
1388
1389 out_flushing:
1390   {
1391     if (object)
1392       gst_mini_object_unref (object);
1393
1394     /* Need to make sure wake up any sleeping pads when we exit */
1395     GST_MULTI_QUEUE_MUTEX_LOCK (mq);
1396     compute_high_time (mq);
1397     compute_high_id (mq);
1398     wake_up_next_non_linked (mq);
1399     sq->last_query = FALSE;
1400     g_cond_signal (&sq->query_handled);
1401     GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
1402
1403     /* upstream needs to see fatal result ASAP to shut things down,
1404      * but might be stuck in one of our other full queues;
1405      * so empty this one and trigger dynamic queue growth. At
1406      * this point the srcresult is not OK, NOT_LINKED
1407      * or EOS, i.e. a real failure */
1408     gst_single_queue_flush_queue (sq, FALSE);
1409     single_queue_underrun_cb (sq->queue, sq);
1410     gst_data_queue_set_flushing (sq->queue, TRUE);
1411     gst_pad_pause_task (sq->srcpad);
1412     GST_CAT_LOG_OBJECT (multi_queue_debug, mq,
1413         "SingleQueue[%d] task paused, reason:%s",
1414         sq->id, gst_flow_get_name (sq->srcresult));
1415     return;
1416   }
1417 }
1418
1419 /**
1420  * gst_multi_queue_chain:
1421  *
1422  * This is similar to GstQueue's chain function, except:
1423  * _ we don't have leak behaviours,
1424  * _ we push with a unique id (curid)
1425  */
1426 static GstFlowReturn
1427 gst_multi_queue_chain (GstPad * pad, GstObject * parent, GstBuffer * buffer)
1428 {
1429   GstSingleQueue *sq;
1430   GstMultiQueue *mq;
1431   GstMultiQueueItem *item;
1432   guint32 curid;
1433   GstClockTime timestamp, duration;
1434
1435   sq = gst_pad_get_element_private (pad);
1436   mq = sq->mqueue;
1437
1438   /* if eos, we are always full, so avoid hanging incoming indefinitely */
1439   if (sq->is_eos)
1440     goto was_eos;
1441
1442   /* Get a unique incrementing id */
1443   curid = g_atomic_int_add ((gint *) & mq->counter, 1);
1444
1445   GST_LOG_OBJECT (mq, "SingleQueue %d : about to enqueue buffer %p with id %d",
1446       sq->id, buffer, curid);
1447
1448   item = gst_multi_queue_buffer_item_new (GST_MINI_OBJECT_CAST (buffer), curid);
1449
1450   timestamp = GST_BUFFER_TIMESTAMP (buffer);
1451   duration = GST_BUFFER_DURATION (buffer);
1452
1453   if (!(gst_data_queue_push (sq->queue, (GstDataQueueItem *) item)))
1454     goto flushing;
1455
1456   /* update time level, we must do this after pushing the data in the queue so
1457    * that we never end up filling the queue first. */
1458   apply_buffer (mq, sq, timestamp, duration, &sq->sink_segment);
1459
1460 done:
1461   return sq->srcresult;
1462
1463   /* ERRORS */
1464 flushing:
1465   {
1466     GST_LOG_OBJECT (mq, "SingleQueue %d : exit because task paused, reason: %s",
1467         sq->id, gst_flow_get_name (sq->srcresult));
1468     gst_multi_queue_item_destroy (item);
1469     goto done;
1470   }
1471 was_eos:
1472   {
1473     GST_DEBUG_OBJECT (mq, "we are EOS, dropping buffer, return EOS");
1474     gst_buffer_unref (buffer);
1475     return GST_FLOW_EOS;
1476   }
1477 }
1478
1479 static gboolean
1480 gst_multi_queue_sink_activate_mode (GstPad * pad, GstObject * parent,
1481     GstPadMode mode, gboolean active)
1482 {
1483   gboolean res;
1484   GstSingleQueue *sq;
1485   GstMultiQueue *mq;
1486
1487   sq = (GstSingleQueue *) gst_pad_get_element_private (pad);
1488   mq = (GstMultiQueue *) gst_pad_get_parent (pad);
1489
1490   /* mq is NULL if the pad is activated/deactivated before being
1491    * added to the multiqueue */
1492   if (mq)
1493     GST_MULTI_QUEUE_MUTEX_LOCK (mq);
1494
1495   switch (mode) {
1496     case GST_PAD_MODE_PUSH:
1497       if (active) {
1498         /* All pads start off linked until they push one buffer */
1499         sq->srcresult = GST_FLOW_OK;
1500         sq->pushed = FALSE;
1501         gst_data_queue_set_flushing (sq->queue, FALSE);
1502       } else {
1503         sq->srcresult = GST_FLOW_FLUSHING;
1504         sq->last_query = FALSE;
1505         g_cond_signal (&sq->query_handled);
1506         gst_data_queue_set_flushing (sq->queue, TRUE);
1507
1508         /* Wait until streaming thread has finished */
1509         if (mq)
1510           GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
1511         GST_PAD_STREAM_LOCK (pad);
1512         if (mq)
1513           GST_MULTI_QUEUE_MUTEX_LOCK (mq);
1514         gst_data_queue_flush (sq->queue);
1515         if (mq)
1516           GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
1517         GST_PAD_STREAM_UNLOCK (pad);
1518         if (mq)
1519           GST_MULTI_QUEUE_MUTEX_LOCK (mq);
1520       }
1521       res = TRUE;
1522       break;
1523     default:
1524       res = FALSE;
1525       break;
1526   }
1527
1528   if (mq) {
1529     GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
1530     gst_object_unref (mq);
1531   }
1532
1533   return res;
1534 }
1535
1536 static gboolean
1537 gst_multi_queue_sink_event (GstPad * pad, GstObject * parent, GstEvent * event)
1538 {
1539   GstSingleQueue *sq;
1540   GstMultiQueue *mq;
1541   guint32 curid;
1542   GstMultiQueueItem *item;
1543   gboolean res;
1544   GstEventType type;
1545   GstEvent *sref = NULL;
1546
1547   sq = (GstSingleQueue *) gst_pad_get_element_private (pad);
1548   mq = (GstMultiQueue *) parent;
1549
1550   type = GST_EVENT_TYPE (event);
1551
1552   switch (type) {
1553     case GST_EVENT_FLUSH_START:
1554       GST_DEBUG_OBJECT (mq, "SingleQueue %d : received flush start event",
1555           sq->id);
1556
1557       res = gst_pad_push_event (sq->srcpad, event);
1558
1559       gst_single_queue_flush (mq, sq, TRUE, FALSE);
1560       goto done;
1561
1562     case GST_EVENT_FLUSH_STOP:
1563       GST_DEBUG_OBJECT (mq, "SingleQueue %d : received flush stop event",
1564           sq->id);
1565
1566       res = gst_pad_push_event (sq->srcpad, event);
1567
1568       gst_single_queue_flush (mq, sq, FALSE, FALSE);
1569       goto done;
1570     case GST_EVENT_SEGMENT:
1571       /* take ref because the queue will take ownership and we need the event
1572        * afterwards to update the segment */
1573       sref = gst_event_ref (event);
1574       break;
1575
1576     default:
1577       if (!(GST_EVENT_IS_SERIALIZED (event))) {
1578         res = gst_pad_push_event (sq->srcpad, event);
1579         goto done;
1580       }
1581       break;
1582   }
1583
1584   /* if eos, we are always full, so avoid hanging incoming indefinitely */
1585   if (sq->is_eos)
1586     goto was_eos;
1587
1588   /* Get an unique incrementing id. */
1589   curid = g_atomic_int_add ((gint *) & mq->counter, 1);
1590
1591   item = gst_multi_queue_mo_item_new ((GstMiniObject *) event, curid);
1592
1593   GST_DEBUG_OBJECT (mq,
1594       "SingleQueue %d : Enqueuing event %p of type %s with id %d",
1595       sq->id, event, GST_EVENT_TYPE_NAME (event), curid);
1596
1597   if (!(res = gst_data_queue_push (sq->queue, (GstDataQueueItem *) item)))
1598     goto flushing;
1599
1600   /* mark EOS when we received one, we must do that after putting the
1601    * buffer in the queue because EOS marks the buffer as filled. No need to take
1602    * a lock, the _check_full happens from this thread only, right before pushing
1603    * into dataqueue. */
1604   switch (type) {
1605     case GST_EVENT_EOS:
1606       sq->is_eos = TRUE;
1607       /* EOS affects the buffering state */
1608       update_buffering (mq, sq);
1609       single_queue_overrun_cb (sq->queue, sq);
1610       break;
1611     case GST_EVENT_SEGMENT:
1612       apply_segment (mq, sq, sref, &sq->sink_segment);
1613       gst_event_unref (sref);
1614       break;
1615     default:
1616       break;
1617   }
1618 done:
1619   return res;
1620
1621 flushing:
1622   {
1623     GST_LOG_OBJECT (mq, "SingleQueue %d : exit because task paused, reason: %s",
1624         sq->id, gst_flow_get_name (sq->srcresult));
1625     if (sref)
1626       gst_event_unref (sref);
1627     gst_multi_queue_item_destroy (item);
1628     goto done;
1629   }
1630 was_eos:
1631   {
1632     GST_DEBUG_OBJECT (mq, "we are EOS, dropping event, return FALSE");
1633     gst_event_unref (event);
1634     res = FALSE;
1635     goto done;
1636   }
1637 }
1638
1639 static gboolean
1640 gst_multi_queue_sink_query (GstPad * pad, GstObject * parent, GstQuery * query)
1641 {
1642   gboolean res;
1643   GstSingleQueue *sq;
1644   GstMultiQueue *mq;
1645
1646   sq = (GstSingleQueue *) gst_pad_get_element_private (pad);
1647   mq = (GstMultiQueue *) parent;
1648
1649   switch (GST_QUERY_TYPE (query)) {
1650     default:
1651       if (GST_QUERY_IS_SERIALIZED (query)) {
1652         guint32 curid;
1653         GstMultiQueueItem *item;
1654
1655         GST_MULTI_QUEUE_MUTEX_LOCK (mq);
1656         if (sq->srcresult != GST_FLOW_OK)
1657           goto out_flushing;
1658
1659         /* serialized events go in the queue. We need to be certain that we
1660          * don't cause deadlocks waiting for the query return value. We check if
1661          * the queue is empty (nothing is blocking downstream and the query can
1662          * be pushed for sure) or we are not buffering. If we are buffering,
1663          * the pipeline waits to unblock downstream until our queue fills up
1664          * completely, which can not happen if we block on the query..
1665          * Therefore we only potentially block when we are not buffering. */
1666         if (!mq->use_buffering || gst_data_queue_is_empty (sq->queue)) {
1667           /* Get an unique incrementing id. */
1668           curid = g_atomic_int_add ((gint *) & mq->counter, 1);
1669
1670           item = gst_multi_queue_mo_item_new ((GstMiniObject *) query, curid);
1671
1672           GST_DEBUG_OBJECT (mq,
1673               "SingleQueue %d : Enqueuing query %p of type %s with id %d",
1674               sq->id, query, GST_QUERY_TYPE_NAME (query), curid);
1675           res = gst_data_queue_push (sq->queue, (GstDataQueueItem *) item);
1676           g_cond_wait (&sq->query_handled, &mq->qlock);
1677           res = sq->last_query;
1678         } else {
1679           GST_DEBUG_OBJECT (mq, "refusing query, we are buffering and the "
1680               "queue is not empty");
1681           res = FALSE;
1682         }
1683         GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
1684       } else {
1685         /* default handling */
1686         res = gst_pad_query_default (pad, parent, query);
1687       }
1688       break;
1689   }
1690   return res;
1691
1692 out_flushing:
1693   {
1694     GST_DEBUG_OBJECT (mq, "Flushing");
1695     GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
1696     return FALSE;
1697   }
1698 }
1699
1700 static gboolean
1701 gst_multi_queue_src_activate_mode (GstPad * pad, GstObject * parent,
1702     GstPadMode mode, gboolean active)
1703 {
1704   GstMultiQueue *mq;
1705   GstSingleQueue *sq;
1706   gboolean result;
1707
1708   sq = (GstSingleQueue *) gst_pad_get_element_private (pad);
1709   mq = sq->mqueue;
1710
1711   GST_DEBUG_OBJECT (mq, "SingleQueue %d", sq->id);
1712
1713   switch (mode) {
1714     case GST_PAD_MODE_PUSH:
1715       if (active) {
1716         result = gst_single_queue_flush (mq, sq, FALSE, TRUE);
1717       } else {
1718         result = gst_single_queue_flush (mq, sq, TRUE, TRUE);
1719         /* make sure streaming finishes */
1720         result |= gst_pad_stop_task (pad);
1721       }
1722       break;
1723     default:
1724       result = FALSE;
1725       break;
1726   }
1727   return result;
1728 }
1729
1730 static gboolean
1731 gst_multi_queue_src_event (GstPad * pad, GstObject * parent, GstEvent * event)
1732 {
1733   GstSingleQueue *sq = gst_pad_get_element_private (pad);
1734   GstMultiQueue *mq = sq->mqueue;
1735   gboolean ret;
1736
1737   switch (GST_EVENT_TYPE (event)) {
1738     case GST_EVENT_RECONFIGURE:
1739       GST_MULTI_QUEUE_MUTEX_LOCK (mq);
1740       if (sq->srcresult == GST_FLOW_NOT_LINKED) {
1741         sq->srcresult = GST_FLOW_OK;
1742         g_cond_signal (&sq->turn);
1743       }
1744       GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
1745
1746       ret = gst_pad_push_event (sq->sinkpad, event);
1747       break;
1748     default:
1749       ret = gst_pad_push_event (sq->sinkpad, event);
1750       break;
1751   }
1752
1753   return ret;
1754 }
1755
1756 static gboolean
1757 gst_multi_queue_src_query (GstPad * pad, GstObject * parent, GstQuery * query)
1758 {
1759   gboolean res;
1760
1761   /* FIXME, Handle position offset depending on queue size */
1762   switch (GST_QUERY_TYPE (query)) {
1763     default:
1764       /* default handling */
1765       res = gst_pad_query_default (pad, parent, query);
1766       break;
1767   }
1768   return res;
1769 }
1770
1771 /*
1772  * Next-non-linked functions
1773  */
1774
1775 /* WITH LOCK TAKEN */
1776 static void
1777 wake_up_next_non_linked (GstMultiQueue * mq)
1778 {
1779   GList *tmp;
1780
1781   /* maybe no-one is waiting */
1782   if (mq->numwaiting < 1)
1783     return;
1784
1785   /* Else figure out which singlequeue(s) need waking up */
1786   for (tmp = mq->queues; tmp; tmp = g_list_next (tmp)) {
1787     GstSingleQueue *sq = (GstSingleQueue *) tmp->data;
1788
1789     if (sq->srcresult == GST_FLOW_NOT_LINKED) {
1790       if ((mq->sync_by_running_time && mq->high_time != GST_CLOCK_TIME_NONE
1791               && sq->next_time != GST_CLOCK_TIME_NONE
1792               && sq->next_time >= mq->high_time)
1793           || (sq->nextid != 0 && sq->nextid <= mq->highid)) {
1794         GST_LOG_OBJECT (mq, "Waking up singlequeue %d", sq->id);
1795         g_cond_signal (&sq->turn);
1796       }
1797     }
1798   }
1799 }
1800
1801 /* WITH LOCK TAKEN */
1802 static void
1803 compute_high_id (GstMultiQueue * mq)
1804 {
1805   /* The high-id is either the highest id among the linked pads, or if all
1806    * pads are not-linked, it's the lowest not-linked pad */
1807   GList *tmp;
1808   guint32 lowest = G_MAXUINT32;
1809   guint32 highid = G_MAXUINT32;
1810
1811   for (tmp = mq->queues; tmp; tmp = g_list_next (tmp)) {
1812     GstSingleQueue *sq = (GstSingleQueue *) tmp->data;
1813
1814     GST_LOG_OBJECT (mq, "inspecting sq:%d , nextid:%d, oldid:%d, srcresult:%s",
1815         sq->id, sq->nextid, sq->oldid, gst_flow_get_name (sq->srcresult));
1816
1817     if (sq->srcresult == GST_FLOW_NOT_LINKED) {
1818       /* No need to consider queues which are not waiting */
1819       if (sq->nextid == 0) {
1820         GST_LOG_OBJECT (mq, "sq:%d is not waiting - ignoring", sq->id);
1821         continue;
1822       }
1823
1824       if (sq->nextid < lowest)
1825         lowest = sq->nextid;
1826     } else if (sq->srcresult != GST_FLOW_EOS) {
1827       /* If we don't have a global highid, or the global highid is lower than
1828        * this single queue's last outputted id, store the queue's one, 
1829        * unless the singlequeue is at EOS (srcresult = EOS) */
1830       if ((highid == G_MAXUINT32) || (sq->oldid > highid))
1831         highid = sq->oldid;
1832     }
1833   }
1834
1835   if (highid == G_MAXUINT32 || lowest < highid)
1836     mq->highid = lowest;
1837   else
1838     mq->highid = highid;
1839
1840   GST_LOG_OBJECT (mq, "Highid is now : %u, lowest non-linked %u", mq->highid,
1841       lowest);
1842 }
1843
1844 /* WITH LOCK TAKEN */
1845 static void
1846 compute_high_time (GstMultiQueue * mq)
1847 {
1848   /* The high-id is either the highest id among the linked pads, or if all
1849    * pads are not-linked, it's the lowest not-linked pad */
1850   GList *tmp;
1851   GstClockTime highest = GST_CLOCK_TIME_NONE;
1852   GstClockTime lowest = GST_CLOCK_TIME_NONE;
1853
1854   for (tmp = mq->queues; tmp; tmp = g_list_next (tmp)) {
1855     GstSingleQueue *sq = (GstSingleQueue *) tmp->data;
1856
1857     GST_LOG_OBJECT (mq,
1858         "inspecting sq:%d , next_time:%" GST_TIME_FORMAT ", last_time:%"
1859         GST_TIME_FORMAT ", srcresult:%s", sq->id, GST_TIME_ARGS (sq->next_time),
1860         GST_TIME_ARGS (sq->last_time), gst_flow_get_name (sq->srcresult));
1861
1862     if (sq->srcresult == GST_FLOW_NOT_LINKED) {
1863       /* No need to consider queues which are not waiting */
1864       if (sq->next_time == GST_CLOCK_TIME_NONE) {
1865         GST_LOG_OBJECT (mq, "sq:%d is not waiting - ignoring", sq->id);
1866         continue;
1867       }
1868
1869       if (lowest == GST_CLOCK_TIME_NONE || sq->next_time < lowest)
1870         lowest = sq->next_time;
1871     } else if (sq->srcresult != GST_FLOW_EOS) {
1872       /* If we don't have a global highid, or the global highid is lower than
1873        * this single queue's last outputted id, store the queue's one, 
1874        * unless the singlequeue is at EOS (srcresult = EOS) */
1875       if (highest == GST_CLOCK_TIME_NONE || sq->last_time > highest)
1876         highest = sq->last_time;
1877     }
1878   }
1879
1880   mq->high_time = highest;
1881
1882   GST_LOG_OBJECT (mq,
1883       "High time is now : %" GST_TIME_FORMAT ", lowest non-linked %"
1884       GST_TIME_FORMAT, GST_TIME_ARGS (mq->high_time), GST_TIME_ARGS (lowest));
1885 }
1886
1887 #define IS_FILLED(q, format, value) (((q)->max_size.format) != 0 && \
1888      ((q)->max_size.format) <= (value))
1889
1890 /*
1891  * GstSingleQueue functions
1892  */
1893 static void
1894 single_queue_overrun_cb (GstDataQueue * dq, GstSingleQueue * sq)
1895 {
1896   GstMultiQueue *mq = sq->mqueue;
1897   GList *tmp;
1898   GstDataQueueSize size;
1899   gboolean filled = TRUE;
1900
1901   gst_data_queue_get_level (sq->queue, &size);
1902
1903   GST_LOG_OBJECT (mq,
1904       "Single Queue %d: EOS %d, visible %u/%u, bytes %u/%u, time %"
1905       G_GUINT64_FORMAT "/%" G_GUINT64_FORMAT, sq->id, sq->is_eos, size.visible,
1906       sq->max_size.visible, size.bytes, sq->max_size.bytes, sq->cur_time,
1907       sq->max_size.time);
1908
1909   GST_MULTI_QUEUE_MUTEX_LOCK (mq);
1910
1911   /* check if we reached the hard time/bytes limits */
1912   if (sq->is_eos || IS_FILLED (sq, bytes, size.bytes) ||
1913       IS_FILLED (sq, time, sq->cur_time)) {
1914     goto done;
1915   }
1916
1917   /* if hard limits are not reached then we allow one more buffer in the full
1918    * queue, but only if any of the other singelqueues are empty */
1919   for (tmp = mq->queues; tmp; tmp = g_list_next (tmp)) {
1920     GstSingleQueue *oq = (GstSingleQueue *) tmp->data;
1921
1922     if (oq == sq)
1923       continue;
1924
1925     if (oq->srcresult == GST_FLOW_NOT_LINKED) {
1926       GST_LOG_OBJECT (mq, "Queue %d is not-linked", oq->id);
1927       continue;
1928     }
1929
1930     GST_LOG_OBJECT (mq, "Checking Queue %d", oq->id);
1931
1932     if (gst_data_queue_is_empty (oq->queue)) {
1933       GST_LOG_OBJECT (mq, "Queue %d is empty", oq->id);
1934       if (IS_FILLED (sq, visible, size.visible)) {
1935         sq->max_size.visible = size.visible + 1;
1936         GST_DEBUG_OBJECT (mq,
1937             "Queue %d is empty, bumping single queue %d max visible to %d",
1938             oq->id, sq->id, sq->max_size.visible);
1939         filled = FALSE;
1940         break;
1941       }
1942     }
1943   }
1944
1945 done:
1946   GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
1947
1948   /* Overrun is always forwarded, since this is blocking the upstream element */
1949   if (filled) {
1950     GST_DEBUG_OBJECT (mq, "Queue %d is filled, signalling overrun", sq->id);
1951     g_signal_emit (mq, gst_multi_queue_signals[SIGNAL_OVERRUN], 0);
1952   }
1953 }
1954
1955 static void
1956 single_queue_underrun_cb (GstDataQueue * dq, GstSingleQueue * sq)
1957 {
1958   gboolean empty = TRUE;
1959   GstMultiQueue *mq = sq->mqueue;
1960   GList *tmp;
1961
1962   if (sq->srcresult == GST_FLOW_NOT_LINKED) {
1963     GST_LOG_OBJECT (mq, "Single Queue %d is empty but not-linked", sq->id);
1964     return;
1965   } else {
1966     GST_LOG_OBJECT (mq,
1967         "Single Queue %d is empty, Checking other single queues", sq->id);
1968   }
1969
1970   GST_MULTI_QUEUE_MUTEX_LOCK (mq);
1971   for (tmp = mq->queues; tmp; tmp = g_list_next (tmp)) {
1972     GstSingleQueue *oq = (GstSingleQueue *) tmp->data;
1973
1974     if (gst_data_queue_is_full (oq->queue)) {
1975       GstDataQueueSize size;
1976
1977       gst_data_queue_get_level (oq->queue, &size);
1978       if (IS_FILLED (oq, visible, size.visible)) {
1979         oq->max_size.visible = size.visible + 1;
1980         GST_DEBUG_OBJECT (mq,
1981             "queue %d is filled, bumping its max visible to %d", oq->id,
1982             oq->max_size.visible);
1983         gst_data_queue_limits_changed (oq->queue);
1984       }
1985     }
1986     if (!gst_data_queue_is_empty (oq->queue))
1987       empty = FALSE;
1988   }
1989   GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
1990
1991   if (empty) {
1992     GST_DEBUG_OBJECT (mq, "All queues are empty, signalling it");
1993     g_signal_emit (mq, gst_multi_queue_signals[SIGNAL_UNDERRUN], 0);
1994   }
1995 }
1996
1997 static gboolean
1998 single_queue_check_full (GstDataQueue * dataq, guint visible, guint bytes,
1999     guint64 time, GstSingleQueue * sq)
2000 {
2001   gboolean res;
2002   GstMultiQueue *mq = sq->mqueue;
2003
2004   GST_DEBUG_OBJECT (mq,
2005       "queue %d: visible %u/%u, bytes %u/%u, time %" G_GUINT64_FORMAT "/%"
2006       G_GUINT64_FORMAT, sq->id, visible, sq->max_size.visible, bytes,
2007       sq->max_size.bytes, sq->cur_time, sq->max_size.time);
2008
2009   /* we are always filled on EOS */
2010   if (sq->is_eos)
2011     return TRUE;
2012
2013   /* we never go past the max visible items unless we are in buffering mode */
2014   if (!mq->use_buffering && IS_FILLED (sq, visible, visible))
2015     return TRUE;
2016
2017   /* check time or bytes */
2018   res = IS_FILLED (sq, time, sq->cur_time) || IS_FILLED (sq, bytes, bytes);
2019
2020   return res;
2021 }
2022
2023 static void
2024 gst_single_queue_flush_queue (GstSingleQueue * sq, gboolean full)
2025 {
2026   GstDataQueueItem *sitem;
2027   GstMultiQueueItem *mitem;
2028   gboolean was_flushing = FALSE;
2029
2030   while (!gst_data_queue_is_empty (sq->queue)) {
2031     GstMiniObject *data;
2032
2033     /* FIXME: If this fails here although the queue is not empty,
2034      * we're flushing... but we want to rescue all sticky
2035      * events nonetheless.
2036      */
2037     if (!gst_data_queue_pop (sq->queue, &sitem)) {
2038       was_flushing = TRUE;
2039       gst_data_queue_set_flushing (sq->queue, FALSE);
2040       continue;
2041     }
2042
2043     mitem = (GstMultiQueueItem *) sitem;
2044
2045     data = sitem->object;
2046
2047     if (!full && !mitem->is_query && GST_IS_EVENT (data)
2048         && GST_EVENT_IS_STICKY (data)
2049         && GST_EVENT_TYPE (data) != GST_EVENT_SEGMENT
2050         && GST_EVENT_TYPE (data) != GST_EVENT_EOS) {
2051       gst_pad_store_sticky_event (sq->srcpad, GST_EVENT_CAST (data));
2052     }
2053
2054     sitem->destroy (sitem);
2055   }
2056
2057   gst_data_queue_flush (sq->queue);
2058   if (was_flushing)
2059     gst_data_queue_set_flushing (sq->queue, TRUE);
2060 }
2061
2062 static void
2063 gst_single_queue_free (GstSingleQueue * sq)
2064 {
2065   /* DRAIN QUEUE */
2066   gst_data_queue_flush (sq->queue);
2067   g_object_unref (sq->queue);
2068   g_cond_clear (&sq->turn);
2069   g_cond_clear (&sq->query_handled);
2070   g_free (sq);
2071 }
2072
2073 static GstSingleQueue *
2074 gst_single_queue_new (GstMultiQueue * mqueue, guint id)
2075 {
2076   GstSingleQueue *sq;
2077   gchar *name;
2078   GList *tmp;
2079   guint temp_id = (id == -1) ? 0 : id;
2080
2081   GST_MULTI_QUEUE_MUTEX_LOCK (mqueue);
2082
2083   /* Find an unused queue ID, if possible the passed one */
2084   for (tmp = mqueue->queues; tmp; tmp = g_list_next (tmp)) {
2085     GstSingleQueue *sq2 = (GstSingleQueue *) tmp->data;
2086     /* This works because the IDs are sorted in ascending order */
2087     if (sq2->id == temp_id) {
2088       /* If this ID was requested by the caller return NULL,
2089        * otherwise just get us the next one */
2090       if (id == -1)
2091         temp_id = sq2->id + 1;
2092       else
2093         return NULL;
2094     } else if (sq2->id > temp_id) {
2095       break;
2096     }
2097   }
2098
2099   sq = g_new0 (GstSingleQueue, 1);
2100   mqueue->nbqueues++;
2101   sq->id = temp_id;
2102
2103   mqueue->queues = g_list_insert_before (mqueue->queues, tmp, sq);
2104   mqueue->queues_cookie++;
2105
2106   /* copy over max_size and extra_size so we don't need to take the lock
2107    * any longer when checking if the queue is full. */
2108   sq->max_size.visible = mqueue->max_size.visible;
2109   sq->max_size.bytes = mqueue->max_size.bytes;
2110   sq->max_size.time = mqueue->max_size.time;
2111
2112   sq->extra_size.visible = mqueue->extra_size.visible;
2113   sq->extra_size.bytes = mqueue->extra_size.bytes;
2114   sq->extra_size.time = mqueue->extra_size.time;
2115
2116   GST_DEBUG_OBJECT (mqueue, "Creating GstSingleQueue id:%d", sq->id);
2117
2118   sq->mqueue = mqueue;
2119   sq->srcresult = GST_FLOW_FLUSHING;
2120   sq->pushed = FALSE;
2121   sq->queue = gst_data_queue_new ((GstDataQueueCheckFullFunction)
2122       single_queue_check_full,
2123       (GstDataQueueFullCallback) single_queue_overrun_cb,
2124       (GstDataQueueEmptyCallback) single_queue_underrun_cb, sq);
2125   sq->is_eos = FALSE;
2126   sq->flushing = FALSE;
2127   gst_segment_init (&sq->sink_segment, GST_FORMAT_TIME);
2128   gst_segment_init (&sq->src_segment, GST_FORMAT_TIME);
2129
2130   sq->nextid = 0;
2131   sq->oldid = 0;
2132   sq->next_time = GST_CLOCK_TIME_NONE;
2133   sq->last_time = GST_CLOCK_TIME_NONE;
2134   g_cond_init (&sq->turn);
2135   g_cond_init (&sq->query_handled);
2136
2137   sq->sinktime = GST_CLOCK_TIME_NONE;
2138   sq->srctime = GST_CLOCK_TIME_NONE;
2139   sq->sink_tainted = TRUE;
2140   sq->src_tainted = TRUE;
2141
2142   name = g_strdup_printf ("sink_%u", sq->id);
2143   sq->sinkpad = gst_pad_new_from_static_template (&sinktemplate, name);
2144   g_free (name);
2145
2146   gst_pad_set_chain_function (sq->sinkpad,
2147       GST_DEBUG_FUNCPTR (gst_multi_queue_chain));
2148   gst_pad_set_activatemode_function (sq->sinkpad,
2149       GST_DEBUG_FUNCPTR (gst_multi_queue_sink_activate_mode));
2150   gst_pad_set_event_function (sq->sinkpad,
2151       GST_DEBUG_FUNCPTR (gst_multi_queue_sink_event));
2152   gst_pad_set_query_function (sq->sinkpad,
2153       GST_DEBUG_FUNCPTR (gst_multi_queue_sink_query));
2154   gst_pad_set_iterate_internal_links_function (sq->sinkpad,
2155       GST_DEBUG_FUNCPTR (gst_multi_queue_iterate_internal_links));
2156   GST_OBJECT_FLAG_SET (sq->sinkpad, GST_PAD_FLAG_PROXY_CAPS);
2157
2158   name = g_strdup_printf ("src_%u", sq->id);
2159   sq->srcpad = gst_pad_new_from_static_template (&srctemplate, name);
2160   g_free (name);
2161
2162   gst_pad_set_activatemode_function (sq->srcpad,
2163       GST_DEBUG_FUNCPTR (gst_multi_queue_src_activate_mode));
2164   gst_pad_set_event_function (sq->srcpad,
2165       GST_DEBUG_FUNCPTR (gst_multi_queue_src_event));
2166   gst_pad_set_query_function (sq->srcpad,
2167       GST_DEBUG_FUNCPTR (gst_multi_queue_src_query));
2168   gst_pad_set_iterate_internal_links_function (sq->srcpad,
2169       GST_DEBUG_FUNCPTR (gst_multi_queue_iterate_internal_links));
2170   GST_OBJECT_FLAG_SET (sq->srcpad, GST_PAD_FLAG_PROXY_CAPS);
2171
2172   gst_pad_set_element_private (sq->sinkpad, (gpointer) sq);
2173   gst_pad_set_element_private (sq->srcpad, (gpointer) sq);
2174
2175   GST_MULTI_QUEUE_MUTEX_UNLOCK (mqueue);
2176
2177   /* only activate the pads when we are not in the NULL state
2178    * and add the pad under the state_lock to prevend state changes
2179    * between activating and adding */
2180   g_rec_mutex_lock (GST_STATE_GET_LOCK (mqueue));
2181   if (GST_STATE_TARGET (mqueue) != GST_STATE_NULL) {
2182     gst_pad_set_active (sq->srcpad, TRUE);
2183     gst_pad_set_active (sq->sinkpad, TRUE);
2184   }
2185   gst_element_add_pad (GST_ELEMENT (mqueue), sq->srcpad);
2186   gst_element_add_pad (GST_ELEMENT (mqueue), sq->sinkpad);
2187   g_rec_mutex_unlock (GST_STATE_GET_LOCK (mqueue));
2188
2189   GST_DEBUG_OBJECT (mqueue, "GstSingleQueue [%d] created and pads added",
2190       sq->id);
2191
2192   return sq;
2193 }