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