aggregator: Add create_new_pad() vfunc to allow subclasses to override the default...
[platform/upstream/gstreamer.git] / libs / gst / base / gstaggregator.c
1 /* GStreamer aggregator base class
2  * Copyright (C) 2014 Mathieu Duponchelle <mathieu.duponchelle@opencreed.com>
3  * Copyright (C) 2014 Thibault Saunier <tsaunier@gnome.org>
4  *
5  * gstaggregator.c:
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
20  * Boston, MA 02110-1301, USA.
21  */
22 /**
23  * SECTION: gstaggregator
24  * @short_description: manages a set of pads with the purpose of
25  * aggregating their buffers.
26  * @see_also: gstcollectpads for historical reasons.
27  *
28  * Manages a set of pads with the purpose of aggregating their buffers.
29  * Control is given to the subclass when all pads have data.
30  * <itemizedlist>
31  *  <listitem><para>
32  *    Base class for mixers and muxers. Subclasses should at least implement
33  *    the #GstAggregatorClass.aggregate() virtual method.
34  *  </para></listitem>
35  *  <listitem><para>
36  *    When data is queued on all pads, tha aggregate vmethod is called.
37  *  </para></listitem>
38  *  <listitem><para>
39  *    One can peek at the data on any given GstAggregatorPad with the
40  *    gst_aggregator_pad_get_buffer () method, and take ownership of it
41  *    with the gst_aggregator_pad_steal_buffer () method. When a buffer
42  *    has been taken with steal_buffer (), a new buffer can be queued
43  *    on that pad.
44  *  </para></listitem>
45  *  <listitem><para>
46  *    If the subclass wishes to push a buffer downstream in its aggregate
47  *    implementation, it should do so through the
48  *    gst_aggregator_finish_buffer () method. This method will take care
49  *    of sending and ordering mandatory events such as stream start, caps
50  *    and segment.
51  *  </para></listitem>
52  *  <listitem><para>
53  *    Same goes for EOS events, which should not be pushed directly by the
54  *    subclass, it should instead return GST_FLOW_EOS in its aggregate
55  *    implementation.
56  *  </para></listitem>
57  *  <listitem><para>
58  *    Note that the aggregator logic regarding gap event handling is to turn
59  *    these into gap buffers with matching PTS and duration. It will also
60  *    flag these buffers with GST_BUFFER_FLAG_GAP and GST_BUFFER_FLAG_DROPPABLE
61  *    to ease their identification and subsequent processing.
62  *  </para></listitem>
63  * </itemizedlist>
64  */
65
66 #ifdef HAVE_CONFIG_H
67 #  include "config.h"
68 #endif
69
70 #include <string.h>             /* strlen */
71
72 #include "gstaggregator.h"
73
74 typedef enum
75 {
76   GST_AGGREGATOR_START_TIME_SELECTION_ZERO,
77   GST_AGGREGATOR_START_TIME_SELECTION_FIRST,
78   GST_AGGREGATOR_START_TIME_SELECTION_SET
79 } GstAggregatorStartTimeSelection;
80
81 static GType
82 gst_aggregator_start_time_selection_get_type (void)
83 {
84   static GType gtype = 0;
85
86   if (gtype == 0) {
87     static const GEnumValue values[] = {
88       {GST_AGGREGATOR_START_TIME_SELECTION_ZERO,
89           "Start at 0 running time (default)", "zero"},
90       {GST_AGGREGATOR_START_TIME_SELECTION_FIRST,
91           "Start at first observed input running time", "first"},
92       {GST_AGGREGATOR_START_TIME_SELECTION_SET,
93           "Set start time with start-time property", "set"},
94       {0, NULL, NULL}
95     };
96
97     gtype = g_enum_register_static ("GstAggregatorStartTimeSelection", values);
98   }
99   return gtype;
100 }
101
102 /*  Might become API */
103 static void gst_aggregator_merge_tags (GstAggregator * aggregator,
104     const GstTagList * tags, GstTagMergeMode mode);
105 static void gst_aggregator_set_latency_property (GstAggregator * agg,
106     gint64 latency);
107 static gint64 gst_aggregator_get_latency_property (GstAggregator * agg);
108
109
110 /* Locking order, locks in this element must always be taken in this order
111  *
112  * standard sink pad stream lock -> GST_PAD_STREAM_LOCK (aggpad)
113  * Aggregator pad flush lock -> PAD_FLUSH_LOCK(aggpad)
114  * standard src pad stream lock -> GST_PAD_STREAM_LOCK (srcpad)
115  * Aggregator src lock -> SRC_LOCK(agg) w/ SRC_WAIT/BROADCAST
116  * standard element object lock -> GST_OBJECT_LOCK(agg)
117  * Aggregator pad lock -> PAD_LOCK (aggpad) w/ PAD_WAIT/BROADCAST_EVENT(aggpad)
118  * standard src pad object lock -> GST_OBJECT_LOCK(srcpad)
119  * standard sink pad object lock -> GST_OBJECT_LOCK(aggpad)
120  */
121
122
123 static GstClockTime gst_aggregator_get_latency_unlocked (GstAggregator * self);
124
125 GST_DEBUG_CATEGORY_STATIC (aggregator_debug);
126 #define GST_CAT_DEFAULT aggregator_debug
127
128 /* GstAggregatorPad definitions */
129 #define PAD_LOCK(pad)   G_STMT_START {                                  \
130   GST_TRACE_OBJECT (pad, "Taking PAD lock from thread %p",              \
131         g_thread_self());                                               \
132   g_mutex_lock(&pad->priv->lock);                                       \
133   GST_TRACE_OBJECT (pad, "Took PAD lock from thread %p",                \
134         g_thread_self());                                               \
135   } G_STMT_END
136
137 #define PAD_UNLOCK(pad)  G_STMT_START {                                 \
138   GST_TRACE_OBJECT (pad, "Releasing PAD lock from thread %p",           \
139       g_thread_self());                                                 \
140   g_mutex_unlock(&pad->priv->lock);                                     \
141   GST_TRACE_OBJECT (pad, "Release PAD lock from thread %p",             \
142         g_thread_self());                                               \
143   } G_STMT_END
144
145
146 #define PAD_WAIT_EVENT(pad)   G_STMT_START {                            \
147   GST_LOG_OBJECT (pad, "Waiting for buffer to be consumed thread %p",   \
148         g_thread_self());                                               \
149   g_cond_wait(&(((GstAggregatorPad* )pad)->priv->event_cond),           \
150       (&((GstAggregatorPad*)pad)->priv->lock));                         \
151   GST_LOG_OBJECT (pad, "DONE Waiting for buffer to be consumed on thread %p", \
152         g_thread_self());                                               \
153   } G_STMT_END
154
155 #define PAD_BROADCAST_EVENT(pad) G_STMT_START {                        \
156   GST_LOG_OBJECT (pad, "Signaling buffer consumed from thread %p",     \
157         g_thread_self());                                              \
158   g_cond_broadcast(&(((GstAggregatorPad* )pad)->priv->event_cond));    \
159   } G_STMT_END
160
161
162 #define PAD_FLUSH_LOCK(pad)     G_STMT_START {                          \
163   GST_TRACE_OBJECT (pad, "Taking lock from thread %p",                  \
164         g_thread_self());                                               \
165   g_mutex_lock(&pad->priv->flush_lock);                                 \
166   GST_TRACE_OBJECT (pad, "Took lock from thread %p",                    \
167         g_thread_self());                                               \
168   } G_STMT_END
169
170 #define PAD_FLUSH_UNLOCK(pad)   G_STMT_START {                          \
171   GST_TRACE_OBJECT (pad, "Releasing lock from thread %p",               \
172         g_thread_self());                                               \
173   g_mutex_unlock(&pad->priv->flush_lock);                               \
174   GST_TRACE_OBJECT (pad, "Release lock from thread %p",                 \
175         g_thread_self());                                               \
176   } G_STMT_END
177
178 #define SRC_LOCK(self)   G_STMT_START {                             \
179   GST_TRACE_OBJECT (self, "Taking src lock from thread %p",         \
180       g_thread_self());                                             \
181   g_mutex_lock(&self->priv->src_lock);                              \
182   GST_TRACE_OBJECT (self, "Took src lock from thread %p",           \
183         g_thread_self());                                           \
184   } G_STMT_END
185
186 #define SRC_UNLOCK(self)  G_STMT_START {                            \
187   GST_TRACE_OBJECT (self, "Releasing src lock from thread %p",      \
188         g_thread_self());                                           \
189   g_mutex_unlock(&self->priv->src_lock);                            \
190   GST_TRACE_OBJECT (self, "Released src lock from thread %p",       \
191         g_thread_self());                                           \
192   } G_STMT_END
193
194 #define SRC_WAIT(self) G_STMT_START {                               \
195   GST_LOG_OBJECT (self, "Waiting for src on thread %p",             \
196         g_thread_self());                                           \
197   g_cond_wait(&(self->priv->src_cond), &(self->priv->src_lock));    \
198   GST_LOG_OBJECT (self, "DONE Waiting for src on thread %p",        \
199         g_thread_self());                                           \
200   } G_STMT_END
201
202 #define SRC_BROADCAST(self) G_STMT_START {                          \
203     GST_LOG_OBJECT (self, "Signaling src from thread %p",           \
204         g_thread_self());                                           \
205     if (self->priv->aggregate_id)                                   \
206       gst_clock_id_unschedule (self->priv->aggregate_id);           \
207     g_cond_broadcast(&(self->priv->src_cond));                      \
208   } G_STMT_END
209
210 struct _GstAggregatorPadPrivate
211 {
212   /* Following fields are protected by the PAD_LOCK */
213   GstFlowReturn flow_return;
214   gboolean pending_flush_start;
215   gboolean pending_flush_stop;
216   gboolean pending_eos;
217
218   gboolean first_buffer;
219
220   GQueue buffers;
221   guint num_buffers;
222   GstClockTime head_position;
223   GstClockTime tail_position;
224   GstClockTime head_time;
225   GstClockTime tail_time;
226   GstClockTime time_level;
227
228   gboolean eos;
229
230   GMutex lock;
231   GCond event_cond;
232   /* This lock prevents a flush start processing happening while
233    * the chain function is also happening.
234    */
235   GMutex flush_lock;
236 };
237
238 static gboolean
239 gst_aggregator_pad_flush (GstAggregatorPad * aggpad, GstAggregator * agg)
240 {
241   GstAggregatorPadClass *klass = GST_AGGREGATOR_PAD_GET_CLASS (aggpad);
242
243   PAD_LOCK (aggpad);
244   aggpad->priv->pending_eos = FALSE;
245   aggpad->priv->eos = FALSE;
246   aggpad->priv->flow_return = GST_FLOW_OK;
247   GST_OBJECT_LOCK (aggpad);
248   gst_segment_init (&aggpad->segment, GST_FORMAT_UNDEFINED);
249   gst_segment_init (&aggpad->clip_segment, GST_FORMAT_UNDEFINED);
250   GST_OBJECT_UNLOCK (aggpad);
251   aggpad->priv->head_position = GST_CLOCK_TIME_NONE;
252   aggpad->priv->tail_position = GST_CLOCK_TIME_NONE;
253   aggpad->priv->head_time = GST_CLOCK_TIME_NONE;
254   aggpad->priv->tail_time = GST_CLOCK_TIME_NONE;
255   aggpad->priv->time_level = 0;
256   PAD_UNLOCK (aggpad);
257
258   if (klass->flush)
259     return klass->flush (aggpad, agg);
260
261   return TRUE;
262 }
263
264 /*************************************
265  * GstAggregator implementation  *
266  *************************************/
267 static GstElementClass *aggregator_parent_class = NULL;
268
269 /* All members are protected by the object lock unless otherwise noted */
270
271 struct _GstAggregatorPrivate
272 {
273   gint padcount;
274
275   /* Our state is >= PAUSED */
276   gboolean running;             /* protected by src_lock */
277
278   gint seqnum;
279   gboolean send_stream_start;   /* protected by srcpad stream lock */
280   gboolean send_segment;
281   gboolean flush_seeking;
282   gboolean pending_flush_start;
283   gboolean send_eos;            /* protected by srcpad stream lock */
284
285   GstCaps *srccaps;             /* protected by the srcpad stream lock */
286
287   GstTagList *tags;
288   gboolean tags_changed;
289
290   gboolean peer_latency_live;   /* protected by src_lock */
291   GstClockTime peer_latency_min;        /* protected by src_lock */
292   GstClockTime peer_latency_max;        /* protected by src_lock */
293   gboolean has_peer_latency;
294
295   GstClockTime sub_latency_min; /* protected by src_lock */
296   GstClockTime sub_latency_max; /* protected by src_lock */
297
298   /* aggregate */
299   GstClockID aggregate_id;      /* protected by src_lock */
300   GMutex src_lock;
301   GCond src_cond;
302
303   gboolean first_buffer;
304   GstAggregatorStartTimeSelection start_time_selection;
305   GstClockTime start_time;
306
307   /* properties */
308   gint64 latency;               /* protected by both src_lock and all pad locks */
309 };
310
311 typedef struct
312 {
313   GstEvent *event;
314   gboolean result;
315   gboolean flush;
316   gboolean only_to_active_pads;
317
318   gboolean one_actually_seeked;
319 } EventData;
320
321 #define DEFAULT_LATENCY              0
322 #define DEFAULT_START_TIME_SELECTION GST_AGGREGATOR_START_TIME_SELECTION_ZERO
323 #define DEFAULT_START_TIME           (-1)
324
325 enum
326 {
327   PROP_0,
328   PROP_LATENCY,
329   PROP_START_TIME_SELECTION,
330   PROP_START_TIME,
331   PROP_LAST
332 };
333
334 static GstFlowReturn gst_aggregator_pad_chain_internal (GstAggregator * self,
335     GstAggregatorPad * aggpad, GstBuffer * buffer, gboolean head);
336
337 /**
338  * gst_aggregator_iterate_sinkpads:
339  * @self: The #GstAggregator
340  * @func: (scope call): The function to call.
341  * @user_data: (closure): The data to pass to @func.
342  *
343  * Iterate the sinkpads of aggregator to call a function on them.
344  *
345  * This method guarantees that @func will be called only once for each
346  * sink pad.
347  */
348 gboolean
349 gst_aggregator_iterate_sinkpads (GstAggregator * self,
350     GstAggregatorPadForeachFunc func, gpointer user_data)
351 {
352   gboolean result = FALSE;
353   GstIterator *iter;
354   gboolean done = FALSE;
355   GValue item = { 0, };
356   GList *seen_pads = NULL;
357
358   iter = gst_element_iterate_sink_pads (GST_ELEMENT (self));
359
360   if (!iter)
361     goto no_iter;
362
363   while (!done) {
364     switch (gst_iterator_next (iter, &item)) {
365       case GST_ITERATOR_OK:
366       {
367         GstAggregatorPad *pad;
368
369         pad = g_value_get_object (&item);
370
371         /* if already pushed, skip. FIXME, find something faster to tag pads */
372         if (pad == NULL || g_list_find (seen_pads, pad)) {
373           g_value_reset (&item);
374           break;
375         }
376
377         GST_LOG_OBJECT (pad, "calling function %s on pad",
378             GST_DEBUG_FUNCPTR_NAME (func));
379
380         result = func (self, pad, user_data);
381
382         done = !result;
383
384         seen_pads = g_list_prepend (seen_pads, pad);
385
386         g_value_reset (&item);
387         break;
388       }
389       case GST_ITERATOR_RESYNC:
390         gst_iterator_resync (iter);
391         break;
392       case GST_ITERATOR_ERROR:
393         GST_ERROR_OBJECT (self,
394             "Could not iterate over internally linked pads");
395         done = TRUE;
396         break;
397       case GST_ITERATOR_DONE:
398         done = TRUE;
399         break;
400     }
401   }
402   g_value_unset (&item);
403   gst_iterator_free (iter);
404
405   if (seen_pads == NULL) {
406     GST_DEBUG_OBJECT (self, "No pad seen");
407     return FALSE;
408   }
409
410   g_list_free (seen_pads);
411
412 no_iter:
413   return result;
414 }
415
416 static gboolean
417 gst_aggregator_pad_queue_is_empty (GstAggregatorPad * pad)
418 {
419   return (g_queue_peek_tail (&pad->priv->buffers) == NULL);
420 }
421
422 static gboolean
423 gst_aggregator_check_pads_ready (GstAggregator * self)
424 {
425   GstAggregatorPad *pad;
426   GList *l, *sinkpads;
427
428   GST_LOG_OBJECT (self, "checking pads");
429
430   GST_OBJECT_LOCK (self);
431
432   sinkpads = GST_ELEMENT_CAST (self)->sinkpads;
433   if (sinkpads == NULL)
434     goto no_sinkpads;
435
436   for (l = sinkpads; l != NULL; l = l->next) {
437     pad = l->data;
438
439     PAD_LOCK (pad);
440
441     /* In live mode, having a single pad with buffers is enough to
442      * generate a start time from it. In non-live mode all pads need
443      * to have a buffer
444      */
445     if (self->priv->peer_latency_live &&
446         !gst_aggregator_pad_queue_is_empty (pad))
447       self->priv->first_buffer = FALSE;
448
449     if (gst_aggregator_pad_queue_is_empty (pad) && !pad->priv->eos) {
450       PAD_UNLOCK (pad);
451       goto pad_not_ready;
452     }
453     PAD_UNLOCK (pad);
454
455   }
456
457   self->priv->first_buffer = FALSE;
458
459   GST_OBJECT_UNLOCK (self);
460   GST_LOG_OBJECT (self, "pads are ready");
461   return TRUE;
462
463 no_sinkpads:
464   {
465     GST_LOG_OBJECT (self, "pads not ready: no sink pads");
466     GST_OBJECT_UNLOCK (self);
467     return FALSE;
468   }
469 pad_not_ready:
470   {
471     GST_LOG_OBJECT (pad, "pad not ready to be aggregated yet");
472     GST_OBJECT_UNLOCK (self);
473     return FALSE;
474   }
475 }
476
477 static void
478 gst_aggregator_reset_flow_values (GstAggregator * self)
479 {
480   GST_OBJECT_LOCK (self);
481   self->priv->send_stream_start = TRUE;
482   self->priv->send_segment = TRUE;
483   gst_segment_init (&self->segment, GST_FORMAT_TIME);
484   self->priv->first_buffer = TRUE;
485   GST_OBJECT_UNLOCK (self);
486 }
487
488 static inline void
489 gst_aggregator_push_mandatory_events (GstAggregator * self)
490 {
491   GstAggregatorPrivate *priv = self->priv;
492   GstEvent *segment = NULL;
493   GstEvent *tags = NULL;
494
495   if (self->priv->send_stream_start) {
496     gchar s_id[32];
497
498     GST_INFO_OBJECT (self, "pushing stream start");
499     /* stream-start (FIXME: create id based on input ids) */
500     g_snprintf (s_id, sizeof (s_id), "agg-%08x", g_random_int ());
501     if (!gst_pad_push_event (self->srcpad, gst_event_new_stream_start (s_id))) {
502       GST_WARNING_OBJECT (self->srcpad, "Sending stream start event failed");
503     }
504     self->priv->send_stream_start = FALSE;
505   }
506
507   if (self->priv->srccaps) {
508
509     GST_INFO_OBJECT (self, "pushing caps: %" GST_PTR_FORMAT,
510         self->priv->srccaps);
511     if (!gst_pad_push_event (self->srcpad,
512             gst_event_new_caps (self->priv->srccaps))) {
513       GST_WARNING_OBJECT (self->srcpad, "Sending caps event failed");
514     }
515     gst_caps_unref (self->priv->srccaps);
516     self->priv->srccaps = NULL;
517   }
518
519   GST_OBJECT_LOCK (self);
520   if (self->priv->send_segment && !self->priv->flush_seeking) {
521     segment = gst_event_new_segment (&self->segment);
522
523     if (!self->priv->seqnum)
524       self->priv->seqnum = gst_event_get_seqnum (segment);
525     else
526       gst_event_set_seqnum (segment, self->priv->seqnum);
527     self->priv->send_segment = FALSE;
528
529     GST_DEBUG_OBJECT (self, "pushing segment %" GST_PTR_FORMAT, segment);
530   }
531
532   if (priv->tags && priv->tags_changed && !self->priv->flush_seeking) {
533     tags = gst_event_new_tag (gst_tag_list_ref (priv->tags));
534     priv->tags_changed = FALSE;
535   }
536   GST_OBJECT_UNLOCK (self);
537
538   if (segment)
539     gst_pad_push_event (self->srcpad, segment);
540   if (tags)
541     gst_pad_push_event (self->srcpad, tags);
542
543 }
544
545 /**
546  * gst_aggregator_set_src_caps:
547  * @self: The #GstAggregator
548  * @caps: The #GstCaps to set on the src pad.
549  *
550  * Sets the caps to be used on the src pad.
551  */
552 void
553 gst_aggregator_set_src_caps (GstAggregator * self, GstCaps * caps)
554 {
555   GST_PAD_STREAM_LOCK (self->srcpad);
556   gst_caps_replace (&self->priv->srccaps, caps);
557   gst_aggregator_push_mandatory_events (self);
558   GST_PAD_STREAM_UNLOCK (self->srcpad);
559 }
560
561 /**
562  * gst_aggregator_finish_buffer:
563  * @self: The #GstAggregator
564  * @buffer: (transfer full): the #GstBuffer to push.
565  *
566  * This method will push the provided output buffer downstream. If needed,
567  * mandatory events such as stream-start, caps, and segment events will be
568  * sent before pushing the buffer.
569  */
570 GstFlowReturn
571 gst_aggregator_finish_buffer (GstAggregator * self, GstBuffer * buffer)
572 {
573   gst_aggregator_push_mandatory_events (self);
574
575   GST_OBJECT_LOCK (self);
576   if (!self->priv->flush_seeking && gst_pad_is_active (self->srcpad)) {
577     GST_TRACE_OBJECT (self, "pushing buffer %" GST_PTR_FORMAT, buffer);
578     GST_OBJECT_UNLOCK (self);
579     return gst_pad_push (self->srcpad, buffer);
580   } else {
581     GST_INFO_OBJECT (self, "Not pushing (active: %i, flushing: %i)",
582         self->priv->flush_seeking, gst_pad_is_active (self->srcpad));
583     GST_OBJECT_UNLOCK (self);
584     gst_buffer_unref (buffer);
585     return GST_FLOW_OK;
586   }
587 }
588
589 static void
590 gst_aggregator_push_eos (GstAggregator * self)
591 {
592   GstEvent *event;
593   gst_aggregator_push_mandatory_events (self);
594
595   event = gst_event_new_eos ();
596
597   GST_OBJECT_LOCK (self);
598   self->priv->send_eos = FALSE;
599   gst_event_set_seqnum (event, self->priv->seqnum);
600   GST_OBJECT_UNLOCK (self);
601
602   gst_pad_push_event (self->srcpad, event);
603 }
604
605 static GstClockTime
606 gst_aggregator_get_next_time (GstAggregator * self)
607 {
608   GstAggregatorClass *klass = GST_AGGREGATOR_GET_CLASS (self);
609
610   if (klass->get_next_time)
611     return klass->get_next_time (self);
612
613   return GST_CLOCK_TIME_NONE;
614 }
615
616 static gboolean
617 gst_aggregator_wait_and_check (GstAggregator * self, gboolean * timeout)
618 {
619   GstClockTime latency;
620   GstClockTime start;
621   gboolean res;
622
623   *timeout = FALSE;
624
625   SRC_LOCK (self);
626
627   latency = gst_aggregator_get_latency_unlocked (self);
628
629   if (gst_aggregator_check_pads_ready (self)) {
630     GST_DEBUG_OBJECT (self, "all pads have data");
631     SRC_UNLOCK (self);
632
633     return TRUE;
634   }
635
636   /* Before waiting, check if we're actually still running */
637   if (!self->priv->running || !self->priv->send_eos) {
638     SRC_UNLOCK (self);
639
640     return FALSE;
641   }
642
643   start = gst_aggregator_get_next_time (self);
644
645   /* If we're not live, or if we use the running time
646    * of the first buffer as start time, we wait until
647    * all pads have buffers.
648    * Otherwise (i.e. if we are live!), we wait on the clock
649    * and if a pad does not have a buffer in time we ignore
650    * that pad.
651    */
652   if (!GST_CLOCK_TIME_IS_VALID (latency) ||
653       !GST_IS_CLOCK (GST_ELEMENT_CLOCK (self)) ||
654       !GST_CLOCK_TIME_IS_VALID (start) ||
655       (self->priv->first_buffer
656           && self->priv->start_time_selection ==
657           GST_AGGREGATOR_START_TIME_SELECTION_FIRST)) {
658     /* We wake up here when something happened, and below
659      * then check if we're ready now. If we return FALSE,
660      * we will be directly called again.
661      */
662     SRC_WAIT (self);
663   } else {
664     GstClockTime base_time, time;
665     GstClock *clock;
666     GstClockReturn status;
667     GstClockTimeDiff jitter;
668
669     GST_DEBUG_OBJECT (self, "got subclass start time: %" GST_TIME_FORMAT,
670         GST_TIME_ARGS (start));
671
672     GST_OBJECT_LOCK (self);
673     base_time = GST_ELEMENT_CAST (self)->base_time;
674     clock = GST_ELEMENT_CLOCK (self);
675     if (clock)
676       gst_object_ref (clock);
677     GST_OBJECT_UNLOCK (self);
678
679     time = base_time + start;
680     time += latency;
681
682     GST_DEBUG_OBJECT (self, "possibly waiting for clock to reach %"
683         GST_TIME_FORMAT " (base %" GST_TIME_FORMAT " start %" GST_TIME_FORMAT
684         " latency %" GST_TIME_FORMAT " current %" GST_TIME_FORMAT ")",
685         GST_TIME_ARGS (time),
686         GST_TIME_ARGS (GST_ELEMENT_CAST (self)->base_time),
687         GST_TIME_ARGS (start), GST_TIME_ARGS (latency),
688         GST_TIME_ARGS (gst_clock_get_time (clock)));
689
690     self->priv->aggregate_id = gst_clock_new_single_shot_id (clock, time);
691     gst_object_unref (clock);
692     SRC_UNLOCK (self);
693
694     jitter = 0;
695     status = gst_clock_id_wait (self->priv->aggregate_id, &jitter);
696
697     SRC_LOCK (self);
698     if (self->priv->aggregate_id) {
699       gst_clock_id_unref (self->priv->aggregate_id);
700       self->priv->aggregate_id = NULL;
701     }
702
703     GST_DEBUG_OBJECT (self,
704         "clock returned %d (jitter: %s%" GST_TIME_FORMAT ")",
705         status, (jitter < 0 ? "-" : " "),
706         GST_TIME_ARGS ((jitter < 0 ? -jitter : jitter)));
707
708     /* we timed out */
709     if (status == GST_CLOCK_OK || status == GST_CLOCK_EARLY) {
710       SRC_UNLOCK (self);
711       *timeout = TRUE;
712       return TRUE;
713     }
714   }
715
716   res = gst_aggregator_check_pads_ready (self);
717   SRC_UNLOCK (self);
718
719   return res;
720 }
721
722 static gboolean
723 check_events (GstAggregator * self, GstAggregatorPad * pad, gpointer user_data)
724 {
725   GstEvent *event = NULL;
726   GstAggregatorClass *klass = NULL;
727   gboolean *processed_event = user_data;
728
729   do {
730     event = NULL;
731
732     PAD_LOCK (pad);
733     if (gst_aggregator_pad_queue_is_empty (pad) && pad->priv->pending_eos) {
734       pad->priv->pending_eos = FALSE;
735       pad->priv->eos = TRUE;
736     }
737     if (GST_IS_EVENT (g_queue_peek_tail (&pad->priv->buffers))) {
738       event = g_queue_pop_tail (&pad->priv->buffers);
739       PAD_BROADCAST_EVENT (pad);
740     }
741     PAD_UNLOCK (pad);
742     if (event) {
743       if (processed_event)
744         *processed_event = TRUE;
745       if (klass == NULL)
746         klass = GST_AGGREGATOR_GET_CLASS (self);
747
748       GST_LOG_OBJECT (pad, "Processing %" GST_PTR_FORMAT, event);
749       klass->sink_event (self, pad, event);
750     }
751   } while (event != NULL);
752
753   return TRUE;
754 }
755
756 static void
757 gst_aggregator_pad_set_flushing (GstAggregatorPad * aggpad,
758     GstFlowReturn flow_return, gboolean full)
759 {
760   GList *item;
761
762   PAD_LOCK (aggpad);
763   if (flow_return == GST_FLOW_NOT_LINKED)
764     aggpad->priv->flow_return = MIN (flow_return, aggpad->priv->flow_return);
765   else
766     aggpad->priv->flow_return = flow_return;
767
768   item = g_queue_peek_head_link (&aggpad->priv->buffers);
769   while (item) {
770     GList *next = item->next;
771
772     /* In partial flush, we do like the pad, we get rid of non-sticky events
773      * and EOS/SEGMENT.
774      */
775     if (full || GST_IS_BUFFER (item->data) ||
776         GST_EVENT_TYPE (item->data) == GST_EVENT_EOS ||
777         GST_EVENT_TYPE (item->data) == GST_EVENT_SEGMENT ||
778         !GST_EVENT_IS_STICKY (item->data)) {
779       gst_mini_object_unref (item->data);
780       g_queue_delete_link (&aggpad->priv->buffers, item);
781     }
782     item = next;
783   }
784   aggpad->priv->num_buffers = 0;
785
786   PAD_BROADCAST_EVENT (aggpad);
787   PAD_UNLOCK (aggpad);
788 }
789
790 static void
791 gst_aggregator_aggregate_func (GstAggregator * self)
792 {
793   GstAggregatorPrivate *priv = self->priv;
794   GstAggregatorClass *klass = GST_AGGREGATOR_GET_CLASS (self);
795   gboolean timeout = FALSE;
796
797   if (self->priv->running == FALSE) {
798     GST_DEBUG_OBJECT (self, "Not running anymore");
799     return;
800   }
801
802   GST_LOG_OBJECT (self, "Checking aggregate");
803   while (priv->send_eos && priv->running) {
804     GstFlowReturn flow_return;
805     gboolean processed_event = FALSE;
806
807     gst_aggregator_iterate_sinkpads (self, check_events, NULL);
808
809     if (!gst_aggregator_wait_and_check (self, &timeout))
810       continue;
811
812     gst_aggregator_iterate_sinkpads (self, check_events, &processed_event);
813     if (processed_event)
814       continue;
815
816     GST_TRACE_OBJECT (self, "Actually aggregating!");
817     flow_return = klass->aggregate (self, timeout);
818
819     GST_OBJECT_LOCK (self);
820     if (flow_return == GST_FLOW_FLUSHING && priv->flush_seeking) {
821       /* We don't want to set the pads to flushing, but we want to
822        * stop the thread, so just break here */
823       GST_OBJECT_UNLOCK (self);
824       break;
825     }
826     GST_OBJECT_UNLOCK (self);
827
828     if (flow_return == GST_FLOW_EOS || flow_return == GST_FLOW_ERROR) {
829       gst_aggregator_push_eos (self);
830     }
831
832     GST_LOG_OBJECT (self, "flow return is %s", gst_flow_get_name (flow_return));
833
834     if (flow_return != GST_FLOW_OK) {
835       GList *item;
836
837       GST_OBJECT_LOCK (self);
838       for (item = GST_ELEMENT (self)->sinkpads; item; item = item->next) {
839         GstAggregatorPad *aggpad = GST_AGGREGATOR_PAD (item->data);
840
841         gst_aggregator_pad_set_flushing (aggpad, flow_return, TRUE);
842       }
843       GST_OBJECT_UNLOCK (self);
844       break;
845     }
846   }
847
848   /* Pause the task here, the only ways to get here are:
849    * 1) We're stopping, in which case the task is stopped anyway
850    * 2) We got a flow error above, in which case it might take
851    *    some time to forward the flow return upstream and we
852    *    would otherwise call the task function over and over
853    *    again without doing anything
854    */
855   gst_pad_pause_task (self->srcpad);
856 }
857
858 static gboolean
859 gst_aggregator_start (GstAggregator * self)
860 {
861   GstAggregatorClass *klass;
862   gboolean result;
863
864   self->priv->running = TRUE;
865   self->priv->send_stream_start = TRUE;
866   self->priv->send_segment = TRUE;
867   self->priv->send_eos = TRUE;
868   self->priv->srccaps = NULL;
869
870   klass = GST_AGGREGATOR_GET_CLASS (self);
871
872   if (klass->start)
873     result = klass->start (self);
874   else
875     result = TRUE;
876
877   return result;
878 }
879
880 static gboolean
881 _check_pending_flush_stop (GstAggregatorPad * pad)
882 {
883   gboolean res;
884
885   PAD_LOCK (pad);
886   res = (!pad->priv->pending_flush_stop && !pad->priv->pending_flush_start);
887   PAD_UNLOCK (pad);
888
889   return res;
890 }
891
892 static gboolean
893 gst_aggregator_stop_srcpad_task (GstAggregator * self, GstEvent * flush_start)
894 {
895   gboolean res = TRUE;
896
897   GST_INFO_OBJECT (self, "%s srcpad task",
898       flush_start ? "Pausing" : "Stopping");
899
900   SRC_LOCK (self);
901   self->priv->running = FALSE;
902   SRC_BROADCAST (self);
903   SRC_UNLOCK (self);
904
905   if (flush_start) {
906     res = gst_pad_push_event (self->srcpad, flush_start);
907   }
908
909   gst_pad_stop_task (self->srcpad);
910
911   return res;
912 }
913
914 static void
915 gst_aggregator_start_srcpad_task (GstAggregator * self)
916 {
917   GST_INFO_OBJECT (self, "Starting srcpad task");
918
919   self->priv->running = TRUE;
920   gst_pad_start_task (GST_PAD (self->srcpad),
921       (GstTaskFunction) gst_aggregator_aggregate_func, self, NULL);
922 }
923
924 static GstFlowReturn
925 gst_aggregator_flush (GstAggregator * self)
926 {
927   GstFlowReturn ret = GST_FLOW_OK;
928   GstAggregatorPrivate *priv = self->priv;
929   GstAggregatorClass *klass = GST_AGGREGATOR_GET_CLASS (self);
930
931   GST_DEBUG_OBJECT (self, "Flushing everything");
932   GST_OBJECT_LOCK (self);
933   priv->send_segment = TRUE;
934   priv->flush_seeking = FALSE;
935   priv->tags_changed = FALSE;
936   GST_OBJECT_UNLOCK (self);
937   if (klass->flush)
938     ret = klass->flush (self);
939
940   return ret;
941 }
942
943
944 /* Called with GstAggregator's object lock held */
945
946 static gboolean
947 gst_aggregator_all_flush_stop_received_locked (GstAggregator * self)
948 {
949   GList *tmp;
950   GstAggregatorPad *tmppad;
951
952   for (tmp = GST_ELEMENT (self)->sinkpads; tmp; tmp = tmp->next) {
953     tmppad = (GstAggregatorPad *) tmp->data;
954
955     if (_check_pending_flush_stop (tmppad) == FALSE) {
956       GST_DEBUG_OBJECT (tmppad, "Is not last %i -- %i",
957           tmppad->priv->pending_flush_start, tmppad->priv->pending_flush_stop);
958       return FALSE;
959     }
960   }
961
962   return TRUE;
963 }
964
965 static void
966 gst_aggregator_flush_start (GstAggregator * self, GstAggregatorPad * aggpad,
967     GstEvent * event)
968 {
969   GstAggregatorPrivate *priv = self->priv;
970   GstAggregatorPadPrivate *padpriv = aggpad->priv;
971
972   gst_aggregator_pad_set_flushing (aggpad, GST_FLOW_FLUSHING, FALSE);
973
974   PAD_FLUSH_LOCK (aggpad);
975   PAD_LOCK (aggpad);
976   if (padpriv->pending_flush_start) {
977     GST_DEBUG_OBJECT (aggpad, "Expecting FLUSH_STOP now");
978
979     padpriv->pending_flush_start = FALSE;
980     padpriv->pending_flush_stop = TRUE;
981   }
982   PAD_UNLOCK (aggpad);
983
984   GST_OBJECT_LOCK (self);
985   if (priv->flush_seeking) {
986     /* If flush_seeking we forward the first FLUSH_START */
987     if (priv->pending_flush_start) {
988       priv->pending_flush_start = FALSE;
989       GST_OBJECT_UNLOCK (self);
990
991       GST_INFO_OBJECT (self, "Flushing, pausing srcpad task");
992       gst_aggregator_stop_srcpad_task (self, event);
993
994       GST_INFO_OBJECT (self, "Getting STREAM_LOCK while seeking");
995       GST_PAD_STREAM_LOCK (self->srcpad);
996       GST_LOG_OBJECT (self, "GOT STREAM_LOCK");
997       event = NULL;
998     } else {
999       GST_OBJECT_UNLOCK (self);
1000       gst_event_unref (event);
1001     }
1002   } else {
1003     GST_OBJECT_UNLOCK (self);
1004     gst_event_unref (event);
1005   }
1006   PAD_FLUSH_UNLOCK (aggpad);
1007 }
1008
1009 /* Must be called with the the PAD_LOCK held */
1010 static void
1011 update_time_level (GstAggregatorPad * aggpad, gboolean head)
1012 {
1013   if (head) {
1014     if (GST_CLOCK_TIME_IS_VALID (aggpad->priv->head_position) &&
1015         aggpad->clip_segment.format == GST_FORMAT_TIME)
1016       aggpad->priv->head_time =
1017           gst_segment_to_running_time (&aggpad->clip_segment,
1018           GST_FORMAT_TIME, aggpad->priv->head_position);
1019     else
1020       aggpad->priv->head_time = GST_CLOCK_TIME_NONE;
1021   } else {
1022     if (GST_CLOCK_TIME_IS_VALID (aggpad->priv->tail_position) &&
1023         aggpad->segment.format == GST_FORMAT_TIME)
1024       aggpad->priv->tail_time =
1025           gst_segment_to_running_time (&aggpad->segment,
1026           GST_FORMAT_TIME, aggpad->priv->tail_position);
1027     else
1028       aggpad->priv->tail_time = aggpad->priv->head_time;
1029   }
1030
1031   if (aggpad->priv->head_time == GST_CLOCK_TIME_NONE ||
1032       aggpad->priv->tail_time == GST_CLOCK_TIME_NONE) {
1033     aggpad->priv->time_level = 0;
1034     return;
1035   }
1036
1037   if (aggpad->priv->tail_time > aggpad->priv->head_time)
1038     aggpad->priv->time_level = 0;
1039   else
1040     aggpad->priv->time_level = aggpad->priv->head_time -
1041         aggpad->priv->tail_time;
1042 }
1043
1044
1045 /* GstAggregator vmethods default implementations */
1046 static gboolean
1047 gst_aggregator_default_sink_event (GstAggregator * self,
1048     GstAggregatorPad * aggpad, GstEvent * event)
1049 {
1050   gboolean res = TRUE;
1051   GstPad *pad = GST_PAD (aggpad);
1052   GstAggregatorPrivate *priv = self->priv;
1053
1054   switch (GST_EVENT_TYPE (event)) {
1055     case GST_EVENT_FLUSH_START:
1056     {
1057       gst_aggregator_flush_start (self, aggpad, event);
1058       /* We forward only in one case: right after flush_seeking */
1059       event = NULL;
1060       goto eat;
1061     }
1062     case GST_EVENT_FLUSH_STOP:
1063     {
1064       GST_DEBUG_OBJECT (aggpad, "Got FLUSH_STOP");
1065
1066       gst_aggregator_pad_flush (aggpad, self);
1067       GST_OBJECT_LOCK (self);
1068       if (priv->flush_seeking) {
1069         g_atomic_int_set (&aggpad->priv->pending_flush_stop, FALSE);
1070         if (gst_aggregator_all_flush_stop_received_locked (self)) {
1071           GST_OBJECT_UNLOCK (self);
1072           /* That means we received FLUSH_STOP/FLUSH_STOP on
1073            * all sinkpads -- Seeking is Done... sending FLUSH_STOP */
1074           gst_aggregator_flush (self);
1075           gst_pad_push_event (self->srcpad, event);
1076           event = NULL;
1077           SRC_LOCK (self);
1078           priv->send_eos = TRUE;
1079           SRC_BROADCAST (self);
1080           SRC_UNLOCK (self);
1081
1082           GST_INFO_OBJECT (self, "Releasing source pad STREAM_LOCK");
1083           GST_PAD_STREAM_UNLOCK (self->srcpad);
1084           gst_aggregator_start_srcpad_task (self);
1085         } else {
1086           GST_OBJECT_UNLOCK (self);
1087         }
1088       } else {
1089         GST_OBJECT_UNLOCK (self);
1090       }
1091
1092       aggpad->priv->first_buffer = TRUE;
1093
1094       /* We never forward the event */
1095       goto eat;
1096     }
1097     case GST_EVENT_EOS:
1098     {
1099       GST_DEBUG_OBJECT (aggpad, "EOS");
1100
1101       /* We still have a buffer, and we don't want the subclass to have to
1102        * check for it. Mark pending_eos, eos will be set when steal_buffer is
1103        * called
1104        */
1105       SRC_LOCK (self);
1106       PAD_LOCK (aggpad);
1107       if (gst_aggregator_pad_queue_is_empty (aggpad)) {
1108         aggpad->priv->eos = TRUE;
1109       } else {
1110         aggpad->priv->pending_eos = TRUE;
1111       }
1112       PAD_UNLOCK (aggpad);
1113
1114       SRC_BROADCAST (self);
1115       SRC_UNLOCK (self);
1116       goto eat;
1117     }
1118     case GST_EVENT_SEGMENT:
1119     {
1120       PAD_LOCK (aggpad);
1121       GST_OBJECT_LOCK (aggpad);
1122       gst_event_copy_segment (event, &aggpad->segment);
1123       update_time_level (aggpad, FALSE);
1124       GST_OBJECT_UNLOCK (aggpad);
1125       PAD_UNLOCK (aggpad);
1126
1127       GST_OBJECT_LOCK (self);
1128       self->priv->seqnum = gst_event_get_seqnum (event);
1129       GST_OBJECT_UNLOCK (self);
1130       goto eat;
1131     }
1132     case GST_EVENT_STREAM_START:
1133     {
1134       goto eat;
1135     }
1136     case GST_EVENT_GAP:
1137     {
1138       GstClockTime pts, endpts;
1139       GstClockTime duration;
1140       GstBuffer *gapbuf;
1141
1142       gst_event_parse_gap (event, &pts, &duration);
1143       gapbuf = gst_buffer_new ();
1144
1145       if (GST_CLOCK_TIME_IS_VALID (duration))
1146         endpts = pts + duration;
1147       else
1148         endpts = GST_CLOCK_TIME_NONE;
1149
1150       GST_OBJECT_LOCK (aggpad);
1151       res = gst_segment_clip (&aggpad->segment, GST_FORMAT_TIME, pts, endpts,
1152           &pts, &endpts);
1153       GST_OBJECT_UNLOCK (aggpad);
1154
1155       if (!res) {
1156         GST_WARNING_OBJECT (self, "GAP event outside segment, dropping");
1157         goto eat;
1158       }
1159
1160       if (GST_CLOCK_TIME_IS_VALID (endpts) && GST_CLOCK_TIME_IS_VALID (pts))
1161         duration = endpts - pts;
1162       else
1163         duration = GST_CLOCK_TIME_NONE;
1164
1165       GST_BUFFER_PTS (gapbuf) = pts;
1166       GST_BUFFER_DURATION (gapbuf) = duration;
1167       GST_BUFFER_FLAG_SET (gapbuf, GST_BUFFER_FLAG_GAP);
1168       GST_BUFFER_FLAG_SET (gapbuf, GST_BUFFER_FLAG_DROPPABLE);
1169
1170       if (gst_aggregator_pad_chain_internal (self, aggpad, gapbuf, FALSE) !=
1171           GST_FLOW_OK) {
1172         GST_WARNING_OBJECT (self, "Failed to chain gap buffer");
1173         res = FALSE;
1174       }
1175
1176       goto eat;
1177     }
1178     case GST_EVENT_TAG:
1179     {
1180       GstTagList *tags;
1181
1182       gst_event_parse_tag (event, &tags);
1183
1184       if (gst_tag_list_get_scope (tags) == GST_TAG_SCOPE_STREAM) {
1185         gst_aggregator_merge_tags (self, tags, GST_TAG_MERGE_REPLACE);
1186         gst_event_unref (event);
1187         event = NULL;
1188         goto eat;
1189       }
1190       break;
1191     }
1192     default:
1193     {
1194       break;
1195     }
1196   }
1197
1198   GST_DEBUG_OBJECT (pad, "Forwarding event: %" GST_PTR_FORMAT, event);
1199   return gst_pad_event_default (pad, GST_OBJECT (self), event);
1200
1201 eat:
1202   GST_DEBUG_OBJECT (pad, "Eating event: %" GST_PTR_FORMAT, event);
1203   if (event)
1204     gst_event_unref (event);
1205
1206   return res;
1207 }
1208
1209 static inline gboolean
1210 gst_aggregator_stop_pad (GstAggregator * self, GstAggregatorPad * pad,
1211     gpointer unused_udata)
1212 {
1213   gst_aggregator_pad_flush (pad, self);
1214
1215   return TRUE;
1216 }
1217
1218 static gboolean
1219 gst_aggregator_stop (GstAggregator * agg)
1220 {
1221   GstAggregatorClass *klass;
1222   gboolean result;
1223
1224   gst_aggregator_reset_flow_values (agg);
1225
1226   gst_aggregator_iterate_sinkpads (agg, gst_aggregator_stop_pad, NULL);
1227
1228   klass = GST_AGGREGATOR_GET_CLASS (agg);
1229
1230   if (klass->stop)
1231     result = klass->stop (agg);
1232   else
1233     result = TRUE;
1234
1235   agg->priv->has_peer_latency = FALSE;
1236   agg->priv->peer_latency_live = FALSE;
1237   agg->priv->peer_latency_min = agg->priv->peer_latency_max = FALSE;
1238
1239   if (agg->priv->tags)
1240     gst_tag_list_unref (agg->priv->tags);
1241   agg->priv->tags = NULL;
1242
1243   return result;
1244 }
1245
1246 /* GstElement vmethods implementations */
1247 static GstStateChangeReturn
1248 gst_aggregator_change_state (GstElement * element, GstStateChange transition)
1249 {
1250   GstStateChangeReturn ret;
1251   GstAggregator *self = GST_AGGREGATOR (element);
1252
1253   switch (transition) {
1254     case GST_STATE_CHANGE_READY_TO_PAUSED:
1255       if (!gst_aggregator_start (self))
1256         goto error_start;
1257       break;
1258     default:
1259       break;
1260   }
1261
1262   if ((ret =
1263           GST_ELEMENT_CLASS (aggregator_parent_class)->change_state (element,
1264               transition)) == GST_STATE_CHANGE_FAILURE)
1265     goto failure;
1266
1267
1268   switch (transition) {
1269     case GST_STATE_CHANGE_PAUSED_TO_READY:
1270       if (!gst_aggregator_stop (self)) {
1271         /* What to do in this case? Error out? */
1272         GST_ERROR_OBJECT (self, "Subclass failed to stop.");
1273       }
1274       break;
1275     default:
1276       break;
1277   }
1278
1279   return ret;
1280
1281 /* ERRORS */
1282 failure:
1283   {
1284     GST_ERROR_OBJECT (element, "parent failed state change");
1285     return ret;
1286   }
1287 error_start:
1288   {
1289     GST_ERROR_OBJECT (element, "Subclass failed to start");
1290     return GST_STATE_CHANGE_FAILURE;
1291   }
1292 }
1293
1294 static void
1295 gst_aggregator_release_pad (GstElement * element, GstPad * pad)
1296 {
1297   GstAggregator *self = GST_AGGREGATOR (element);
1298   GstAggregatorPad *aggpad = GST_AGGREGATOR_PAD (pad);
1299
1300   GST_INFO_OBJECT (pad, "Removing pad");
1301
1302   SRC_LOCK (self);
1303   gst_aggregator_pad_set_flushing (aggpad, GST_FLOW_FLUSHING, TRUE);
1304   gst_element_remove_pad (element, pad);
1305
1306   self->priv->has_peer_latency = FALSE;
1307   SRC_BROADCAST (self);
1308   SRC_UNLOCK (self);
1309 }
1310
1311 static GstAggregatorPad *
1312 gst_aggregator_default_create_new_pad (GstAggregator * self,
1313     GstPadTemplate * templ, const gchar * req_name, const GstCaps * caps)
1314 {
1315   GstAggregatorPad *agg_pad;
1316   GstElementClass *klass = GST_ELEMENT_GET_CLASS (self);
1317   GstAggregatorPrivate *priv = self->priv;
1318
1319   if (templ == gst_element_class_get_pad_template (klass, "sink_%u")) {
1320     gint serial = 0;
1321     gchar *name = NULL;
1322
1323     GST_OBJECT_LOCK (self);
1324     if (req_name == NULL || strlen (req_name) < 6
1325         || !g_str_has_prefix (req_name, "sink_")) {
1326       /* no name given when requesting the pad, use next available int */
1327       priv->padcount++;
1328     } else {
1329       /* parse serial number from requested padname */
1330       serial = g_ascii_strtoull (&req_name[5], NULL, 10);
1331       if (serial >= priv->padcount)
1332         priv->padcount = serial;
1333     }
1334
1335     name = g_strdup_printf ("sink_%u", priv->padcount);
1336     agg_pad = g_object_new (GST_AGGREGATOR_GET_CLASS (self)->sinkpads_type,
1337         "name", name, "direction", GST_PAD_SINK, "template", templ, NULL);
1338     g_free (name);
1339
1340     GST_OBJECT_UNLOCK (self);
1341
1342     return agg_pad;
1343   } else {
1344     return NULL;
1345   }
1346 }
1347
1348 static GstPad *
1349 gst_aggregator_request_new_pad (GstElement * element,
1350     GstPadTemplate * templ, const gchar * req_name, const GstCaps * caps)
1351 {
1352   GstAggregator *self;
1353   GstAggregatorPad *agg_pad;
1354   GstAggregatorClass *klass = GST_AGGREGATOR_GET_CLASS (element);
1355   GstAggregatorPrivate *priv = GST_AGGREGATOR (element)->priv;
1356
1357   self = GST_AGGREGATOR (element);
1358
1359   agg_pad = klass->create_new_pad (self, templ, req_name, caps);
1360   if (!agg_pad) {
1361     GST_ERROR_OBJECT (element, "Couldn't create new pad");
1362     return NULL;
1363   }
1364
1365   GST_DEBUG_OBJECT (element, "Adding pad %s", GST_PAD_NAME (agg_pad));
1366   self->priv->has_peer_latency = FALSE;
1367
1368   if (priv->running)
1369     gst_pad_set_active (GST_PAD (agg_pad), TRUE);
1370
1371   /* add the pad to the element */
1372   gst_element_add_pad (element, GST_PAD (agg_pad));
1373
1374   return GST_PAD (agg_pad);
1375 }
1376
1377 /* Must be called with SRC_LOCK held */
1378
1379 static gboolean
1380 gst_aggregator_query_latency_unlocked (GstAggregator * self, GstQuery * query)
1381 {
1382   gboolean query_ret, live;
1383   GstClockTime our_latency, min, max;
1384
1385   query_ret = gst_pad_query_default (self->srcpad, GST_OBJECT (self), query);
1386
1387   if (!query_ret) {
1388     GST_WARNING_OBJECT (self, "Latency query failed");
1389     return FALSE;
1390   }
1391
1392   gst_query_parse_latency (query, &live, &min, &max);
1393
1394   our_latency = self->priv->latency;
1395
1396   if (G_UNLIKELY (!GST_CLOCK_TIME_IS_VALID (min))) {
1397     GST_ERROR_OBJECT (self, "Invalid minimum latency %" GST_TIME_FORMAT
1398         ". Please file a bug at " PACKAGE_BUGREPORT ".", GST_TIME_ARGS (min));
1399     return FALSE;
1400   }
1401
1402   if (min > max && GST_CLOCK_TIME_IS_VALID (max)) {
1403     GST_ELEMENT_WARNING (self, CORE, CLOCK, (NULL),
1404         ("Impossible to configure latency: max %" GST_TIME_FORMAT " < min %"
1405             GST_TIME_FORMAT ". Add queues or other buffering elements.",
1406             GST_TIME_ARGS (max), GST_TIME_ARGS (min)));
1407     return FALSE;
1408   }
1409
1410   self->priv->peer_latency_live = live;
1411   self->priv->peer_latency_min = min;
1412   self->priv->peer_latency_max = max;
1413   self->priv->has_peer_latency = TRUE;
1414
1415   /* add our own */
1416   min += our_latency;
1417   min += self->priv->sub_latency_min;
1418   if (GST_CLOCK_TIME_IS_VALID (self->priv->sub_latency_max)
1419       && GST_CLOCK_TIME_IS_VALID (max))
1420     max += self->priv->sub_latency_max + our_latency;
1421   else
1422     max = GST_CLOCK_TIME_NONE;
1423
1424   if (live && min > max) {
1425     GST_ELEMENT_WARNING (self, CORE, NEGOTIATION,
1426         ("%s", "Latency too big"),
1427         ("The requested latency value is too big for the current pipeline. "
1428             "Limiting to %" G_GINT64_FORMAT, max));
1429     min = max;
1430     /* FIXME: This could in theory become negative, but in
1431      * that case all is lost anyway */
1432     self->priv->latency -= min - max;
1433     /* FIXME: shouldn't we g_object_notify() the change here? */
1434   }
1435
1436   SRC_BROADCAST (self);
1437
1438   GST_DEBUG_OBJECT (self, "configured latency live:%s min:%" G_GINT64_FORMAT
1439       " max:%" G_GINT64_FORMAT, live ? "true" : "false", min, max);
1440
1441   gst_query_set_latency (query, live, min, max);
1442
1443   return query_ret;
1444 }
1445
1446 /*
1447  * MUST be called with the src_lock held.
1448  *
1449  * See  gst_aggregator_get_latency() for doc
1450  */
1451 static GstClockTime
1452 gst_aggregator_get_latency_unlocked (GstAggregator * self)
1453 {
1454   GstClockTime latency;
1455
1456   g_return_val_if_fail (GST_IS_AGGREGATOR (self), 0);
1457
1458   if (!self->priv->has_peer_latency) {
1459     GstQuery *query = gst_query_new_latency ();
1460     gboolean ret;
1461
1462     ret = gst_aggregator_query_latency_unlocked (self, query);
1463     gst_query_unref (query);
1464     if (!ret)
1465       return GST_CLOCK_TIME_NONE;
1466   }
1467
1468   if (!self->priv->has_peer_latency || !self->priv->peer_latency_live)
1469     return GST_CLOCK_TIME_NONE;
1470
1471   /* latency_min is never GST_CLOCK_TIME_NONE by construction */
1472   latency = self->priv->peer_latency_min;
1473
1474   /* add our own */
1475   latency += self->priv->latency;
1476   latency += self->priv->sub_latency_min;
1477
1478   return latency;
1479 }
1480
1481 /**
1482  * gst_aggregator_get_latency:
1483  * @self: a #GstAggregator
1484  *
1485  * Retrieves the latency values reported by @self in response to the latency
1486  * query, or %GST_CLOCK_TIME_NONE if there is not live source connected and the element
1487  * will not wait for the clock.
1488  *
1489  * Typically only called by subclasses.
1490  *
1491  * Returns: The latency or %GST_CLOCK_TIME_NONE if the element does not sync
1492  */
1493 GstClockTime
1494 gst_aggregator_get_latency (GstAggregator * self)
1495 {
1496   GstClockTime ret;
1497
1498   SRC_LOCK (self);
1499   ret = gst_aggregator_get_latency_unlocked (self);
1500   SRC_UNLOCK (self);
1501
1502   return ret;
1503 }
1504
1505 static gboolean
1506 gst_aggregator_send_event (GstElement * element, GstEvent * event)
1507 {
1508   GstAggregator *self = GST_AGGREGATOR (element);
1509
1510   GST_STATE_LOCK (element);
1511   if (GST_EVENT_TYPE (event) == GST_EVENT_SEEK &&
1512       GST_STATE (element) < GST_STATE_PAUSED) {
1513     gdouble rate;
1514     GstFormat fmt;
1515     GstSeekFlags flags;
1516     GstSeekType start_type, stop_type;
1517     gint64 start, stop;
1518
1519     gst_event_parse_seek (event, &rate, &fmt, &flags, &start_type,
1520         &start, &stop_type, &stop);
1521
1522     GST_OBJECT_LOCK (self);
1523     gst_segment_do_seek (&self->segment, rate, fmt, flags, start_type, start,
1524         stop_type, stop, NULL);
1525     self->priv->seqnum = gst_event_get_seqnum (event);
1526     self->priv->first_buffer = FALSE;
1527     GST_OBJECT_UNLOCK (self);
1528
1529     GST_DEBUG_OBJECT (element, "Storing segment %" GST_PTR_FORMAT, event);
1530   }
1531   GST_STATE_UNLOCK (element);
1532
1533
1534   return GST_ELEMENT_CLASS (aggregator_parent_class)->send_event (element,
1535       event);
1536 }
1537
1538 static gboolean
1539 gst_aggregator_default_src_query (GstAggregator * self, GstQuery * query)
1540 {
1541   gboolean res = TRUE;
1542
1543   switch (GST_QUERY_TYPE (query)) {
1544     case GST_QUERY_SEEKING:
1545     {
1546       GstFormat format;
1547
1548       /* don't pass it along as some (file)sink might claim it does
1549        * whereas with a collectpads in between that will not likely work */
1550       gst_query_parse_seeking (query, &format, NULL, NULL, NULL);
1551       gst_query_set_seeking (query, format, FALSE, 0, -1);
1552       res = TRUE;
1553
1554       break;
1555     }
1556     case GST_QUERY_LATENCY:
1557       SRC_LOCK (self);
1558       res = gst_aggregator_query_latency_unlocked (self, query);
1559       SRC_UNLOCK (self);
1560       break;
1561     default:
1562       return gst_pad_query_default (self->srcpad, GST_OBJECT (self), query);
1563   }
1564
1565   return res;
1566 }
1567
1568 static gboolean
1569 gst_aggregator_event_forward_func (GstPad * pad, gpointer user_data)
1570 {
1571   EventData *evdata = user_data;
1572   gboolean ret = TRUE;
1573   GstPad *peer = gst_pad_get_peer (pad);
1574   GstAggregatorPad *aggpad = GST_AGGREGATOR_PAD (pad);
1575
1576   if (peer) {
1577     if (evdata->only_to_active_pads && aggpad->priv->first_buffer) {
1578       GST_DEBUG_OBJECT (pad, "not sending event to inactive pad");
1579       ret = TRUE;
1580     } else {
1581       ret = gst_pad_send_event (peer, gst_event_ref (evdata->event));
1582       GST_DEBUG_OBJECT (pad, "return of event push is %d", ret);
1583       gst_object_unref (peer);
1584     }
1585   }
1586
1587   if (ret == FALSE) {
1588     if (GST_EVENT_TYPE (evdata->event) == GST_EVENT_SEEK) {
1589       GstQuery *seeking = gst_query_new_seeking (GST_FORMAT_TIME);
1590
1591       GST_DEBUG_OBJECT (pad, "Event %" GST_PTR_FORMAT " failed", evdata->event);
1592
1593       if (gst_pad_query (peer, seeking)) {
1594         gboolean seekable;
1595
1596         gst_query_parse_seeking (seeking, NULL, &seekable, NULL, NULL);
1597
1598         if (seekable == FALSE) {
1599           GST_INFO_OBJECT (pad,
1600               "Source not seekable, We failed but it does not matter!");
1601
1602           ret = TRUE;
1603         }
1604       } else {
1605         GST_ERROR_OBJECT (pad, "Query seeking FAILED");
1606       }
1607
1608       gst_query_unref (seeking);
1609     }
1610
1611     if (evdata->flush) {
1612       PAD_LOCK (aggpad);
1613       aggpad->priv->pending_flush_start = FALSE;
1614       aggpad->priv->pending_flush_stop = FALSE;
1615       PAD_UNLOCK (aggpad);
1616     }
1617   } else {
1618     evdata->one_actually_seeked = TRUE;
1619   }
1620
1621   evdata->result &= ret;
1622
1623   /* Always send to all pads */
1624   return FALSE;
1625 }
1626
1627 static EventData
1628 gst_aggregator_forward_event_to_all_sinkpads (GstAggregator * self,
1629     GstEvent * event, gboolean flush, gboolean only_to_active_pads)
1630 {
1631   EventData evdata;
1632
1633   evdata.event = event;
1634   evdata.result = TRUE;
1635   evdata.flush = flush;
1636   evdata.one_actually_seeked = FALSE;
1637   evdata.only_to_active_pads = only_to_active_pads;
1638
1639   /* We first need to set all pads as flushing in a first pass
1640    * as flush_start flush_stop is sometimes sent synchronously
1641    * while we send the seek event */
1642   if (flush) {
1643     GList *l;
1644
1645     GST_OBJECT_LOCK (self);
1646     for (l = GST_ELEMENT_CAST (self)->sinkpads; l != NULL; l = l->next) {
1647       GstAggregatorPad *pad = l->data;
1648
1649       PAD_LOCK (pad);
1650       pad->priv->pending_flush_start = TRUE;
1651       pad->priv->pending_flush_stop = FALSE;
1652       PAD_UNLOCK (pad);
1653     }
1654     GST_OBJECT_UNLOCK (self);
1655   }
1656
1657   gst_pad_forward (self->srcpad, gst_aggregator_event_forward_func, &evdata);
1658
1659   gst_event_unref (event);
1660
1661   return evdata;
1662 }
1663
1664 static gboolean
1665 gst_aggregator_do_seek (GstAggregator * self, GstEvent * event)
1666 {
1667   gdouble rate;
1668   GstFormat fmt;
1669   GstSeekFlags flags;
1670   GstSeekType start_type, stop_type;
1671   gint64 start, stop;
1672   gboolean flush;
1673   EventData evdata;
1674   GstAggregatorPrivate *priv = self->priv;
1675
1676   gst_event_parse_seek (event, &rate, &fmt, &flags, &start_type,
1677       &start, &stop_type, &stop);
1678
1679   GST_INFO_OBJECT (self, "starting SEEK");
1680
1681   flush = flags & GST_SEEK_FLAG_FLUSH;
1682
1683   GST_OBJECT_LOCK (self);
1684   if (flush) {
1685     priv->pending_flush_start = TRUE;
1686     priv->flush_seeking = TRUE;
1687   }
1688
1689   gst_segment_do_seek (&self->segment, rate, fmt, flags, start_type, start,
1690       stop_type, stop, NULL);
1691
1692   /* Seeking sets a position */
1693   self->priv->first_buffer = FALSE;
1694   GST_OBJECT_UNLOCK (self);
1695
1696   /* forward the seek upstream */
1697   evdata =
1698       gst_aggregator_forward_event_to_all_sinkpads (self, event, flush, FALSE);
1699   event = NULL;
1700
1701   if (!evdata.result || !evdata.one_actually_seeked) {
1702     GST_OBJECT_LOCK (self);
1703     priv->flush_seeking = FALSE;
1704     priv->pending_flush_start = FALSE;
1705     GST_OBJECT_UNLOCK (self);
1706   }
1707
1708   GST_INFO_OBJECT (self, "seek done, result: %d", evdata.result);
1709
1710   return evdata.result;
1711 }
1712
1713 static gboolean
1714 gst_aggregator_default_src_event (GstAggregator * self, GstEvent * event)
1715 {
1716   EventData evdata;
1717   gboolean res = TRUE;
1718
1719   switch (GST_EVENT_TYPE (event)) {
1720     case GST_EVENT_SEEK:
1721     {
1722       gst_event_ref (event);
1723       res = gst_aggregator_do_seek (self, event);
1724       gst_event_unref (event);
1725       event = NULL;
1726       goto done;
1727     }
1728     case GST_EVENT_NAVIGATION:
1729     {
1730       /* navigation is rather pointless. */
1731       res = FALSE;
1732       gst_event_unref (event);
1733       goto done;
1734     }
1735     default:
1736     {
1737       break;
1738     }
1739   }
1740
1741   /* Don't forward QOS events to pads that had no active buffer yet. Otherwise
1742    * they will receive a QOS event that has earliest_time=0 (because we can't
1743    * have negative timestamps), and consider their buffer as too late */
1744   evdata =
1745       gst_aggregator_forward_event_to_all_sinkpads (self, event, FALSE,
1746       GST_EVENT_TYPE (event) == GST_EVENT_QOS);
1747   res = evdata.result;
1748
1749 done:
1750   return res;
1751 }
1752
1753 static gboolean
1754 gst_aggregator_src_pad_event_func (GstPad * pad, GstObject * parent,
1755     GstEvent * event)
1756 {
1757   GstAggregatorClass *klass = GST_AGGREGATOR_GET_CLASS (parent);
1758
1759   return klass->src_event (GST_AGGREGATOR (parent), event);
1760 }
1761
1762 static gboolean
1763 gst_aggregator_src_pad_query_func (GstPad * pad, GstObject * parent,
1764     GstQuery * query)
1765 {
1766   GstAggregatorClass *klass = GST_AGGREGATOR_GET_CLASS (parent);
1767
1768   return klass->src_query (GST_AGGREGATOR (parent), query);
1769 }
1770
1771 static gboolean
1772 gst_aggregator_src_pad_activate_mode_func (GstPad * pad,
1773     GstObject * parent, GstPadMode mode, gboolean active)
1774 {
1775   GstAggregator *self = GST_AGGREGATOR (parent);
1776   GstAggregatorClass *klass = GST_AGGREGATOR_GET_CLASS (parent);
1777
1778   if (klass->src_activate) {
1779     if (klass->src_activate (self, mode, active) == FALSE) {
1780       return FALSE;
1781     }
1782   }
1783
1784   if (active == TRUE) {
1785     switch (mode) {
1786       case GST_PAD_MODE_PUSH:
1787       {
1788         GST_INFO_OBJECT (pad, "Activating pad!");
1789         gst_aggregator_start_srcpad_task (self);
1790         return TRUE;
1791       }
1792       default:
1793       {
1794         GST_ERROR_OBJECT (pad, "Only supported mode is PUSH");
1795         return FALSE;
1796       }
1797     }
1798   }
1799
1800   /* deactivating */
1801   GST_INFO_OBJECT (self, "Deactivating srcpad");
1802   gst_aggregator_stop_srcpad_task (self, FALSE);
1803
1804   return TRUE;
1805 }
1806
1807 static gboolean
1808 gst_aggregator_default_sink_query (GstAggregator * self,
1809     GstAggregatorPad * aggpad, GstQuery * query)
1810 {
1811   GstPad *pad = GST_PAD (aggpad);
1812
1813   return gst_pad_query_default (pad, GST_OBJECT (self), query);
1814 }
1815
1816 static void
1817 gst_aggregator_finalize (GObject * object)
1818 {
1819   GstAggregator *self = (GstAggregator *) object;
1820
1821   g_mutex_clear (&self->priv->src_lock);
1822   g_cond_clear (&self->priv->src_cond);
1823
1824   G_OBJECT_CLASS (aggregator_parent_class)->finalize (object);
1825 }
1826
1827 /*
1828  * gst_aggregator_set_latency_property:
1829  * @agg: a #GstAggregator
1830  * @latency: the new latency value (in nanoseconds).
1831  *
1832  * Sets the new latency value to @latency. This value is used to limit the
1833  * amount of time a pad waits for data to appear before considering the pad
1834  * as unresponsive.
1835  */
1836 static void
1837 gst_aggregator_set_latency_property (GstAggregator * self, gint64 latency)
1838 {
1839   gboolean changed;
1840
1841   g_return_if_fail (GST_IS_AGGREGATOR (self));
1842   g_return_if_fail (GST_CLOCK_TIME_IS_VALID (latency));
1843
1844   SRC_LOCK (self);
1845   changed = (self->priv->latency != latency);
1846
1847   if (changed) {
1848     GList *item;
1849
1850     GST_OBJECT_LOCK (self);
1851     /* First lock all the pads */
1852     for (item = GST_ELEMENT_CAST (self)->sinkpads; item; item = item->next) {
1853       GstAggregatorPad *aggpad = GST_AGGREGATOR_PAD (item->data);
1854       PAD_LOCK (aggpad);
1855     }
1856
1857     self->priv->latency = latency;
1858
1859     SRC_BROADCAST (self);
1860
1861     /* Now wake up the pads */
1862     for (item = GST_ELEMENT_CAST (self)->sinkpads; item; item = item->next) {
1863       GstAggregatorPad *aggpad = GST_AGGREGATOR_PAD (item->data);
1864       PAD_BROADCAST_EVENT (aggpad);
1865       PAD_UNLOCK (aggpad);
1866     }
1867     GST_OBJECT_UNLOCK (self);
1868   }
1869
1870   SRC_UNLOCK (self);
1871
1872   if (changed)
1873     gst_element_post_message (GST_ELEMENT_CAST (self),
1874         gst_message_new_latency (GST_OBJECT_CAST (self)));
1875 }
1876
1877 /*
1878  * gst_aggregator_get_latency_property:
1879  * @agg: a #GstAggregator
1880  *
1881  * Gets the latency value. See gst_aggregator_set_latency for
1882  * more details.
1883  *
1884  * Returns: The time in nanoseconds to wait for data to arrive on a sink pad 
1885  * before a pad is deemed unresponsive. A value of -1 means an
1886  * unlimited time.
1887  */
1888 static gint64
1889 gst_aggregator_get_latency_property (GstAggregator * agg)
1890 {
1891   gint64 res;
1892
1893   g_return_val_if_fail (GST_IS_AGGREGATOR (agg), -1);
1894
1895   GST_OBJECT_LOCK (agg);
1896   res = agg->priv->latency;
1897   GST_OBJECT_UNLOCK (agg);
1898
1899   return res;
1900 }
1901
1902 static void
1903 gst_aggregator_set_property (GObject * object, guint prop_id,
1904     const GValue * value, GParamSpec * pspec)
1905 {
1906   GstAggregator *agg = GST_AGGREGATOR (object);
1907
1908   switch (prop_id) {
1909     case PROP_LATENCY:
1910       gst_aggregator_set_latency_property (agg, g_value_get_int64 (value));
1911       break;
1912     case PROP_START_TIME_SELECTION:
1913       agg->priv->start_time_selection = g_value_get_enum (value);
1914       break;
1915     case PROP_START_TIME:
1916       agg->priv->start_time = g_value_get_uint64 (value);
1917       break;
1918     default:
1919       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
1920       break;
1921   }
1922 }
1923
1924 static void
1925 gst_aggregator_get_property (GObject * object, guint prop_id,
1926     GValue * value, GParamSpec * pspec)
1927 {
1928   GstAggregator *agg = GST_AGGREGATOR (object);
1929
1930   switch (prop_id) {
1931     case PROP_LATENCY:
1932       g_value_set_int64 (value, gst_aggregator_get_latency_property (agg));
1933       break;
1934     case PROP_START_TIME_SELECTION:
1935       g_value_set_enum (value, agg->priv->start_time_selection);
1936       break;
1937     case PROP_START_TIME:
1938       g_value_set_uint64 (value, agg->priv->start_time);
1939       break;
1940     default:
1941       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
1942       break;
1943   }
1944 }
1945
1946 /* GObject vmethods implementations */
1947 static void
1948 gst_aggregator_class_init (GstAggregatorClass * klass)
1949 {
1950   GObjectClass *gobject_class = (GObjectClass *) klass;
1951   GstElementClass *gstelement_class = (GstElementClass *) klass;
1952
1953   aggregator_parent_class = g_type_class_peek_parent (klass);
1954   g_type_class_add_private (klass, sizeof (GstAggregatorPrivate));
1955
1956   GST_DEBUG_CATEGORY_INIT (aggregator_debug, "aggregator",
1957       GST_DEBUG_FG_MAGENTA, "GstAggregator");
1958
1959   klass->sinkpads_type = GST_TYPE_AGGREGATOR_PAD;
1960
1961   klass->sink_event = gst_aggregator_default_sink_event;
1962   klass->sink_query = gst_aggregator_default_sink_query;
1963
1964   klass->src_event = gst_aggregator_default_src_event;
1965   klass->src_query = gst_aggregator_default_src_query;
1966
1967   klass->create_new_pad = gst_aggregator_default_create_new_pad;
1968
1969   gstelement_class->request_new_pad =
1970       GST_DEBUG_FUNCPTR (gst_aggregator_request_new_pad);
1971   gstelement_class->send_event = GST_DEBUG_FUNCPTR (gst_aggregator_send_event);
1972   gstelement_class->release_pad =
1973       GST_DEBUG_FUNCPTR (gst_aggregator_release_pad);
1974   gstelement_class->change_state =
1975       GST_DEBUG_FUNCPTR (gst_aggregator_change_state);
1976
1977   gobject_class->set_property = gst_aggregator_set_property;
1978   gobject_class->get_property = gst_aggregator_get_property;
1979   gobject_class->finalize = gst_aggregator_finalize;
1980
1981   g_object_class_install_property (gobject_class, PROP_LATENCY,
1982       g_param_spec_int64 ("latency", "Buffer latency",
1983           "Additional latency in live mode to allow upstream "
1984           "to take longer to produce buffers for the current "
1985           "position (in nanoseconds)", 0,
1986           (G_MAXLONG == G_MAXINT64) ? G_MAXINT64 : (G_MAXLONG * GST_SECOND - 1),
1987           DEFAULT_LATENCY, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
1988
1989   g_object_class_install_property (gobject_class, PROP_START_TIME_SELECTION,
1990       g_param_spec_enum ("start-time-selection", "Start Time Selection",
1991           "Decides which start time is output",
1992           gst_aggregator_start_time_selection_get_type (),
1993           DEFAULT_START_TIME_SELECTION,
1994           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
1995
1996   g_object_class_install_property (gobject_class, PROP_START_TIME,
1997       g_param_spec_uint64 ("start-time", "Start Time",
1998           "Start time to use if start-time-selection=set", 0,
1999           G_MAXUINT64,
2000           DEFAULT_START_TIME, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
2001
2002   GST_DEBUG_REGISTER_FUNCPTR (gst_aggregator_stop_pad);
2003 }
2004
2005 static void
2006 gst_aggregator_init (GstAggregator * self, GstAggregatorClass * klass)
2007 {
2008   GstPadTemplate *pad_template;
2009   GstAggregatorPrivate *priv;
2010
2011   g_return_if_fail (klass->aggregate != NULL);
2012
2013   self->priv =
2014       G_TYPE_INSTANCE_GET_PRIVATE (self, GST_TYPE_AGGREGATOR,
2015       GstAggregatorPrivate);
2016
2017   priv = self->priv;
2018
2019   pad_template =
2020       gst_element_class_get_pad_template (GST_ELEMENT_CLASS (klass), "src");
2021   g_return_if_fail (pad_template != NULL);
2022
2023   priv->padcount = -1;
2024   priv->tags_changed = FALSE;
2025
2026   self->priv->peer_latency_live = FALSE;
2027   self->priv->peer_latency_min = self->priv->sub_latency_min = 0;
2028   self->priv->peer_latency_max = self->priv->sub_latency_max = 0;
2029   self->priv->has_peer_latency = FALSE;
2030   gst_aggregator_reset_flow_values (self);
2031
2032   self->srcpad = gst_pad_new_from_template (pad_template, "src");
2033
2034   gst_pad_set_event_function (self->srcpad,
2035       GST_DEBUG_FUNCPTR (gst_aggregator_src_pad_event_func));
2036   gst_pad_set_query_function (self->srcpad,
2037       GST_DEBUG_FUNCPTR (gst_aggregator_src_pad_query_func));
2038   gst_pad_set_activatemode_function (self->srcpad,
2039       GST_DEBUG_FUNCPTR (gst_aggregator_src_pad_activate_mode_func));
2040
2041   gst_element_add_pad (GST_ELEMENT (self), self->srcpad);
2042
2043   self->priv->latency = DEFAULT_LATENCY;
2044   self->priv->start_time_selection = DEFAULT_START_TIME_SELECTION;
2045   self->priv->start_time = DEFAULT_START_TIME;
2046
2047   g_mutex_init (&self->priv->src_lock);
2048   g_cond_init (&self->priv->src_cond);
2049 }
2050
2051 /* we can't use G_DEFINE_ABSTRACT_TYPE because we need the klass in the _init
2052  * method to get to the padtemplates */
2053 GType
2054 gst_aggregator_get_type (void)
2055 {
2056   static volatile gsize type = 0;
2057
2058   if (g_once_init_enter (&type)) {
2059     GType _type;
2060     static const GTypeInfo info = {
2061       sizeof (GstAggregatorClass),
2062       NULL,
2063       NULL,
2064       (GClassInitFunc) gst_aggregator_class_init,
2065       NULL,
2066       NULL,
2067       sizeof (GstAggregator),
2068       0,
2069       (GInstanceInitFunc) gst_aggregator_init,
2070     };
2071
2072     _type = g_type_register_static (GST_TYPE_ELEMENT,
2073         "GstAggregator", &info, G_TYPE_FLAG_ABSTRACT);
2074     g_once_init_leave (&type, _type);
2075   }
2076   return type;
2077 }
2078
2079 /* Must be called with SRC lock and PAD lock held */
2080 static gboolean
2081 gst_aggregator_pad_has_space (GstAggregator * self, GstAggregatorPad * aggpad)
2082 {
2083   /* Empty queue always has space */
2084   if (g_queue_get_length (&aggpad->priv->buffers) == 0)
2085     return TRUE;
2086
2087   /* We also want at least two buffers, one is being processed and one is ready
2088    * for the next iteration when we operate in live mode. */
2089   if (self->priv->peer_latency_live && aggpad->priv->num_buffers < 2)
2090     return TRUE;
2091
2092   /* zero latency, if there is a buffer, it's full */
2093   if (self->priv->latency == 0)
2094     return FALSE;
2095
2096   /* Allow no more buffers than the latency */
2097   return (aggpad->priv->time_level <= self->priv->latency);
2098 }
2099
2100 /* Must be called with the PAD_LOCK held */
2101 static void
2102 apply_buffer (GstAggregatorPad * aggpad, GstBuffer * buffer, gboolean head)
2103 {
2104   GstClockTime timestamp;
2105
2106   if (GST_BUFFER_DTS_IS_VALID (buffer))
2107     timestamp = GST_BUFFER_DTS (buffer);
2108   else
2109     timestamp = GST_BUFFER_PTS (buffer);
2110
2111   if (timestamp == GST_CLOCK_TIME_NONE) {
2112     if (head)
2113       timestamp = aggpad->priv->head_position;
2114     else
2115       timestamp = aggpad->priv->tail_position;
2116   }
2117
2118   /* add duration */
2119   if (GST_BUFFER_DURATION_IS_VALID (buffer))
2120     timestamp += GST_BUFFER_DURATION (buffer);
2121
2122   if (head)
2123     aggpad->priv->head_position = timestamp;
2124   else
2125     aggpad->priv->tail_position = timestamp;
2126
2127   update_time_level (aggpad, head);
2128 }
2129
2130 static GstFlowReturn
2131 gst_aggregator_pad_chain_internal (GstAggregator * self,
2132     GstAggregatorPad * aggpad, GstBuffer * buffer, gboolean head)
2133 {
2134   GstBuffer *actual_buf = buffer;
2135   GstAggregatorClass *aggclass = GST_AGGREGATOR_GET_CLASS (self);
2136   GstFlowReturn flow_return;
2137   GstClockTime buf_pts;
2138
2139   GST_DEBUG_OBJECT (aggpad, "Start chaining a buffer %" GST_PTR_FORMAT, buffer);
2140
2141   PAD_FLUSH_LOCK (aggpad);
2142
2143   PAD_LOCK (aggpad);
2144   flow_return = aggpad->priv->flow_return;
2145   if (flow_return != GST_FLOW_OK)
2146     goto flushing;
2147
2148   if (aggpad->priv->pending_eos == TRUE)
2149     goto eos;
2150
2151   flow_return = aggpad->priv->flow_return;
2152   if (flow_return != GST_FLOW_OK)
2153     goto flushing;
2154
2155   PAD_UNLOCK (aggpad);
2156
2157   if (aggclass->clip && head) {
2158     aggclass->clip (self, aggpad, buffer, &actual_buf);
2159   }
2160
2161   if (actual_buf == NULL) {
2162     GST_LOG_OBJECT (actual_buf, "Buffer dropped by clip function");
2163     goto done;
2164   }
2165
2166   buf_pts = GST_BUFFER_PTS (actual_buf);
2167
2168   aggpad->priv->first_buffer = FALSE;
2169
2170   for (;;) {
2171     SRC_LOCK (self);
2172     PAD_LOCK (aggpad);
2173     if (gst_aggregator_pad_has_space (self, aggpad)
2174         && aggpad->priv->flow_return == GST_FLOW_OK) {
2175       if (head)
2176         g_queue_push_head (&aggpad->priv->buffers, actual_buf);
2177       else
2178         g_queue_push_tail (&aggpad->priv->buffers, actual_buf);
2179       apply_buffer (aggpad, actual_buf, head);
2180       aggpad->priv->num_buffers++;
2181       actual_buf = buffer = NULL;
2182       SRC_BROADCAST (self);
2183       break;
2184     }
2185
2186     flow_return = aggpad->priv->flow_return;
2187     if (flow_return != GST_FLOW_OK) {
2188       SRC_UNLOCK (self);
2189       goto flushing;
2190     }
2191     GST_DEBUG_OBJECT (aggpad, "Waiting for buffer to be consumed");
2192     SRC_UNLOCK (self);
2193     PAD_WAIT_EVENT (aggpad);
2194
2195     PAD_UNLOCK (aggpad);
2196   }
2197
2198   if (self->priv->first_buffer) {
2199     GstClockTime start_time;
2200
2201     switch (self->priv->start_time_selection) {
2202       case GST_AGGREGATOR_START_TIME_SELECTION_ZERO:
2203       default:
2204         start_time = 0;
2205         break;
2206       case GST_AGGREGATOR_START_TIME_SELECTION_FIRST:
2207         if (aggpad->segment.format == GST_FORMAT_TIME) {
2208           start_time = buf_pts;
2209           if (start_time != -1) {
2210             start_time = MAX (start_time, aggpad->segment.start);
2211             start_time =
2212                 gst_segment_to_running_time (&aggpad->segment, GST_FORMAT_TIME,
2213                 start_time);
2214           }
2215         } else {
2216           start_time = 0;
2217           GST_WARNING_OBJECT (aggpad,
2218               "Ignoring request of selecting the first start time "
2219               "as the segment is a %s segment instead of a time segment",
2220               gst_format_get_name (aggpad->segment.format));
2221         }
2222         break;
2223       case GST_AGGREGATOR_START_TIME_SELECTION_SET:
2224         start_time = self->priv->start_time;
2225         if (start_time == -1)
2226           start_time = 0;
2227         break;
2228     }
2229
2230     if (start_time != -1) {
2231       if (self->segment.position == -1)
2232         self->segment.position = start_time;
2233       else
2234         self->segment.position = MIN (start_time, self->segment.position);
2235
2236       GST_DEBUG_OBJECT (self, "Selecting start time %" GST_TIME_FORMAT,
2237           GST_TIME_ARGS (start_time));
2238     }
2239   }
2240
2241   PAD_UNLOCK (aggpad);
2242   SRC_UNLOCK (self);
2243
2244 done:
2245
2246   PAD_FLUSH_UNLOCK (aggpad);
2247
2248   GST_DEBUG_OBJECT (aggpad, "Done chaining");
2249
2250   return flow_return;
2251
2252 flushing:
2253   PAD_UNLOCK (aggpad);
2254   PAD_FLUSH_UNLOCK (aggpad);
2255
2256   GST_DEBUG_OBJECT (aggpad, "Pad is %s, dropping buffer",
2257       gst_flow_get_name (flow_return));
2258   if (buffer)
2259     gst_buffer_unref (buffer);
2260
2261   return flow_return;
2262
2263 eos:
2264   PAD_UNLOCK (aggpad);
2265   PAD_FLUSH_UNLOCK (aggpad);
2266
2267   gst_buffer_unref (buffer);
2268   GST_DEBUG_OBJECT (aggpad, "We are EOS already...");
2269
2270   return GST_FLOW_EOS;
2271 }
2272
2273 static GstFlowReturn
2274 gst_aggregator_pad_chain (GstPad * pad, GstObject * object, GstBuffer * buffer)
2275 {
2276   return gst_aggregator_pad_chain_internal (GST_AGGREGATOR_CAST (object),
2277       GST_AGGREGATOR_PAD_CAST (pad), buffer, TRUE);
2278 }
2279
2280 static gboolean
2281 gst_aggregator_pad_query_func (GstPad * pad, GstObject * parent,
2282     GstQuery * query)
2283 {
2284   GstAggregatorPad *aggpad = GST_AGGREGATOR_PAD (pad);
2285   GstAggregatorClass *klass = GST_AGGREGATOR_GET_CLASS (parent);
2286
2287   if (GST_QUERY_IS_SERIALIZED (query)) {
2288     PAD_LOCK (aggpad);
2289
2290     while (!gst_aggregator_pad_queue_is_empty (aggpad)
2291         && aggpad->priv->flow_return == GST_FLOW_OK) {
2292       GST_DEBUG_OBJECT (aggpad, "Waiting for buffer to be consumed");
2293       PAD_WAIT_EVENT (aggpad);
2294     }
2295
2296     if (aggpad->priv->flow_return != GST_FLOW_OK)
2297       goto flushing;
2298
2299     PAD_UNLOCK (aggpad);
2300   }
2301
2302   return klass->sink_query (GST_AGGREGATOR (parent),
2303       GST_AGGREGATOR_PAD (pad), query);
2304
2305 flushing:
2306   GST_DEBUG_OBJECT (aggpad, "Pad is %s, dropping query",
2307       gst_flow_get_name (aggpad->priv->flow_return));
2308   PAD_UNLOCK (aggpad);
2309   return FALSE;
2310 }
2311
2312 static gboolean
2313 gst_aggregator_pad_event_func (GstPad * pad, GstObject * parent,
2314     GstEvent * event)
2315 {
2316   GstAggregator *self = GST_AGGREGATOR (parent);
2317   GstAggregatorPad *aggpad = GST_AGGREGATOR_PAD (pad);
2318   GstAggregatorClass *klass = GST_AGGREGATOR_GET_CLASS (parent);
2319
2320   if (GST_EVENT_IS_SERIALIZED (event) && GST_EVENT_TYPE (event) != GST_EVENT_EOS
2321       /* && GST_EVENT_TYPE (event) != GST_EVENT_SEGMENT_DONE */ ) {
2322     SRC_LOCK (self);
2323     PAD_LOCK (aggpad);
2324
2325     if (aggpad->priv->flow_return != GST_FLOW_OK
2326         && GST_EVENT_TYPE (event) != GST_EVENT_FLUSH_STOP)
2327       goto flushing;
2328
2329     if (GST_EVENT_TYPE (event) == GST_EVENT_SEGMENT) {
2330       GST_OBJECT_LOCK (aggpad);
2331       gst_event_copy_segment (event, &aggpad->clip_segment);
2332       aggpad->priv->head_position = aggpad->clip_segment.position;
2333       update_time_level (aggpad, TRUE);
2334       GST_OBJECT_UNLOCK (aggpad);
2335     }
2336
2337     if (!gst_aggregator_pad_queue_is_empty (aggpad) &&
2338         GST_EVENT_TYPE (event) != GST_EVENT_FLUSH_STOP) {
2339       GST_DEBUG_OBJECT (aggpad, "Store event in queue: %" GST_PTR_FORMAT,
2340           event);
2341       g_queue_push_head (&aggpad->priv->buffers, event);
2342       event = NULL;
2343       SRC_BROADCAST (self);
2344     }
2345     PAD_UNLOCK (aggpad);
2346     SRC_UNLOCK (self);
2347   }
2348
2349   if (event)
2350     return klass->sink_event (self, aggpad, event);
2351   else
2352     return TRUE;
2353
2354 flushing:
2355   GST_DEBUG_OBJECT (aggpad, "Pad is %s, dropping event",
2356       gst_flow_get_name (aggpad->priv->flow_return));
2357   PAD_UNLOCK (aggpad);
2358   SRC_UNLOCK (self);
2359   if (GST_EVENT_IS_STICKY (event))
2360     gst_pad_store_sticky_event (pad, event);
2361   gst_event_unref (event);
2362   return FALSE;
2363 }
2364
2365 static gboolean
2366 gst_aggregator_pad_activate_mode_func (GstPad * pad,
2367     GstObject * parent, GstPadMode mode, gboolean active)
2368 {
2369   GstAggregator *self = GST_AGGREGATOR (parent);
2370   GstAggregatorPad *aggpad = GST_AGGREGATOR_PAD (pad);
2371
2372   if (active == FALSE) {
2373     SRC_LOCK (self);
2374     gst_aggregator_pad_set_flushing (aggpad, GST_FLOW_FLUSHING, TRUE);
2375     SRC_BROADCAST (self);
2376     SRC_UNLOCK (self);
2377   } else {
2378     PAD_LOCK (aggpad);
2379     aggpad->priv->flow_return = GST_FLOW_OK;
2380     PAD_BROADCAST_EVENT (aggpad);
2381     PAD_UNLOCK (aggpad);
2382   }
2383
2384   return TRUE;
2385 }
2386
2387 /***********************************
2388  * GstAggregatorPad implementation  *
2389  ************************************/
2390 G_DEFINE_TYPE (GstAggregatorPad, gst_aggregator_pad, GST_TYPE_PAD);
2391
2392 static void
2393 gst_aggregator_pad_constructed (GObject * object)
2394 {
2395   GstPad *pad = GST_PAD (object);
2396
2397   gst_pad_set_chain_function (pad,
2398       GST_DEBUG_FUNCPTR (gst_aggregator_pad_chain));
2399   gst_pad_set_event_function (pad,
2400       GST_DEBUG_FUNCPTR (gst_aggregator_pad_event_func));
2401   gst_pad_set_query_function (pad,
2402       GST_DEBUG_FUNCPTR (gst_aggregator_pad_query_func));
2403   gst_pad_set_activatemode_function (pad,
2404       GST_DEBUG_FUNCPTR (gst_aggregator_pad_activate_mode_func));
2405 }
2406
2407 static void
2408 gst_aggregator_pad_finalize (GObject * object)
2409 {
2410   GstAggregatorPad *pad = (GstAggregatorPad *) object;
2411
2412   g_cond_clear (&pad->priv->event_cond);
2413   g_mutex_clear (&pad->priv->flush_lock);
2414   g_mutex_clear (&pad->priv->lock);
2415
2416   G_OBJECT_CLASS (gst_aggregator_pad_parent_class)->finalize (object);
2417 }
2418
2419 static void
2420 gst_aggregator_pad_dispose (GObject * object)
2421 {
2422   GstAggregatorPad *pad = (GstAggregatorPad *) object;
2423
2424   gst_aggregator_pad_set_flushing (pad, GST_FLOW_FLUSHING, TRUE);
2425
2426   G_OBJECT_CLASS (gst_aggregator_pad_parent_class)->dispose (object);
2427 }
2428
2429 static void
2430 gst_aggregator_pad_class_init (GstAggregatorPadClass * klass)
2431 {
2432   GObjectClass *gobject_class = (GObjectClass *) klass;
2433
2434   g_type_class_add_private (klass, sizeof (GstAggregatorPadPrivate));
2435
2436   gobject_class->constructed = gst_aggregator_pad_constructed;
2437   gobject_class->finalize = gst_aggregator_pad_finalize;
2438   gobject_class->dispose = gst_aggregator_pad_dispose;
2439 }
2440
2441 static void
2442 gst_aggregator_pad_init (GstAggregatorPad * pad)
2443 {
2444   pad->priv =
2445       G_TYPE_INSTANCE_GET_PRIVATE (pad, GST_TYPE_AGGREGATOR_PAD,
2446       GstAggregatorPadPrivate);
2447
2448   g_queue_init (&pad->priv->buffers);
2449   g_cond_init (&pad->priv->event_cond);
2450
2451   g_mutex_init (&pad->priv->flush_lock);
2452   g_mutex_init (&pad->priv->lock);
2453
2454   pad->priv->first_buffer = TRUE;
2455 }
2456
2457 /**
2458  * gst_aggregator_pad_steal_buffer:
2459  * @pad: the pad to get buffer from
2460  *
2461  * Steal the ref to the buffer currently queued in @pad.
2462  *
2463  * Returns: (transfer full): The buffer in @pad or NULL if no buffer was
2464  *   queued. You should unref the buffer after usage.
2465  */
2466 GstBuffer *
2467 gst_aggregator_pad_steal_buffer (GstAggregatorPad * pad)
2468 {
2469   GstBuffer *buffer = NULL;
2470
2471   PAD_LOCK (pad);
2472   if (GST_IS_BUFFER (g_queue_peek_tail (&pad->priv->buffers)))
2473     buffer = g_queue_pop_tail (&pad->priv->buffers);
2474
2475   if (buffer) {
2476     apply_buffer (pad, buffer, FALSE);
2477     pad->priv->num_buffers--;
2478     GST_TRACE_OBJECT (pad, "Consuming buffer");
2479     if (gst_aggregator_pad_queue_is_empty (pad) && pad->priv->pending_eos) {
2480       pad->priv->pending_eos = FALSE;
2481       pad->priv->eos = TRUE;
2482     }
2483     PAD_BROADCAST_EVENT (pad);
2484     GST_DEBUG_OBJECT (pad, "Consumed: %" GST_PTR_FORMAT, buffer);
2485   }
2486   PAD_UNLOCK (pad);
2487
2488   return buffer;
2489 }
2490
2491 /**
2492  * gst_aggregator_pad_drop_buffer:
2493  * @pad: the pad where to drop any pending buffer
2494  *
2495  * Drop the buffer currently queued in @pad.
2496  *
2497  * Returns: TRUE if there was a buffer queued in @pad, or FALSE if not.
2498  */
2499 gboolean
2500 gst_aggregator_pad_drop_buffer (GstAggregatorPad * pad)
2501 {
2502   GstBuffer *buf;
2503
2504   buf = gst_aggregator_pad_steal_buffer (pad);
2505
2506   if (buf == NULL)
2507     return FALSE;
2508
2509   gst_buffer_unref (buf);
2510   return TRUE;
2511 }
2512
2513 /**
2514  * gst_aggregator_pad_get_buffer:
2515  * @pad: the pad to get buffer from
2516  *
2517  * Returns: (transfer full): A reference to the buffer in @pad or
2518  * NULL if no buffer was queued. You should unref the buffer after
2519  * usage.
2520  */
2521 GstBuffer *
2522 gst_aggregator_pad_get_buffer (GstAggregatorPad * pad)
2523 {
2524   GstBuffer *buffer = NULL;
2525
2526   PAD_LOCK (pad);
2527   buffer = g_queue_peek_tail (&pad->priv->buffers);
2528   /* The tail should always be a buffer, because if it is an event,
2529    * it will be consumed immeditaly in gst_aggregator_steal_buffer */
2530
2531   if (GST_IS_BUFFER (buffer))
2532     gst_buffer_ref (buffer);
2533   else
2534     buffer = NULL;
2535   PAD_UNLOCK (pad);
2536
2537   return buffer;
2538 }
2539
2540 gboolean
2541 gst_aggregator_pad_is_eos (GstAggregatorPad * pad)
2542 {
2543   gboolean is_eos;
2544
2545   PAD_LOCK (pad);
2546   is_eos = pad->priv->eos;
2547   PAD_UNLOCK (pad);
2548
2549   return is_eos;
2550 }
2551
2552 /**
2553  * gst_aggregator_merge_tags:
2554  * @self: a #GstAggregator
2555  * @tags: a #GstTagList to merge
2556  * @mode: the #GstTagMergeMode to use
2557  *
2558  * Adds tags to so-called pending tags, which will be processed
2559  * before pushing out data downstream.
2560  *
2561  * Note that this is provided for convenience, and the subclass is
2562  * not required to use this and can still do tag handling on its own.
2563  *
2564  * MT safe.
2565  */
2566 void
2567 gst_aggregator_merge_tags (GstAggregator * self,
2568     const GstTagList * tags, GstTagMergeMode mode)
2569 {
2570   GstTagList *otags;
2571
2572   g_return_if_fail (GST_IS_AGGREGATOR (self));
2573   g_return_if_fail (tags == NULL || GST_IS_TAG_LIST (tags));
2574
2575   /* FIXME Check if we can use OBJECT lock here! */
2576   GST_OBJECT_LOCK (self);
2577   if (tags)
2578     GST_DEBUG_OBJECT (self, "merging tags %" GST_PTR_FORMAT, tags);
2579   otags = self->priv->tags;
2580   self->priv->tags = gst_tag_list_merge (self->priv->tags, tags, mode);
2581   if (otags)
2582     gst_tag_list_unref (otags);
2583   self->priv->tags_changed = TRUE;
2584   GST_OBJECT_UNLOCK (self);
2585 }
2586
2587 /**
2588  * gst_aggregator_set_latency:
2589  * @self: a #GstAggregator
2590  * @min_latency: minimum latency
2591  * @max_latency: maximum latency
2592  *
2593  * Lets #GstAggregator sub-classes tell the baseclass what their internal
2594  * latency is. Will also post a LATENCY message on the bus so the pipeline
2595  * can reconfigure its global latency.
2596  */
2597 void
2598 gst_aggregator_set_latency (GstAggregator * self,
2599     GstClockTime min_latency, GstClockTime max_latency)
2600 {
2601   gboolean changed = FALSE;
2602
2603   g_return_if_fail (GST_IS_AGGREGATOR (self));
2604   g_return_if_fail (GST_CLOCK_TIME_IS_VALID (min_latency));
2605   g_return_if_fail (max_latency >= min_latency);
2606
2607   SRC_LOCK (self);
2608   if (self->priv->sub_latency_min != min_latency) {
2609     self->priv->sub_latency_min = min_latency;
2610     changed = TRUE;
2611   }
2612   if (self->priv->sub_latency_max != max_latency) {
2613     self->priv->sub_latency_max = max_latency;
2614     changed = TRUE;
2615   }
2616
2617   if (changed)
2618     SRC_BROADCAST (self);
2619   SRC_UNLOCK (self);
2620
2621   if (changed) {
2622     gst_element_post_message (GST_ELEMENT_CAST (self),
2623         gst_message_new_latency (GST_OBJECT_CAST (self)));
2624   }
2625 }