aggregator: fix doc chunk for new buffer-consumed signal
[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  * @title: GstAggregator
25  * @short_description: Base class for mixers and muxers, manages a set of input
26  *     pads and aggregates their streams
27  * @see_also: gstcollectpads for historical reasons.
28  *
29  * Manages a set of pads with the purpose of aggregating their buffers.
30  * Control is given to the subclass when all pads have data.
31  *
32  *  * Base class for mixers and muxers. Subclasses should at least implement
33  *    the #GstAggregatorClass.aggregate() virtual method.
34  *
35  *  * Installs a #GstPadChainFunction, a #GstPadEventFullFunction and a
36  *    #GstPadQueryFunction to queue all serialized data packets per sink pad.
37  *    Subclasses should not overwrite those, but instead implement
38  *    #GstAggregatorClass.sink_event() and #GstAggregatorClass.sink_query() as
39  *    needed.
40  *
41  *  * When data is queued on all pads, the aggregate vmethod is called.
42  *
43  *  * One can peek at the data on any given GstAggregatorPad with the
44  *    gst_aggregator_pad_peek_buffer () method, and remove it from the pad
45  *    with the gst_aggregator_pad_pop_buffer () method. When a buffer
46  *    has been taken with pop_buffer (), a new buffer can be queued
47  *    on that pad.
48  *
49  *  * If the subclass wishes to push a buffer downstream in its aggregate
50  *    implementation, it should do so through the
51  *    gst_aggregator_finish_buffer () method. This method will take care
52  *    of sending and ordering mandatory events such as stream start, caps
53  *    and segment.
54  *
55  *  * Same goes for EOS events, which should not be pushed directly by the
56  *    subclass, it should instead return GST_FLOW_EOS in its aggregate
57  *    implementation.
58  *
59  *  * Note that the aggregator logic regarding gap event handling is to turn
60  *    these into gap buffers with matching PTS and duration. It will also
61  *    flag these buffers with GST_BUFFER_FLAG_GAP and GST_BUFFER_FLAG_DROPPABLE
62  *    to ease their identification and subsequent processing.
63  *
64  *  * Subclasses must use (a subclass of) #GstAggregatorPad for both their
65  *    sink and source pads.
66  *    See gst_element_class_add_static_pad_template_with_gtype().
67  *
68  * This class used to live in gst-plugins-bad and was moved to core.
69  *
70  * Since: 1.14
71  */
72
73 /**
74  * SECTION: gstaggregatorpad
75  * @title: GstAggregatorPad
76  * @short_description: #GstPad subclass for pads managed by #GstAggregator
77  * @see_also: gstcollectpads for historical reasons.
78  *
79  * Pads managed by a #GstAggregor subclass.
80  *
81  * This class used to live in gst-plugins-bad and was moved to core.
82  *
83  * Since: 1.14
84  */
85
86 #ifdef HAVE_CONFIG_H
87 #  include "config.h"
88 #endif
89
90 #include <string.h>             /* strlen */
91
92 #include "gstaggregator.h"
93
94 typedef enum
95 {
96   GST_AGGREGATOR_START_TIME_SELECTION_ZERO,
97   GST_AGGREGATOR_START_TIME_SELECTION_FIRST,
98   GST_AGGREGATOR_START_TIME_SELECTION_SET
99 } GstAggregatorStartTimeSelection;
100
101 static GType
102 gst_aggregator_start_time_selection_get_type (void)
103 {
104   static GType gtype = 0;
105
106   if (gtype == 0) {
107     static const GEnumValue values[] = {
108       {GST_AGGREGATOR_START_TIME_SELECTION_ZERO,
109           "Start at 0 running time (default)", "zero"},
110       {GST_AGGREGATOR_START_TIME_SELECTION_FIRST,
111           "Start at first observed input running time", "first"},
112       {GST_AGGREGATOR_START_TIME_SELECTION_SET,
113           "Set start time with start-time property", "set"},
114       {0, NULL, NULL}
115     };
116
117     gtype = g_enum_register_static ("GstAggregatorStartTimeSelection", values);
118   }
119   return gtype;
120 }
121
122 /*  Might become API */
123 #if 0
124 static void gst_aggregator_merge_tags (GstAggregator * aggregator,
125     const GstTagList * tags, GstTagMergeMode mode);
126 #endif
127 static void gst_aggregator_set_latency_property (GstAggregator * agg,
128     GstClockTime latency);
129 static GstClockTime gst_aggregator_get_latency_property (GstAggregator * agg);
130
131 static GstClockTime gst_aggregator_get_latency_unlocked (GstAggregator * self);
132
133 static void gst_aggregator_pad_buffer_consumed (GstAggregatorPad * pad,
134     GstBuffer * buffer);
135
136 GST_DEBUG_CATEGORY_STATIC (aggregator_debug);
137 #define GST_CAT_DEFAULT aggregator_debug
138
139 /* Locking order, locks in this element must always be taken in this order
140  *
141  * standard sink pad stream lock -> GST_PAD_STREAM_LOCK (aggpad)
142  * Aggregator pad flush lock -> PAD_FLUSH_LOCK(aggpad)
143  * standard src pad stream lock -> GST_PAD_STREAM_LOCK (srcpad)
144  * Aggregator src lock -> SRC_LOCK(agg) w/ SRC_WAIT/BROADCAST
145  * standard element object lock -> GST_OBJECT_LOCK(agg)
146  * Aggregator pad lock -> PAD_LOCK (aggpad) w/ PAD_WAIT/BROADCAST_EVENT(aggpad)
147  * standard src pad object lock -> GST_OBJECT_LOCK(srcpad)
148  * standard sink pad object lock -> GST_OBJECT_LOCK(aggpad)
149  */
150
151 /* GstAggregatorPad definitions */
152 #define PAD_LOCK(pad)   G_STMT_START {                                  \
153   GST_TRACE_OBJECT (pad, "Taking PAD lock from thread %p",              \
154         g_thread_self());                                               \
155   g_mutex_lock(&pad->priv->lock);                                       \
156   GST_TRACE_OBJECT (pad, "Took PAD lock from thread %p",                \
157         g_thread_self());                                               \
158   } G_STMT_END
159
160 #define PAD_UNLOCK(pad)  G_STMT_START {                                 \
161   GST_TRACE_OBJECT (pad, "Releasing PAD lock from thread %p",           \
162       g_thread_self());                                                 \
163   g_mutex_unlock(&pad->priv->lock);                                     \
164   GST_TRACE_OBJECT (pad, "Release PAD lock from thread %p",             \
165         g_thread_self());                                               \
166   } G_STMT_END
167
168
169 #define PAD_WAIT_EVENT(pad)   G_STMT_START {                            \
170   GST_LOG_OBJECT (pad, "Waiting for buffer to be consumed thread %p",   \
171         g_thread_self());                                               \
172   g_cond_wait(&(((GstAggregatorPad* )pad)->priv->event_cond),           \
173       (&((GstAggregatorPad*)pad)->priv->lock));                         \
174   GST_LOG_OBJECT (pad, "DONE Waiting for buffer to be consumed on thread %p", \
175         g_thread_self());                                               \
176   } G_STMT_END
177
178 #define PAD_BROADCAST_EVENT(pad) G_STMT_START {                        \
179   GST_LOG_OBJECT (pad, "Signaling buffer consumed from thread %p",     \
180         g_thread_self());                                              \
181   g_cond_broadcast(&(((GstAggregatorPad* )pad)->priv->event_cond));    \
182   } G_STMT_END
183
184
185 #define PAD_FLUSH_LOCK(pad)     G_STMT_START {                          \
186   GST_TRACE_OBJECT (pad, "Taking lock from thread %p",                  \
187         g_thread_self());                                               \
188   g_mutex_lock(&pad->priv->flush_lock);                                 \
189   GST_TRACE_OBJECT (pad, "Took lock from thread %p",                    \
190         g_thread_self());                                               \
191   } G_STMT_END
192
193 #define PAD_FLUSH_UNLOCK(pad)   G_STMT_START {                          \
194   GST_TRACE_OBJECT (pad, "Releasing lock from thread %p",               \
195         g_thread_self());                                               \
196   g_mutex_unlock(&pad->priv->flush_lock);                               \
197   GST_TRACE_OBJECT (pad, "Release lock from thread %p",                 \
198         g_thread_self());                                               \
199   } G_STMT_END
200
201 #define SRC_LOCK(self)   G_STMT_START {                             \
202   GST_TRACE_OBJECT (self, "Taking src lock from thread %p",         \
203       g_thread_self());                                             \
204   g_mutex_lock(&self->priv->src_lock);                              \
205   GST_TRACE_OBJECT (self, "Took src lock from thread %p",           \
206         g_thread_self());                                           \
207   } G_STMT_END
208
209 #define SRC_UNLOCK(self)  G_STMT_START {                            \
210   GST_TRACE_OBJECT (self, "Releasing src lock from thread %p",      \
211         g_thread_self());                                           \
212   g_mutex_unlock(&self->priv->src_lock);                            \
213   GST_TRACE_OBJECT (self, "Released src lock from thread %p",       \
214         g_thread_self());                                           \
215   } G_STMT_END
216
217 #define SRC_WAIT(self) G_STMT_START {                               \
218   GST_LOG_OBJECT (self, "Waiting for src on thread %p",             \
219         g_thread_self());                                           \
220   g_cond_wait(&(self->priv->src_cond), &(self->priv->src_lock));    \
221   GST_LOG_OBJECT (self, "DONE Waiting for src on thread %p",        \
222         g_thread_self());                                           \
223   } G_STMT_END
224
225 #define SRC_BROADCAST(self) G_STMT_START {                          \
226     GST_LOG_OBJECT (self, "Signaling src from thread %p",           \
227         g_thread_self());                                           \
228     if (self->priv->aggregate_id)                                   \
229       gst_clock_id_unschedule (self->priv->aggregate_id);           \
230     g_cond_broadcast(&(self->priv->src_cond));                      \
231   } G_STMT_END
232
233 struct _GstAggregatorPadPrivate
234 {
235   /* Following fields are protected by the PAD_LOCK */
236   GstFlowReturn flow_return;
237   gboolean pending_flush_start;
238   gboolean pending_flush_stop;
239
240   gboolean first_buffer;
241
242   GQueue data;                  /* buffers, events and queries */
243   GstBuffer *clipped_buffer;
244   guint num_buffers;
245
246   /* used to track fill state of queues, only used with live-src and when
247    * latency property is set to > 0 */
248   GstClockTime head_position;
249   GstClockTime tail_position;
250   GstClockTime head_time;       /* running time */
251   GstClockTime tail_time;
252   GstClockTime time_level;      /* how much head is ahead of tail */
253   GstSegment head_segment;      /* segment before the queue */
254
255   gboolean negotiated;
256
257   gboolean eos;
258
259   GMutex lock;
260   GCond event_cond;
261   /* This lock prevents a flush start processing happening while
262    * the chain function is also happening.
263    */
264   GMutex flush_lock;
265
266   /* properties */
267   gboolean emit_signals;
268 };
269
270 /* Must be called with PAD_LOCK held */
271 static void
272 gst_aggregator_pad_reset_unlocked (GstAggregatorPad * aggpad)
273 {
274   aggpad->priv->eos = FALSE;
275   aggpad->priv->flow_return = GST_FLOW_OK;
276   GST_OBJECT_LOCK (aggpad);
277   gst_segment_init (&aggpad->segment, GST_FORMAT_UNDEFINED);
278   gst_segment_init (&aggpad->priv->head_segment, GST_FORMAT_UNDEFINED);
279   GST_OBJECT_UNLOCK (aggpad);
280   aggpad->priv->head_position = GST_CLOCK_TIME_NONE;
281   aggpad->priv->tail_position = GST_CLOCK_TIME_NONE;
282   aggpad->priv->head_time = GST_CLOCK_TIME_NONE;
283   aggpad->priv->tail_time = GST_CLOCK_TIME_NONE;
284   aggpad->priv->time_level = 0;
285   aggpad->priv->first_buffer = TRUE;
286 }
287
288 static gboolean
289 gst_aggregator_pad_flush (GstAggregatorPad * aggpad, GstAggregator * agg)
290 {
291   GstAggregatorPadClass *klass = GST_AGGREGATOR_PAD_GET_CLASS (aggpad);
292
293   PAD_LOCK (aggpad);
294   gst_aggregator_pad_reset_unlocked (aggpad);
295   PAD_UNLOCK (aggpad);
296
297   if (klass->flush)
298     return klass->flush (aggpad, agg);
299
300   return TRUE;
301 }
302
303 /*************************************
304  * GstAggregator implementation  *
305  *************************************/
306 static GstElementClass *aggregator_parent_class = NULL;
307 static gint aggregator_private_offset = 0;
308
309 /* All members are protected by the object lock unless otherwise noted */
310
311 struct _GstAggregatorPrivate
312 {
313   gint max_padserial;
314
315   /* Our state is >= PAUSED */
316   gboolean running;             /* protected by src_lock */
317
318   /* seqnum from seek or segment,
319    * to be applied to synthetic segment/eos events */
320   gint seqnum;
321   gboolean send_stream_start;   /* protected by srcpad stream lock */
322   gboolean send_segment;
323   gboolean flush_seeking;
324   gboolean pending_flush_start;
325   gboolean send_eos;            /* protected by srcpad stream lock */
326
327   GstCaps *srccaps;             /* protected by the srcpad stream lock */
328
329   GstTagList *tags;
330   gboolean tags_changed;
331
332   gboolean peer_latency_live;   /* protected by src_lock */
333   GstClockTime peer_latency_min;        /* protected by src_lock */
334   GstClockTime peer_latency_max;        /* protected by src_lock */
335   gboolean has_peer_latency;    /* protected by src_lock */
336
337   GstClockTime sub_latency_min; /* protected by src_lock */
338   GstClockTime sub_latency_max; /* protected by src_lock */
339
340   GstClockTime upstream_latency_min;    /* protected by src_lock */
341
342   /* aggregate */
343   GstClockID aggregate_id;      /* protected by src_lock */
344   GMutex src_lock;
345   GCond src_cond;
346
347   gboolean first_buffer;        /* protected by object lock */
348   GstAggregatorStartTimeSelection start_time_selection;
349   GstClockTime start_time;
350
351   /* protected by the object lock */
352   GstQuery *allocation_query;
353   GstAllocator *allocator;
354   GstBufferPool *pool;
355   GstAllocationParams allocation_params;
356
357   /* properties */
358   gint64 latency;               /* protected by both src_lock and all pad locks */
359 };
360
361 /* Seek event forwarding helper */
362 typedef struct
363 {
364   /* parameters */
365   GstEvent *event;
366   gboolean flush;
367   gboolean only_to_active_pads;
368
369   /* results */
370   gboolean result;
371   gboolean one_actually_seeked;
372 } EventData;
373
374 #define DEFAULT_LATENCY              0
375 #define DEFAULT_MIN_UPSTREAM_LATENCY              0
376 #define DEFAULT_START_TIME_SELECTION GST_AGGREGATOR_START_TIME_SELECTION_ZERO
377 #define DEFAULT_START_TIME           (-1)
378
379 enum
380 {
381   PROP_0,
382   PROP_LATENCY,
383   PROP_MIN_UPSTREAM_LATENCY,
384   PROP_START_TIME_SELECTION,
385   PROP_START_TIME,
386   PROP_LAST
387 };
388
389 static GstFlowReturn gst_aggregator_pad_chain_internal (GstAggregator * self,
390     GstAggregatorPad * aggpad, GstBuffer * buffer, gboolean head);
391
392 static gboolean
393 gst_aggregator_pad_queue_is_empty (GstAggregatorPad * pad)
394 {
395   return (g_queue_peek_tail (&pad->priv->data) == NULL &&
396       pad->priv->clipped_buffer == NULL);
397 }
398
399 static gboolean
400 gst_aggregator_check_pads_ready (GstAggregator * self)
401 {
402   GstAggregatorPad *pad = NULL;
403   GList *l, *sinkpads;
404   gboolean have_buffer = TRUE;
405   gboolean have_event_or_query = FALSE;
406
407   GST_LOG_OBJECT (self, "checking pads");
408
409   GST_OBJECT_LOCK (self);
410
411   sinkpads = GST_ELEMENT_CAST (self)->sinkpads;
412   if (sinkpads == NULL)
413     goto no_sinkpads;
414
415   for (l = sinkpads; l != NULL; l = l->next) {
416     pad = l->data;
417
418     PAD_LOCK (pad);
419
420     if (pad->priv->num_buffers == 0) {
421       if (!gst_aggregator_pad_queue_is_empty (pad))
422         have_event_or_query = TRUE;
423       if (!pad->priv->eos) {
424         have_buffer = FALSE;
425
426         /* If not live we need data on all pads, so leave the loop */
427         if (!self->priv->peer_latency_live) {
428           PAD_UNLOCK (pad);
429           goto pad_not_ready;
430         }
431       }
432     } else if (self->priv->peer_latency_live) {
433       /* In live mode, having a single pad with buffers is enough to
434        * generate a start time from it. In non-live mode all pads need
435        * to have a buffer
436        */
437       self->priv->first_buffer = FALSE;
438     }
439
440     PAD_UNLOCK (pad);
441   }
442
443   if (!have_buffer && !have_event_or_query)
444     goto pad_not_ready;
445
446   if (have_buffer)
447     self->priv->first_buffer = FALSE;
448
449   GST_OBJECT_UNLOCK (self);
450   GST_LOG_OBJECT (self, "pads are ready");
451   return TRUE;
452
453 no_sinkpads:
454   {
455     GST_LOG_OBJECT (self, "pads not ready: no sink pads");
456     GST_OBJECT_UNLOCK (self);
457     return FALSE;
458   }
459 pad_not_ready:
460   {
461     if (have_event_or_query)
462       GST_LOG_OBJECT (pad, "pad not ready to be aggregated yet,"
463           " but waking up for serialized event");
464     else
465       GST_LOG_OBJECT (pad, "pad not ready to be aggregated yet");
466     GST_OBJECT_UNLOCK (self);
467     return have_event_or_query;
468   }
469 }
470
471 static void
472 gst_aggregator_reset_flow_values (GstAggregator * self)
473 {
474   GST_OBJECT_LOCK (self);
475   self->priv->send_stream_start = TRUE;
476   self->priv->send_segment = TRUE;
477   gst_segment_init (&GST_AGGREGATOR_PAD (self->srcpad)->segment,
478       GST_FORMAT_TIME);
479   self->priv->first_buffer = TRUE;
480   GST_OBJECT_UNLOCK (self);
481 }
482
483 static inline void
484 gst_aggregator_push_mandatory_events (GstAggregator * self)
485 {
486   GstAggregatorPrivate *priv = self->priv;
487   GstEvent *segment = NULL;
488   GstEvent *tags = NULL;
489
490   if (self->priv->send_stream_start) {
491     gchar s_id[32];
492
493     GST_INFO_OBJECT (self, "pushing stream start");
494     /* stream-start (FIXME: create id based on input ids) */
495     g_snprintf (s_id, sizeof (s_id), "agg-%08x", g_random_int ());
496     if (!gst_pad_push_event (GST_PAD (self->srcpad),
497             gst_event_new_stream_start (s_id))) {
498       GST_WARNING_OBJECT (self->srcpad, "Sending stream start event failed");
499     }
500     self->priv->send_stream_start = FALSE;
501   }
502
503   if (self->priv->srccaps) {
504
505     GST_INFO_OBJECT (self, "pushing caps: %" GST_PTR_FORMAT,
506         self->priv->srccaps);
507     if (!gst_pad_push_event (GST_PAD (self->srcpad),
508             gst_event_new_caps (self->priv->srccaps))) {
509       GST_WARNING_OBJECT (self->srcpad, "Sending caps event failed");
510     }
511     gst_caps_unref (self->priv->srccaps);
512     self->priv->srccaps = NULL;
513   }
514
515   GST_OBJECT_LOCK (self);
516   if (self->priv->send_segment && !self->priv->flush_seeking) {
517     segment =
518         gst_event_new_segment (&GST_AGGREGATOR_PAD (self->srcpad)->segment);
519
520     if (!self->priv->seqnum)
521       /* This code-path is in preparation to be able to run without a source
522        * connected. Then we won't have a seq-num from a segment event. */
523       self->priv->seqnum = gst_event_get_seqnum (segment);
524     else
525       gst_event_set_seqnum (segment, self->priv->seqnum);
526     self->priv->send_segment = FALSE;
527
528     GST_DEBUG_OBJECT (self, "pushing segment %" GST_PTR_FORMAT, segment);
529   }
530
531   if (priv->tags && priv->tags_changed && !self->priv->flush_seeking) {
532     tags = gst_event_new_tag (gst_tag_list_ref (priv->tags));
533     priv->tags_changed = FALSE;
534   }
535   GST_OBJECT_UNLOCK (self);
536
537   if (segment)
538     gst_pad_push_event (self->srcpad, segment);
539   if (tags)
540     gst_pad_push_event (self->srcpad, tags);
541
542 }
543
544 /**
545  * gst_aggregator_set_src_caps:
546  * @self: The #GstAggregator
547  * @caps: The #GstCaps to set on the src pad.
548  *
549  * Sets the caps to be used on the src pad.
550  */
551 void
552 gst_aggregator_set_src_caps (GstAggregator * self, GstCaps * caps)
553 {
554   GST_PAD_STREAM_LOCK (self->srcpad);
555   gst_caps_replace (&self->priv->srccaps, caps);
556   gst_aggregator_push_mandatory_events (self);
557   GST_PAD_STREAM_UNLOCK (self->srcpad);
558 }
559
560 static GstFlowReturn
561 gst_aggregator_default_finish_buffer (GstAggregator * self, GstBuffer * buffer)
562 {
563   gst_aggregator_push_mandatory_events (self);
564
565   GST_OBJECT_LOCK (self);
566   if (!self->priv->flush_seeking && gst_pad_is_active (self->srcpad)) {
567     GST_TRACE_OBJECT (self, "pushing buffer %" GST_PTR_FORMAT, buffer);
568     GST_OBJECT_UNLOCK (self);
569     return gst_pad_push (self->srcpad, buffer);
570   } else {
571     GST_INFO_OBJECT (self, "Not pushing (active: %i, flushing: %i)",
572         self->priv->flush_seeking, gst_pad_is_active (self->srcpad));
573     GST_OBJECT_UNLOCK (self);
574     gst_buffer_unref (buffer);
575     return GST_FLOW_OK;
576   }
577 }
578
579 /**
580  * gst_aggregator_finish_buffer:
581  * @aggregator: The #GstAggregator
582  * @buffer: (transfer full): the #GstBuffer to push.
583  *
584  * This method will push the provided output buffer downstream. If needed,
585  * mandatory events such as stream-start, caps, and segment events will be
586  * sent before pushing the buffer.
587  */
588 GstFlowReturn
589 gst_aggregator_finish_buffer (GstAggregator * aggregator, GstBuffer * buffer)
590 {
591   GstAggregatorClass *klass = GST_AGGREGATOR_GET_CLASS (aggregator);
592
593   g_assert (klass->finish_buffer != NULL);
594
595   return klass->finish_buffer (aggregator, buffer);
596 }
597
598 static void
599 gst_aggregator_push_eos (GstAggregator * self)
600 {
601   GstEvent *event;
602   gst_aggregator_push_mandatory_events (self);
603
604   event = gst_event_new_eos ();
605
606   GST_OBJECT_LOCK (self);
607   self->priv->send_eos = FALSE;
608   gst_event_set_seqnum (event, self->priv->seqnum);
609   GST_OBJECT_UNLOCK (self);
610
611   gst_pad_push_event (self->srcpad, event);
612 }
613
614 static GstClockTime
615 gst_aggregator_get_next_time (GstAggregator * self)
616 {
617   GstAggregatorClass *klass = GST_AGGREGATOR_GET_CLASS (self);
618
619   if (klass->get_next_time)
620     return klass->get_next_time (self);
621
622   return GST_CLOCK_TIME_NONE;
623 }
624
625 static gboolean
626 gst_aggregator_wait_and_check (GstAggregator * self, gboolean * timeout)
627 {
628   GstClockTime latency;
629   GstClockTime start;
630   gboolean res;
631
632   *timeout = FALSE;
633
634   SRC_LOCK (self);
635
636   latency = gst_aggregator_get_latency_unlocked (self);
637
638   if (gst_aggregator_check_pads_ready (self)) {
639     GST_DEBUG_OBJECT (self, "all pads have data");
640     SRC_UNLOCK (self);
641
642     return TRUE;
643   }
644
645   /* Before waiting, check if we're actually still running */
646   if (!self->priv->running || !self->priv->send_eos) {
647     SRC_UNLOCK (self);
648
649     return FALSE;
650   }
651
652   start = gst_aggregator_get_next_time (self);
653
654   /* If we're not live, or if we use the running time
655    * of the first buffer as start time, we wait until
656    * all pads have buffers.
657    * Otherwise (i.e. if we are live!), we wait on the clock
658    * and if a pad does not have a buffer in time we ignore
659    * that pad.
660    */
661   GST_OBJECT_LOCK (self);
662   if (!GST_CLOCK_TIME_IS_VALID (latency) ||
663       !GST_IS_CLOCK (GST_ELEMENT_CLOCK (self)) ||
664       !GST_CLOCK_TIME_IS_VALID (start) ||
665       (self->priv->first_buffer
666           && self->priv->start_time_selection ==
667           GST_AGGREGATOR_START_TIME_SELECTION_FIRST)) {
668     /* We wake up here when something happened, and below
669      * then check if we're ready now. If we return FALSE,
670      * we will be directly called again.
671      */
672     GST_OBJECT_UNLOCK (self);
673     SRC_WAIT (self);
674   } else {
675     GstClockTime base_time, time;
676     GstClock *clock;
677     GstClockReturn status;
678     GstClockTimeDiff jitter;
679
680     GST_DEBUG_OBJECT (self, "got subclass start time: %" GST_TIME_FORMAT,
681         GST_TIME_ARGS (start));
682
683     base_time = GST_ELEMENT_CAST (self)->base_time;
684     clock = gst_object_ref (GST_ELEMENT_CLOCK (self));
685     GST_OBJECT_UNLOCK (self);
686
687     time = base_time + start;
688     time += latency;
689
690     GST_DEBUG_OBJECT (self, "possibly waiting for clock to reach %"
691         GST_TIME_FORMAT " (base %" GST_TIME_FORMAT " start %" GST_TIME_FORMAT
692         " latency %" GST_TIME_FORMAT " current %" GST_TIME_FORMAT ")",
693         GST_TIME_ARGS (time),
694         GST_TIME_ARGS (base_time),
695         GST_TIME_ARGS (start), GST_TIME_ARGS (latency),
696         GST_TIME_ARGS (gst_clock_get_time (clock)));
697
698     self->priv->aggregate_id = gst_clock_new_single_shot_id (clock, time);
699     gst_object_unref (clock);
700     SRC_UNLOCK (self);
701
702     jitter = 0;
703     status = gst_clock_id_wait (self->priv->aggregate_id, &jitter);
704
705     SRC_LOCK (self);
706     if (self->priv->aggregate_id) {
707       gst_clock_id_unref (self->priv->aggregate_id);
708       self->priv->aggregate_id = NULL;
709     }
710
711     GST_DEBUG_OBJECT (self,
712         "clock returned %d (jitter: %" GST_STIME_FORMAT ")",
713         status, GST_STIME_ARGS (jitter));
714
715     /* we timed out */
716     if (status == GST_CLOCK_OK || status == GST_CLOCK_EARLY) {
717       SRC_UNLOCK (self);
718       *timeout = TRUE;
719       return TRUE;
720     }
721   }
722
723   res = gst_aggregator_check_pads_ready (self);
724   SRC_UNLOCK (self);
725
726   return res;
727 }
728
729 typedef struct
730 {
731   gboolean processed_event;
732   GstFlowReturn flow_ret;
733 } DoHandleEventsAndQueriesData;
734
735 static gboolean
736 gst_aggregator_do_events_and_queries (GstElement * self, GstPad * epad,
737     gpointer user_data)
738 {
739   GstAggregatorPad *pad = GST_AGGREGATOR_PAD_CAST (epad);
740   GstAggregator *aggregator = GST_AGGREGATOR_CAST (self);
741   GstEvent *event = NULL;
742   GstQuery *query = NULL;
743   GstAggregatorClass *klass = NULL;
744   DoHandleEventsAndQueriesData *data = user_data;
745
746   do {
747     event = NULL;
748     query = NULL;
749
750     PAD_LOCK (pad);
751     if (pad->priv->clipped_buffer == NULL &&
752         !GST_IS_BUFFER (g_queue_peek_tail (&pad->priv->data))) {
753       if (GST_IS_EVENT (g_queue_peek_tail (&pad->priv->data)))
754         event = gst_event_ref (g_queue_peek_tail (&pad->priv->data));
755       if (GST_IS_QUERY (g_queue_peek_tail (&pad->priv->data)))
756         query = g_queue_peek_tail (&pad->priv->data);
757     }
758     PAD_UNLOCK (pad);
759     if (event || query) {
760       gboolean ret;
761
762       data->processed_event = TRUE;
763       if (klass == NULL)
764         klass = GST_AGGREGATOR_GET_CLASS (self);
765
766       if (event) {
767         GST_LOG_OBJECT (pad, "Processing %" GST_PTR_FORMAT, event);
768         gst_event_ref (event);
769         ret = klass->sink_event (aggregator, pad, event);
770
771         PAD_LOCK (pad);
772         if (GST_EVENT_TYPE (event) == GST_EVENT_CAPS) {
773           pad->priv->negotiated = ret;
774           if (!ret)
775             pad->priv->flow_return = data->flow_ret = GST_FLOW_NOT_NEGOTIATED;
776         }
777         if (g_queue_peek_tail (&pad->priv->data) == event)
778           gst_event_unref (g_queue_pop_tail (&pad->priv->data));
779         gst_event_unref (event);
780       } else if (query) {
781         GST_LOG_OBJECT (pad, "Processing %" GST_PTR_FORMAT, query);
782         ret = klass->sink_query (aggregator, pad, query);
783
784         PAD_LOCK (pad);
785         if (g_queue_peek_tail (&pad->priv->data) == query) {
786           GstStructure *s;
787
788           s = gst_query_writable_structure (query);
789           gst_structure_set (s, "gst-aggregator-retval", G_TYPE_BOOLEAN, ret,
790               NULL);
791           g_queue_pop_tail (&pad->priv->data);
792         }
793       }
794
795       PAD_BROADCAST_EVENT (pad);
796       PAD_UNLOCK (pad);
797     }
798   } while (event || query);
799
800   return TRUE;
801 }
802
803 static gboolean
804 gst_aggregator_pad_skip_buffers (GstElement * self, GstPad * epad,
805     gpointer user_data)
806 {
807   GList *item;
808   GstAggregatorPad *aggpad = (GstAggregatorPad *) epad;
809   GstAggregator *agg = (GstAggregator *) self;
810   GstAggregatorPadClass *klass = GST_AGGREGATOR_PAD_GET_CLASS (aggpad);
811
812   if (!klass->skip_buffer)
813     return FALSE;
814
815   PAD_LOCK (aggpad);
816
817   item = g_queue_peek_head_link (&aggpad->priv->data);
818   while (item) {
819     GList *next = item->next;
820
821     if (GST_IS_BUFFER (item->data)
822         && klass->skip_buffer (aggpad, agg, item->data)) {
823       GST_LOG_OBJECT (aggpad, "Skipping %" GST_PTR_FORMAT, item->data);
824       gst_aggregator_pad_buffer_consumed (aggpad, GST_BUFFER (item->data));
825       gst_buffer_unref (item->data);
826       g_queue_delete_link (&aggpad->priv->data, item);
827     } else {
828       break;
829     }
830
831     item = next;
832   }
833
834   PAD_UNLOCK (aggpad);
835
836   return TRUE;
837 }
838
839 static void
840 gst_aggregator_pad_set_flushing (GstAggregatorPad * aggpad,
841     GstFlowReturn flow_return, gboolean full)
842 {
843   GList *item;
844
845   PAD_LOCK (aggpad);
846   if (flow_return == GST_FLOW_NOT_LINKED)
847     aggpad->priv->flow_return = MIN (flow_return, aggpad->priv->flow_return);
848   else
849     aggpad->priv->flow_return = flow_return;
850
851   item = g_queue_peek_head_link (&aggpad->priv->data);
852   while (item) {
853     GList *next = item->next;
854
855     /* In partial flush, we do like the pad, we get rid of non-sticky events
856      * and EOS/SEGMENT.
857      */
858     if (full || GST_IS_BUFFER (item->data) ||
859         GST_EVENT_TYPE (item->data) == GST_EVENT_EOS ||
860         GST_EVENT_TYPE (item->data) == GST_EVENT_SEGMENT ||
861         !GST_EVENT_IS_STICKY (item->data)) {
862       if (!GST_IS_QUERY (item->data))
863         gst_mini_object_unref (item->data);
864       g_queue_delete_link (&aggpad->priv->data, item);
865     }
866     item = next;
867   }
868   aggpad->priv->num_buffers = 0;
869   gst_buffer_replace (&aggpad->priv->clipped_buffer, NULL);
870
871   PAD_BROADCAST_EVENT (aggpad);
872   PAD_UNLOCK (aggpad);
873 }
874
875 static GstFlowReturn
876 gst_aggregator_default_update_src_caps (GstAggregator * agg, GstCaps * caps,
877     GstCaps ** ret)
878 {
879   *ret = gst_caps_ref (caps);
880
881   return GST_FLOW_OK;
882 }
883
884 static GstCaps *
885 gst_aggregator_default_fixate_src_caps (GstAggregator * agg, GstCaps * caps)
886 {
887   caps = gst_caps_fixate (caps);
888
889   return caps;
890 }
891
892 static gboolean
893 gst_aggregator_default_negotiated_src_caps (GstAggregator * agg, GstCaps * caps)
894 {
895   return TRUE;
896 }
897
898
899 /* takes ownership of the pool, allocator and query */
900 static gboolean
901 gst_aggregator_set_allocation (GstAggregator * self,
902     GstBufferPool * pool, GstAllocator * allocator,
903     GstAllocationParams * params, GstQuery * query)
904 {
905   GstAllocator *oldalloc;
906   GstBufferPool *oldpool;
907   GstQuery *oldquery;
908
909   GST_DEBUG ("storing allocation query");
910
911   GST_OBJECT_LOCK (self);
912   oldpool = self->priv->pool;
913   self->priv->pool = pool;
914
915   oldalloc = self->priv->allocator;
916   self->priv->allocator = allocator;
917
918   oldquery = self->priv->allocation_query;
919   self->priv->allocation_query = query;
920
921   if (params)
922     self->priv->allocation_params = *params;
923   else
924     gst_allocation_params_init (&self->priv->allocation_params);
925   GST_OBJECT_UNLOCK (self);
926
927   if (oldpool) {
928     GST_DEBUG_OBJECT (self, "deactivating old pool %p", oldpool);
929     gst_buffer_pool_set_active (oldpool, FALSE);
930     gst_object_unref (oldpool);
931   }
932   if (oldalloc) {
933     gst_object_unref (oldalloc);
934   }
935   if (oldquery) {
936     gst_query_unref (oldquery);
937   }
938   return TRUE;
939 }
940
941
942 static gboolean
943 gst_aggregator_decide_allocation (GstAggregator * self, GstQuery * query)
944 {
945   GstAggregatorClass *aggclass = GST_AGGREGATOR_GET_CLASS (self);
946
947   if (aggclass->decide_allocation)
948     if (!aggclass->decide_allocation (self, query))
949       return FALSE;
950
951   return TRUE;
952 }
953
954 static gboolean
955 gst_aggregator_do_allocation (GstAggregator * self, GstCaps * caps)
956 {
957   GstQuery *query;
958   gboolean result = TRUE;
959   GstBufferPool *pool = NULL;
960   GstAllocator *allocator;
961   GstAllocationParams params;
962
963   /* find a pool for the negotiated caps now */
964   GST_DEBUG_OBJECT (self, "doing allocation query");
965   query = gst_query_new_allocation (caps, TRUE);
966   if (!gst_pad_peer_query (self->srcpad, query)) {
967     /* not a problem, just debug a little */
968     GST_DEBUG_OBJECT (self, "peer ALLOCATION query failed");
969   }
970
971   GST_DEBUG_OBJECT (self, "calling decide_allocation");
972   result = gst_aggregator_decide_allocation (self, query);
973
974   GST_DEBUG_OBJECT (self, "ALLOCATION (%d) params: %" GST_PTR_FORMAT, result,
975       query);
976
977   if (!result)
978     goto no_decide_allocation;
979
980   /* we got configuration from our peer or the decide_allocation method,
981    * parse them */
982   if (gst_query_get_n_allocation_params (query) > 0) {
983     gst_query_parse_nth_allocation_param (query, 0, &allocator, &params);
984   } else {
985     allocator = NULL;
986     gst_allocation_params_init (&params);
987   }
988
989   if (gst_query_get_n_allocation_pools (query) > 0)
990     gst_query_parse_nth_allocation_pool (query, 0, &pool, NULL, NULL, NULL);
991
992   /* now store */
993   result =
994       gst_aggregator_set_allocation (self, pool, allocator, &params, query);
995
996   return result;
997
998   /* Errors */
999 no_decide_allocation:
1000   {
1001     GST_WARNING_OBJECT (self, "Failed to decide allocation");
1002     gst_query_unref (query);
1003
1004     return result;
1005   }
1006
1007 }
1008
1009 /* WITH SRC_LOCK held */
1010 static GstFlowReturn
1011 gst_aggregator_update_src_caps (GstAggregator * self)
1012 {
1013   GstAggregatorClass *agg_klass = GST_AGGREGATOR_GET_CLASS (self);
1014   GstCaps *downstream_caps, *template_caps, *caps = NULL;
1015   GstFlowReturn ret = GST_FLOW_OK;
1016
1017   template_caps = gst_pad_get_pad_template_caps (self->srcpad);
1018   downstream_caps = gst_pad_peer_query_caps (self->srcpad, template_caps);
1019
1020   if (gst_caps_is_empty (downstream_caps)) {
1021     GST_INFO_OBJECT (self, "Downstream caps (%"
1022         GST_PTR_FORMAT ") not compatible with pad template caps (%"
1023         GST_PTR_FORMAT ")", downstream_caps, template_caps);
1024     ret = GST_FLOW_NOT_NEGOTIATED;
1025     goto done;
1026   }
1027
1028   g_assert (agg_klass->update_src_caps);
1029   GST_DEBUG_OBJECT (self, "updating caps from %" GST_PTR_FORMAT,
1030       downstream_caps);
1031   ret = agg_klass->update_src_caps (self, downstream_caps, &caps);
1032   if (ret < GST_FLOW_OK) {
1033     GST_WARNING_OBJECT (self, "Subclass failed to update provided caps");
1034     goto done;
1035   }
1036   if ((caps == NULL || gst_caps_is_empty (caps)) && ret >= GST_FLOW_OK) {
1037     ret = GST_FLOW_NOT_NEGOTIATED;
1038     goto done;
1039   }
1040   GST_DEBUG_OBJECT (self, "               to %" GST_PTR_FORMAT, caps);
1041
1042 #ifdef GST_ENABLE_EXTRA_CHECKS
1043   if (!gst_caps_is_subset (caps, template_caps)) {
1044     GstCaps *intersection;
1045
1046     GST_ERROR_OBJECT (self,
1047         "update_src_caps returned caps %" GST_PTR_FORMAT
1048         " which are not a real subset of the template caps %"
1049         GST_PTR_FORMAT, caps, template_caps);
1050     g_warning ("%s: update_src_caps returned caps which are not a real "
1051         "subset of the filter caps", GST_ELEMENT_NAME (self));
1052
1053     intersection =
1054         gst_caps_intersect_full (template_caps, caps, GST_CAPS_INTERSECT_FIRST);
1055     gst_caps_unref (caps);
1056     caps = intersection;
1057   }
1058 #endif
1059
1060   if (gst_caps_is_any (caps)) {
1061     goto done;
1062   }
1063
1064   if (!gst_caps_is_fixed (caps)) {
1065     g_assert (agg_klass->fixate_src_caps);
1066
1067     GST_DEBUG_OBJECT (self, "fixate caps from %" GST_PTR_FORMAT, caps);
1068     if (!(caps = agg_klass->fixate_src_caps (self, caps))) {
1069       GST_WARNING_OBJECT (self, "Subclass failed to fixate provided caps");
1070       ret = GST_FLOW_NOT_NEGOTIATED;
1071       goto done;
1072     }
1073     GST_DEBUG_OBJECT (self, "             to %" GST_PTR_FORMAT, caps);
1074   }
1075
1076   if (agg_klass->negotiated_src_caps) {
1077     if (!agg_klass->negotiated_src_caps (self, caps)) {
1078       GST_WARNING_OBJECT (self, "Subclass failed to accept negotiated caps");
1079       ret = GST_FLOW_NOT_NEGOTIATED;
1080       goto done;
1081     }
1082   }
1083
1084   gst_aggregator_set_src_caps (self, caps);
1085
1086   if (!gst_aggregator_do_allocation (self, caps)) {
1087     GST_WARNING_OBJECT (self, "Allocation negotiation failed");
1088     ret = GST_FLOW_NOT_NEGOTIATED;
1089   }
1090
1091 done:
1092   gst_caps_unref (downstream_caps);
1093   gst_caps_unref (template_caps);
1094
1095   if (caps)
1096     gst_caps_unref (caps);
1097
1098   return ret;
1099 }
1100
1101 static void
1102 gst_aggregator_aggregate_func (GstAggregator * self)
1103 {
1104   GstAggregatorPrivate *priv = self->priv;
1105   GstAggregatorClass *klass = GST_AGGREGATOR_GET_CLASS (self);
1106   gboolean timeout = FALSE;
1107
1108   if (self->priv->running == FALSE) {
1109     GST_DEBUG_OBJECT (self, "Not running anymore");
1110     return;
1111   }
1112
1113   GST_LOG_OBJECT (self, "Checking aggregate");
1114   while (priv->send_eos && priv->running) {
1115     GstFlowReturn flow_return = GST_FLOW_OK;
1116     DoHandleEventsAndQueriesData events_query_data = { FALSE, GST_FLOW_OK };
1117
1118     gst_element_foreach_sink_pad (GST_ELEMENT_CAST (self),
1119         gst_aggregator_do_events_and_queries, &events_query_data);
1120
1121     if ((flow_return = events_query_data.flow_ret) != GST_FLOW_OK)
1122       goto handle_error;
1123
1124     if (self->priv->peer_latency_live)
1125       gst_element_foreach_sink_pad (GST_ELEMENT_CAST (self),
1126           gst_aggregator_pad_skip_buffers, NULL);
1127
1128     /* Ensure we have buffers ready (either in clipped_buffer or at the head of
1129      * the queue */
1130     if (!gst_aggregator_wait_and_check (self, &timeout))
1131       continue;
1132
1133     events_query_data.processed_event = FALSE;
1134     events_query_data.flow_ret = GST_FLOW_OK;
1135     gst_element_foreach_sink_pad (GST_ELEMENT_CAST (self),
1136         gst_aggregator_do_events_and_queries, &events_query_data);
1137
1138     if ((flow_return = events_query_data.flow_ret) != GST_FLOW_OK)
1139       goto handle_error;
1140
1141     if (events_query_data.processed_event)
1142       continue;
1143
1144     if (gst_pad_check_reconfigure (GST_AGGREGATOR_SRC_PAD (self))) {
1145       flow_return = gst_aggregator_update_src_caps (self);
1146       if (flow_return != GST_FLOW_OK)
1147         gst_pad_mark_reconfigure (GST_AGGREGATOR_SRC_PAD (self));
1148     }
1149
1150     if (timeout || flow_return >= GST_FLOW_OK) {
1151       GST_TRACE_OBJECT (self, "Actually aggregating!");
1152       flow_return = klass->aggregate (self, timeout);
1153     }
1154
1155     if (flow_return == GST_AGGREGATOR_FLOW_NEED_DATA)
1156       continue;
1157
1158     GST_OBJECT_LOCK (self);
1159     if (flow_return == GST_FLOW_FLUSHING && priv->flush_seeking) {
1160       /* We don't want to set the pads to flushing, but we want to
1161        * stop the thread, so just break here */
1162       GST_OBJECT_UNLOCK (self);
1163       break;
1164     }
1165     GST_OBJECT_UNLOCK (self);
1166
1167     if (flow_return == GST_FLOW_EOS || flow_return == GST_FLOW_ERROR) {
1168       gst_aggregator_push_eos (self);
1169     }
1170
1171   handle_error:
1172     GST_LOG_OBJECT (self, "flow return is %s", gst_flow_get_name (flow_return));
1173
1174     if (flow_return != GST_FLOW_OK) {
1175       GList *item;
1176
1177       GST_OBJECT_LOCK (self);
1178       for (item = GST_ELEMENT (self)->sinkpads; item; item = item->next) {
1179         GstAggregatorPad *aggpad = GST_AGGREGATOR_PAD (item->data);
1180
1181         gst_aggregator_pad_set_flushing (aggpad, flow_return, TRUE);
1182       }
1183       GST_OBJECT_UNLOCK (self);
1184       break;
1185     }
1186   }
1187
1188   /* Pause the task here, the only ways to get here are:
1189    * 1) We're stopping, in which case the task is stopped anyway
1190    * 2) We got a flow error above, in which case it might take
1191    *    some time to forward the flow return upstream and we
1192    *    would otherwise call the task function over and over
1193    *    again without doing anything
1194    */
1195   gst_pad_pause_task (self->srcpad);
1196 }
1197
1198 static gboolean
1199 gst_aggregator_start (GstAggregator * self)
1200 {
1201   GstAggregatorClass *klass;
1202   gboolean result;
1203
1204   self->priv->send_stream_start = TRUE;
1205   self->priv->send_segment = TRUE;
1206   self->priv->send_eos = TRUE;
1207   self->priv->srccaps = NULL;
1208
1209   gst_aggregator_set_allocation (self, NULL, NULL, NULL, NULL);
1210
1211   klass = GST_AGGREGATOR_GET_CLASS (self);
1212
1213   if (klass->start)
1214     result = klass->start (self);
1215   else
1216     result = TRUE;
1217
1218   return result;
1219 }
1220
1221 static gboolean
1222 _check_pending_flush_stop (GstAggregatorPad * pad)
1223 {
1224   gboolean res;
1225
1226   PAD_LOCK (pad);
1227   res = (!pad->priv->pending_flush_stop && !pad->priv->pending_flush_start);
1228   PAD_UNLOCK (pad);
1229
1230   return res;
1231 }
1232
1233 static gboolean
1234 gst_aggregator_stop_srcpad_task (GstAggregator * self, GstEvent * flush_start)
1235 {
1236   gboolean res = TRUE;
1237
1238   GST_INFO_OBJECT (self, "%s srcpad task",
1239       flush_start ? "Pausing" : "Stopping");
1240
1241   SRC_LOCK (self);
1242   self->priv->running = FALSE;
1243   SRC_BROADCAST (self);
1244   SRC_UNLOCK (self);
1245
1246   if (flush_start) {
1247     res = gst_pad_push_event (self->srcpad, flush_start);
1248   }
1249
1250   gst_pad_stop_task (self->srcpad);
1251
1252   return res;
1253 }
1254
1255 static void
1256 gst_aggregator_start_srcpad_task (GstAggregator * self)
1257 {
1258   GST_INFO_OBJECT (self, "Starting srcpad task");
1259
1260   self->priv->running = TRUE;
1261   gst_pad_start_task (GST_PAD (self->srcpad),
1262       (GstTaskFunction) gst_aggregator_aggregate_func, self, NULL);
1263 }
1264
1265 static GstFlowReturn
1266 gst_aggregator_flush (GstAggregator * self)
1267 {
1268   GstFlowReturn ret = GST_FLOW_OK;
1269   GstAggregatorPrivate *priv = self->priv;
1270   GstAggregatorClass *klass = GST_AGGREGATOR_GET_CLASS (self);
1271
1272   GST_DEBUG_OBJECT (self, "Flushing everything");
1273   GST_OBJECT_LOCK (self);
1274   priv->send_segment = TRUE;
1275   priv->flush_seeking = FALSE;
1276   priv->tags_changed = FALSE;
1277   GST_OBJECT_UNLOCK (self);
1278   if (klass->flush)
1279     ret = klass->flush (self);
1280
1281   return ret;
1282 }
1283
1284
1285 /* Called with GstAggregator's object lock held */
1286
1287 static gboolean
1288 gst_aggregator_all_flush_stop_received_locked (GstAggregator * self)
1289 {
1290   GList *tmp;
1291   GstAggregatorPad *tmppad;
1292
1293   for (tmp = GST_ELEMENT (self)->sinkpads; tmp; tmp = tmp->next) {
1294     tmppad = (GstAggregatorPad *) tmp->data;
1295
1296     if (_check_pending_flush_stop (tmppad) == FALSE) {
1297       GST_DEBUG_OBJECT (tmppad, "Is not last %i -- %i",
1298           tmppad->priv->pending_flush_start, tmppad->priv->pending_flush_stop);
1299       return FALSE;
1300     }
1301   }
1302
1303   return TRUE;
1304 }
1305
1306 static void
1307 gst_aggregator_flush_start (GstAggregator * self, GstAggregatorPad * aggpad,
1308     GstEvent * event)
1309 {
1310   GstAggregatorPrivate *priv = self->priv;
1311   GstAggregatorPadPrivate *padpriv = aggpad->priv;
1312
1313   gst_aggregator_pad_set_flushing (aggpad, GST_FLOW_FLUSHING, FALSE);
1314
1315   PAD_FLUSH_LOCK (aggpad);
1316   PAD_LOCK (aggpad);
1317   if (padpriv->pending_flush_start) {
1318     GST_DEBUG_OBJECT (aggpad, "Expecting FLUSH_STOP now");
1319
1320     padpriv->pending_flush_start = FALSE;
1321     padpriv->pending_flush_stop = TRUE;
1322   }
1323   PAD_UNLOCK (aggpad);
1324
1325   GST_OBJECT_LOCK (self);
1326   if (priv->flush_seeking) {
1327     /* If flush_seeking we forward the first FLUSH_START */
1328     if (priv->pending_flush_start) {
1329       priv->pending_flush_start = FALSE;
1330       GST_OBJECT_UNLOCK (self);
1331
1332       GST_INFO_OBJECT (self, "Flushing, pausing srcpad task");
1333       gst_aggregator_stop_srcpad_task (self, event);
1334
1335       GST_INFO_OBJECT (self, "Getting STREAM_LOCK while seeking");
1336       GST_PAD_STREAM_LOCK (self->srcpad);
1337       GST_LOG_OBJECT (self, "GOT STREAM_LOCK");
1338       event = NULL;
1339     } else {
1340       GST_OBJECT_UNLOCK (self);
1341       gst_event_unref (event);
1342     }
1343   } else {
1344     GST_OBJECT_UNLOCK (self);
1345     gst_event_unref (event);
1346   }
1347   PAD_FLUSH_UNLOCK (aggpad);
1348 }
1349
1350 /* Must be called with the the PAD_LOCK held */
1351 static void
1352 update_time_level (GstAggregatorPad * aggpad, gboolean head)
1353 {
1354   GstAggregatorPadPrivate *priv = aggpad->priv;
1355
1356   if (head) {
1357     if (GST_CLOCK_TIME_IS_VALID (priv->head_position) &&
1358         priv->head_segment.format == GST_FORMAT_TIME)
1359       priv->head_time = gst_segment_to_running_time (&priv->head_segment,
1360           GST_FORMAT_TIME, priv->head_position);
1361     else
1362       priv->head_time = GST_CLOCK_TIME_NONE;
1363
1364     if (!GST_CLOCK_TIME_IS_VALID (priv->tail_time))
1365       priv->tail_time = priv->head_time;
1366   } else {
1367     if (GST_CLOCK_TIME_IS_VALID (priv->tail_position) &&
1368         aggpad->segment.format == GST_FORMAT_TIME)
1369       priv->tail_time = gst_segment_to_running_time (&aggpad->segment,
1370           GST_FORMAT_TIME, priv->tail_position);
1371     else
1372       priv->tail_time = priv->head_time;
1373   }
1374
1375   if (priv->head_time == GST_CLOCK_TIME_NONE ||
1376       priv->tail_time == GST_CLOCK_TIME_NONE) {
1377     priv->time_level = 0;
1378     return;
1379   }
1380
1381   if (priv->tail_time > priv->head_time)
1382     priv->time_level = 0;
1383   else
1384     priv->time_level = priv->head_time - priv->tail_time;
1385 }
1386
1387
1388 /* GstAggregator vmethods default implementations */
1389 static gboolean
1390 gst_aggregator_default_sink_event (GstAggregator * self,
1391     GstAggregatorPad * aggpad, GstEvent * event)
1392 {
1393   gboolean res = TRUE;
1394   GstPad *pad = GST_PAD (aggpad);
1395   GstAggregatorPrivate *priv = self->priv;
1396
1397   GST_DEBUG_OBJECT (aggpad, "Got event: %" GST_PTR_FORMAT, event);
1398
1399   switch (GST_EVENT_TYPE (event)) {
1400     case GST_EVENT_FLUSH_START:
1401     {
1402       gst_aggregator_flush_start (self, aggpad, event);
1403       /* We forward only in one case: right after flush_seeking */
1404       event = NULL;
1405       goto eat;
1406     }
1407     case GST_EVENT_FLUSH_STOP:
1408     {
1409       gst_aggregator_pad_flush (aggpad, self);
1410       GST_OBJECT_LOCK (self);
1411       if (priv->flush_seeking) {
1412         g_atomic_int_set (&aggpad->priv->pending_flush_stop, FALSE);
1413         if (gst_aggregator_all_flush_stop_received_locked (self)) {
1414           GST_OBJECT_UNLOCK (self);
1415           /* That means we received FLUSH_STOP/FLUSH_STOP on
1416            * all sinkpads -- Seeking is Done... sending FLUSH_STOP */
1417           gst_aggregator_flush (self);
1418           gst_pad_push_event (self->srcpad, event);
1419           event = NULL;
1420           SRC_LOCK (self);
1421           priv->send_eos = TRUE;
1422           SRC_BROADCAST (self);
1423           SRC_UNLOCK (self);
1424
1425           GST_INFO_OBJECT (self, "Releasing source pad STREAM_LOCK");
1426           GST_PAD_STREAM_UNLOCK (self->srcpad);
1427           gst_aggregator_start_srcpad_task (self);
1428         } else {
1429           GST_OBJECT_UNLOCK (self);
1430         }
1431       } else {
1432         GST_OBJECT_UNLOCK (self);
1433       }
1434
1435       /* We never forward the event */
1436       goto eat;
1437     }
1438     case GST_EVENT_EOS:
1439     {
1440       SRC_LOCK (self);
1441       PAD_LOCK (aggpad);
1442       g_assert (aggpad->priv->num_buffers == 0);
1443       aggpad->priv->eos = TRUE;
1444       PAD_UNLOCK (aggpad);
1445       SRC_BROADCAST (self);
1446       SRC_UNLOCK (self);
1447       goto eat;
1448     }
1449     case GST_EVENT_SEGMENT:
1450     {
1451       PAD_LOCK (aggpad);
1452       GST_OBJECT_LOCK (aggpad);
1453       gst_event_copy_segment (event, &aggpad->segment);
1454       /* We've got a new segment, tail_position is now meaningless
1455        * and may interfere with the time_level calculation
1456        */
1457       aggpad->priv->tail_position = GST_CLOCK_TIME_NONE;
1458       update_time_level (aggpad, FALSE);
1459       GST_OBJECT_UNLOCK (aggpad);
1460       PAD_UNLOCK (aggpad);
1461
1462       GST_OBJECT_LOCK (self);
1463       self->priv->seqnum = gst_event_get_seqnum (event);
1464       GST_OBJECT_UNLOCK (self);
1465       goto eat;
1466     }
1467     case GST_EVENT_STREAM_START:
1468     {
1469       goto eat;
1470     }
1471     case GST_EVENT_GAP:
1472     {
1473       GstClockTime pts, endpts;
1474       GstClockTime duration;
1475       GstBuffer *gapbuf;
1476
1477       gst_event_parse_gap (event, &pts, &duration);
1478
1479       if (GST_CLOCK_TIME_IS_VALID (duration))
1480         endpts = pts + duration;
1481       else
1482         endpts = GST_CLOCK_TIME_NONE;
1483
1484       GST_OBJECT_LOCK (aggpad);
1485       res = gst_segment_clip (&aggpad->segment, GST_FORMAT_TIME, pts, endpts,
1486           &pts, &endpts);
1487       GST_OBJECT_UNLOCK (aggpad);
1488
1489       if (!res) {
1490         GST_WARNING_OBJECT (self, "GAP event outside segment, dropping");
1491         goto eat;
1492       }
1493
1494       if (GST_CLOCK_TIME_IS_VALID (endpts) && GST_CLOCK_TIME_IS_VALID (pts))
1495         duration = endpts - pts;
1496       else
1497         duration = GST_CLOCK_TIME_NONE;
1498
1499       gapbuf = gst_buffer_new ();
1500       GST_BUFFER_PTS (gapbuf) = pts;
1501       GST_BUFFER_DURATION (gapbuf) = duration;
1502       GST_BUFFER_FLAG_SET (gapbuf, GST_BUFFER_FLAG_GAP);
1503       GST_BUFFER_FLAG_SET (gapbuf, GST_BUFFER_FLAG_DROPPABLE);
1504
1505       /* Remove GAP event so we can replace it with the buffer */
1506       PAD_LOCK (aggpad);
1507       if (g_queue_peek_tail (&aggpad->priv->data) == event)
1508         gst_event_unref (g_queue_pop_tail (&aggpad->priv->data));
1509       PAD_UNLOCK (aggpad);
1510
1511       if (gst_aggregator_pad_chain_internal (self, aggpad, gapbuf, FALSE) !=
1512           GST_FLOW_OK) {
1513         GST_WARNING_OBJECT (self, "Failed to chain gap buffer");
1514         res = FALSE;
1515       }
1516
1517       goto eat;
1518     }
1519     case GST_EVENT_TAG:
1520       goto eat;
1521     default:
1522     {
1523       break;
1524     }
1525   }
1526
1527   GST_DEBUG_OBJECT (pad, "Forwarding event: %" GST_PTR_FORMAT, event);
1528   return gst_pad_event_default (pad, GST_OBJECT (self), event);
1529
1530 eat:
1531   GST_DEBUG_OBJECT (pad, "Eating event: %" GST_PTR_FORMAT, event);
1532   if (event)
1533     gst_event_unref (event);
1534
1535   return res;
1536 }
1537
1538 static gboolean
1539 gst_aggregator_stop_pad (GstElement * self, GstPad * epad, gpointer user_data)
1540 {
1541   GstAggregatorPad *pad = GST_AGGREGATOR_PAD_CAST (epad);
1542   GstAggregator *agg = GST_AGGREGATOR_CAST (self);
1543
1544   gst_aggregator_pad_flush (pad, agg);
1545
1546   PAD_LOCK (pad);
1547   pad->priv->flow_return = GST_FLOW_FLUSHING;
1548   pad->priv->negotiated = FALSE;
1549   PAD_BROADCAST_EVENT (pad);
1550   PAD_UNLOCK (pad);
1551
1552   return TRUE;
1553 }
1554
1555 static gboolean
1556 gst_aggregator_stop (GstAggregator * agg)
1557 {
1558   GstAggregatorClass *klass;
1559   gboolean result;
1560
1561   gst_aggregator_reset_flow_values (agg);
1562
1563   /* Application needs to make sure no pads are added while it shuts us down */
1564   gst_element_foreach_sink_pad (GST_ELEMENT_CAST (agg),
1565       gst_aggregator_stop_pad, NULL);
1566
1567   klass = GST_AGGREGATOR_GET_CLASS (agg);
1568
1569   if (klass->stop)
1570     result = klass->stop (agg);
1571   else
1572     result = TRUE;
1573
1574   agg->priv->has_peer_latency = FALSE;
1575   agg->priv->peer_latency_live = FALSE;
1576   agg->priv->peer_latency_min = agg->priv->peer_latency_max = 0;
1577
1578   if (agg->priv->tags)
1579     gst_tag_list_unref (agg->priv->tags);
1580   agg->priv->tags = NULL;
1581
1582   gst_aggregator_set_allocation (agg, NULL, NULL, NULL, NULL);
1583
1584   return result;
1585 }
1586
1587 /* GstElement vmethods implementations */
1588 static GstStateChangeReturn
1589 gst_aggregator_change_state (GstElement * element, GstStateChange transition)
1590 {
1591   GstStateChangeReturn ret;
1592   GstAggregator *self = GST_AGGREGATOR (element);
1593
1594   switch (transition) {
1595     case GST_STATE_CHANGE_READY_TO_PAUSED:
1596       if (!gst_aggregator_start (self))
1597         goto error_start;
1598       break;
1599     default:
1600       break;
1601   }
1602
1603   if ((ret =
1604           GST_ELEMENT_CLASS (aggregator_parent_class)->change_state (element,
1605               transition)) == GST_STATE_CHANGE_FAILURE)
1606     goto failure;
1607
1608
1609   switch (transition) {
1610     case GST_STATE_CHANGE_PAUSED_TO_READY:
1611       if (!gst_aggregator_stop (self)) {
1612         /* What to do in this case? Error out? */
1613         GST_ERROR_OBJECT (self, "Subclass failed to stop.");
1614       }
1615       break;
1616     default:
1617       break;
1618   }
1619
1620   return ret;
1621
1622 /* ERRORS */
1623 failure:
1624   {
1625     GST_ERROR_OBJECT (element, "parent failed state change");
1626     return ret;
1627   }
1628 error_start:
1629   {
1630     GST_ERROR_OBJECT (element, "Subclass failed to start");
1631     return GST_STATE_CHANGE_FAILURE;
1632   }
1633 }
1634
1635 static void
1636 gst_aggregator_release_pad (GstElement * element, GstPad * pad)
1637 {
1638   GstAggregator *self = GST_AGGREGATOR (element);
1639   GstAggregatorPad *aggpad = GST_AGGREGATOR_PAD (pad);
1640
1641   GST_INFO_OBJECT (pad, "Removing pad");
1642
1643   SRC_LOCK (self);
1644   gst_aggregator_pad_set_flushing (aggpad, GST_FLOW_FLUSHING, TRUE);
1645   gst_element_remove_pad (element, pad);
1646
1647   self->priv->has_peer_latency = FALSE;
1648   SRC_BROADCAST (self);
1649   SRC_UNLOCK (self);
1650 }
1651
1652 static GstAggregatorPad *
1653 gst_aggregator_default_create_new_pad (GstAggregator * self,
1654     GstPadTemplate * templ, const gchar * req_name, const GstCaps * caps)
1655 {
1656   GstAggregatorPad *agg_pad;
1657   GstAggregatorPrivate *priv = self->priv;
1658   gint serial = 0;
1659   gchar *name = NULL;
1660   GType pad_type =
1661       GST_PAD_TEMPLATE_GTYPE (templ) ==
1662       G_TYPE_NONE ? GST_TYPE_AGGREGATOR_PAD : GST_PAD_TEMPLATE_GTYPE (templ);
1663
1664   if (templ->direction != GST_PAD_SINK)
1665     goto not_sink;
1666
1667   if (templ->presence != GST_PAD_REQUEST)
1668     goto not_request;
1669
1670   GST_OBJECT_LOCK (self);
1671   if (req_name == NULL || strlen (req_name) < 6
1672       || !g_str_has_prefix (req_name, "sink_")) {
1673     /* no name given when requesting the pad, use next available int */
1674     serial = ++priv->max_padserial;
1675   } else {
1676     /* parse serial number from requested padname */
1677     serial = g_ascii_strtoull (&req_name[5], NULL, 10);
1678     if (serial > priv->max_padserial)
1679       priv->max_padserial = serial;
1680   }
1681
1682   name = g_strdup_printf ("sink_%u", serial);
1683   agg_pad = g_object_new (pad_type,
1684       "name", name, "direction", GST_PAD_SINK, "template", templ, NULL);
1685   g_free (name);
1686
1687   GST_OBJECT_UNLOCK (self);
1688
1689   return agg_pad;
1690
1691   /* errors */
1692 not_sink:
1693   {
1694     GST_WARNING_OBJECT (self, "request new pad that is not a SINK pad");
1695     return NULL;
1696   }
1697 not_request:
1698   {
1699     GST_WARNING_OBJECT (self, "request new pad that is not a REQUEST pad");
1700     return NULL;
1701   }
1702 }
1703
1704 static GstPad *
1705 gst_aggregator_request_new_pad (GstElement * element,
1706     GstPadTemplate * templ, const gchar * req_name, const GstCaps * caps)
1707 {
1708   GstAggregator *self;
1709   GstAggregatorPad *agg_pad;
1710   GstAggregatorClass *klass = GST_AGGREGATOR_GET_CLASS (element);
1711   GstAggregatorPrivate *priv = GST_AGGREGATOR (element)->priv;
1712
1713   self = GST_AGGREGATOR (element);
1714
1715   agg_pad = klass->create_new_pad (self, templ, req_name, caps);
1716   if (!agg_pad) {
1717     GST_ERROR_OBJECT (element, "Couldn't create new pad");
1718     return NULL;
1719   }
1720
1721   GST_DEBUG_OBJECT (element, "Adding pad %s", GST_PAD_NAME (agg_pad));
1722
1723   if (priv->running)
1724     gst_pad_set_active (GST_PAD (agg_pad), TRUE);
1725
1726   /* add the pad to the element */
1727   gst_element_add_pad (element, GST_PAD (agg_pad));
1728
1729   return GST_PAD (agg_pad);
1730 }
1731
1732 /* Must be called with SRC_LOCK held */
1733
1734 static gboolean
1735 gst_aggregator_query_latency_unlocked (GstAggregator * self, GstQuery * query)
1736 {
1737   gboolean query_ret, live;
1738   GstClockTime our_latency, min, max;
1739
1740   query_ret = gst_pad_query_default (self->srcpad, GST_OBJECT (self), query);
1741
1742   if (!query_ret) {
1743     GST_WARNING_OBJECT (self, "Latency query failed");
1744     return FALSE;
1745   }
1746
1747   gst_query_parse_latency (query, &live, &min, &max);
1748
1749   if (G_UNLIKELY (!GST_CLOCK_TIME_IS_VALID (min))) {
1750     GST_ERROR_OBJECT (self, "Invalid minimum latency %" GST_TIME_FORMAT
1751         ". Please file a bug at " PACKAGE_BUGREPORT ".", GST_TIME_ARGS (min));
1752     return FALSE;
1753   }
1754
1755   if (self->priv->upstream_latency_min > min) {
1756     GstClockTimeDiff diff =
1757         GST_CLOCK_DIFF (min, self->priv->upstream_latency_min);
1758
1759     min += diff;
1760     if (GST_CLOCK_TIME_IS_VALID (max)) {
1761       max += diff;
1762     }
1763   }
1764
1765   if (min > max && GST_CLOCK_TIME_IS_VALID (max)) {
1766     GST_ELEMENT_WARNING (self, CORE, CLOCK, (NULL),
1767         ("Impossible to configure latency: max %" GST_TIME_FORMAT " < min %"
1768             GST_TIME_FORMAT ". Add queues or other buffering elements.",
1769             GST_TIME_ARGS (max), GST_TIME_ARGS (min)));
1770     return FALSE;
1771   }
1772
1773   our_latency = self->priv->latency;
1774
1775   self->priv->peer_latency_live = live;
1776   self->priv->peer_latency_min = min;
1777   self->priv->peer_latency_max = max;
1778   self->priv->has_peer_latency = TRUE;
1779
1780   /* add our own */
1781   min += our_latency;
1782   min += self->priv->sub_latency_min;
1783   if (GST_CLOCK_TIME_IS_VALID (self->priv->sub_latency_max)
1784       && GST_CLOCK_TIME_IS_VALID (max))
1785     max += self->priv->sub_latency_max + our_latency;
1786   else
1787     max = GST_CLOCK_TIME_NONE;
1788
1789   SRC_BROADCAST (self);
1790
1791   GST_DEBUG_OBJECT (self, "configured latency live:%s min:%" G_GINT64_FORMAT
1792       " max:%" G_GINT64_FORMAT, live ? "true" : "false", min, max);
1793
1794   gst_query_set_latency (query, live, min, max);
1795
1796   return query_ret;
1797 }
1798
1799 /*
1800  * MUST be called with the src_lock held.
1801  *
1802  * See  gst_aggregator_get_latency() for doc
1803  */
1804 static GstClockTime
1805 gst_aggregator_get_latency_unlocked (GstAggregator * self)
1806 {
1807   GstClockTime latency;
1808
1809   g_return_val_if_fail (GST_IS_AGGREGATOR (self), 0);
1810
1811   if (!self->priv->has_peer_latency) {
1812     GstQuery *query = gst_query_new_latency ();
1813     gboolean ret;
1814
1815     ret = gst_aggregator_query_latency_unlocked (self, query);
1816     gst_query_unref (query);
1817     if (!ret)
1818       return GST_CLOCK_TIME_NONE;
1819   }
1820
1821   if (!self->priv->has_peer_latency || !self->priv->peer_latency_live)
1822     return GST_CLOCK_TIME_NONE;
1823
1824   /* latency_min is never GST_CLOCK_TIME_NONE by construction */
1825   latency = self->priv->peer_latency_min;
1826
1827   /* add our own */
1828   latency += self->priv->latency;
1829   latency += self->priv->sub_latency_min;
1830
1831   return latency;
1832 }
1833
1834 /**
1835  * gst_aggregator_get_latency:
1836  * @self: a #GstAggregator
1837  *
1838  * Retrieves the latency values reported by @self in response to the latency
1839  * query, or %GST_CLOCK_TIME_NONE if there is not live source connected and the element
1840  * will not wait for the clock.
1841  *
1842  * Typically only called by subclasses.
1843  *
1844  * Returns: The latency or %GST_CLOCK_TIME_NONE if the element does not sync
1845  */
1846 GstClockTime
1847 gst_aggregator_get_latency (GstAggregator * self)
1848 {
1849   GstClockTime ret;
1850
1851   SRC_LOCK (self);
1852   ret = gst_aggregator_get_latency_unlocked (self);
1853   SRC_UNLOCK (self);
1854
1855   return ret;
1856 }
1857
1858 static gboolean
1859 gst_aggregator_send_event (GstElement * element, GstEvent * event)
1860 {
1861   GstAggregator *self = GST_AGGREGATOR (element);
1862
1863   GST_STATE_LOCK (element);
1864   if (GST_EVENT_TYPE (event) == GST_EVENT_SEEK &&
1865       GST_STATE (element) < GST_STATE_PAUSED) {
1866     gdouble rate;
1867     GstFormat fmt;
1868     GstSeekFlags flags;
1869     GstSeekType start_type, stop_type;
1870     gint64 start, stop;
1871
1872     gst_event_parse_seek (event, &rate, &fmt, &flags, &start_type,
1873         &start, &stop_type, &stop);
1874
1875     GST_OBJECT_LOCK (self);
1876     gst_segment_do_seek (&GST_AGGREGATOR_PAD (self->srcpad)->segment, rate, fmt,
1877         flags, start_type, start, stop_type, stop, NULL);
1878     self->priv->seqnum = gst_event_get_seqnum (event);
1879     self->priv->first_buffer = FALSE;
1880     GST_OBJECT_UNLOCK (self);
1881
1882     GST_DEBUG_OBJECT (element, "Storing segment %" GST_PTR_FORMAT, event);
1883   }
1884   GST_STATE_UNLOCK (element);
1885
1886
1887   return GST_ELEMENT_CLASS (aggregator_parent_class)->send_event (element,
1888       event);
1889 }
1890
1891 static gboolean
1892 gst_aggregator_default_src_query (GstAggregator * self, GstQuery * query)
1893 {
1894   gboolean res = TRUE;
1895
1896   switch (GST_QUERY_TYPE (query)) {
1897     case GST_QUERY_SEEKING:
1898     {
1899       GstFormat format;
1900
1901       /* don't pass it along as some (file)sink might claim it does
1902        * whereas with a collectpads in between that will not likely work */
1903       gst_query_parse_seeking (query, &format, NULL, NULL, NULL);
1904       gst_query_set_seeking (query, format, FALSE, 0, -1);
1905       res = TRUE;
1906
1907       break;
1908     }
1909     case GST_QUERY_LATENCY:
1910       SRC_LOCK (self);
1911       res = gst_aggregator_query_latency_unlocked (self, query);
1912       SRC_UNLOCK (self);
1913       break;
1914     default:
1915       return gst_pad_query_default (self->srcpad, GST_OBJECT (self), query);
1916   }
1917
1918   return res;
1919 }
1920
1921 static gboolean
1922 gst_aggregator_event_forward_func (GstPad * pad, gpointer user_data)
1923 {
1924   EventData *evdata = user_data;
1925   gboolean ret = TRUE;
1926   GstPad *peer = gst_pad_get_peer (pad);
1927   GstAggregatorPad *aggpad = GST_AGGREGATOR_PAD (pad);
1928
1929   if (peer) {
1930     if (evdata->only_to_active_pads && aggpad->priv->first_buffer) {
1931       GST_DEBUG_OBJECT (pad, "not sending event to inactive pad");
1932       ret = TRUE;
1933     } else {
1934       ret = gst_pad_send_event (peer, gst_event_ref (evdata->event));
1935       GST_DEBUG_OBJECT (pad, "return of event push is %d", ret);
1936     }
1937   }
1938
1939   if (ret == FALSE) {
1940     if (GST_EVENT_TYPE (evdata->event) == GST_EVENT_SEEK) {
1941       GstQuery *seeking = gst_query_new_seeking (GST_FORMAT_TIME);
1942
1943       GST_DEBUG_OBJECT (pad, "Event %" GST_PTR_FORMAT " failed", evdata->event);
1944
1945       if (gst_pad_query (peer, seeking)) {
1946         gboolean seekable;
1947
1948         gst_query_parse_seeking (seeking, NULL, &seekable, NULL, NULL);
1949
1950         if (seekable == FALSE) {
1951           GST_INFO_OBJECT (pad,
1952               "Source not seekable, We failed but it does not matter!");
1953
1954           ret = TRUE;
1955         }
1956       } else {
1957         GST_ERROR_OBJECT (pad, "Query seeking FAILED");
1958       }
1959
1960       gst_query_unref (seeking);
1961     }
1962
1963     if (evdata->flush) {
1964       PAD_LOCK (aggpad);
1965       aggpad->priv->pending_flush_start = FALSE;
1966       aggpad->priv->pending_flush_stop = FALSE;
1967       PAD_UNLOCK (aggpad);
1968     }
1969   } else {
1970     evdata->one_actually_seeked = TRUE;
1971   }
1972
1973   evdata->result &= ret;
1974
1975   if (peer)
1976     gst_object_unref (peer);
1977
1978   /* Always send to all pads */
1979   return FALSE;
1980 }
1981
1982 static void
1983 gst_aggregator_forward_event_to_all_sinkpads (GstAggregator * self,
1984     EventData * evdata)
1985 {
1986   evdata->result = TRUE;
1987   evdata->one_actually_seeked = FALSE;
1988
1989   /* We first need to set all pads as flushing in a first pass
1990    * as flush_start flush_stop is sometimes sent synchronously
1991    * while we send the seek event */
1992   if (evdata->flush) {
1993     GList *l;
1994
1995     GST_OBJECT_LOCK (self);
1996     for (l = GST_ELEMENT_CAST (self)->sinkpads; l != NULL; l = l->next) {
1997       GstAggregatorPad *pad = l->data;
1998
1999       PAD_LOCK (pad);
2000       pad->priv->pending_flush_start = TRUE;
2001       pad->priv->pending_flush_stop = FALSE;
2002       PAD_UNLOCK (pad);
2003     }
2004     GST_OBJECT_UNLOCK (self);
2005   }
2006
2007   gst_pad_forward (self->srcpad, gst_aggregator_event_forward_func, evdata);
2008
2009   gst_event_unref (evdata->event);
2010 }
2011
2012 static gboolean
2013 gst_aggregator_do_seek (GstAggregator * self, GstEvent * event)
2014 {
2015   gdouble rate;
2016   GstFormat fmt;
2017   GstSeekFlags flags;
2018   GstSeekType start_type, stop_type;
2019   gint64 start, stop;
2020   gboolean flush;
2021   EventData evdata = { 0, };
2022   GstAggregatorPrivate *priv = self->priv;
2023
2024   gst_event_parse_seek (event, &rate, &fmt, &flags, &start_type,
2025       &start, &stop_type, &stop);
2026
2027   GST_INFO_OBJECT (self, "starting SEEK");
2028
2029   flush = flags & GST_SEEK_FLAG_FLUSH;
2030
2031   GST_OBJECT_LOCK (self);
2032   if (flush) {
2033     priv->pending_flush_start = TRUE;
2034     priv->flush_seeking = TRUE;
2035   }
2036
2037   gst_segment_do_seek (&GST_AGGREGATOR_PAD (self->srcpad)->segment, rate, fmt,
2038       flags, start_type, start, stop_type, stop, NULL);
2039
2040   /* Seeking sets a position */
2041   self->priv->first_buffer = FALSE;
2042   GST_OBJECT_UNLOCK (self);
2043
2044   /* forward the seek upstream */
2045   evdata.event = event;
2046   evdata.flush = flush;
2047   evdata.only_to_active_pads = FALSE;
2048   gst_aggregator_forward_event_to_all_sinkpads (self, &evdata);
2049   event = NULL;
2050
2051   if (!evdata.result || !evdata.one_actually_seeked) {
2052     GST_OBJECT_LOCK (self);
2053     priv->flush_seeking = FALSE;
2054     priv->pending_flush_start = FALSE;
2055     GST_OBJECT_UNLOCK (self);
2056   }
2057
2058   GST_INFO_OBJECT (self, "seek done, result: %d", evdata.result);
2059
2060   return evdata.result;
2061 }
2062
2063 static gboolean
2064 gst_aggregator_default_src_event (GstAggregator * self, GstEvent * event)
2065 {
2066   EventData evdata = { 0, };
2067
2068   switch (GST_EVENT_TYPE (event)) {
2069     case GST_EVENT_SEEK:
2070       /* _do_seek() unrefs the event. */
2071       return gst_aggregator_do_seek (self, event);
2072     case GST_EVENT_NAVIGATION:
2073       /* navigation is rather pointless. */
2074       gst_event_unref (event);
2075       return FALSE;
2076     default:
2077       break;
2078   }
2079
2080   /* Don't forward QOS events to pads that had no active buffer yet. Otherwise
2081    * they will receive a QOS event that has earliest_time=0 (because we can't
2082    * have negative timestamps), and consider their buffer as too late */
2083   evdata.event = event;
2084   evdata.flush = FALSE;
2085   evdata.only_to_active_pads = GST_EVENT_TYPE (event) == GST_EVENT_QOS;
2086   gst_aggregator_forward_event_to_all_sinkpads (self, &evdata);
2087   return evdata.result;
2088 }
2089
2090 static gboolean
2091 gst_aggregator_src_pad_event_func (GstPad * pad, GstObject * parent,
2092     GstEvent * event)
2093 {
2094   GstAggregatorClass *klass = GST_AGGREGATOR_GET_CLASS (parent);
2095
2096   return klass->src_event (GST_AGGREGATOR (parent), event);
2097 }
2098
2099 static gboolean
2100 gst_aggregator_src_pad_query_func (GstPad * pad, GstObject * parent,
2101     GstQuery * query)
2102 {
2103   GstAggregatorClass *klass = GST_AGGREGATOR_GET_CLASS (parent);
2104
2105   return klass->src_query (GST_AGGREGATOR (parent), query);
2106 }
2107
2108 static gboolean
2109 gst_aggregator_src_pad_activate_mode_func (GstPad * pad,
2110     GstObject * parent, GstPadMode mode, gboolean active)
2111 {
2112   GstAggregator *self = GST_AGGREGATOR (parent);
2113   GstAggregatorClass *klass = GST_AGGREGATOR_GET_CLASS (parent);
2114
2115   if (klass->src_activate) {
2116     if (klass->src_activate (self, mode, active) == FALSE) {
2117       return FALSE;
2118     }
2119   }
2120
2121   if (active == TRUE) {
2122     switch (mode) {
2123       case GST_PAD_MODE_PUSH:
2124       {
2125         GST_INFO_OBJECT (pad, "Activating pad!");
2126         gst_aggregator_start_srcpad_task (self);
2127         return TRUE;
2128       }
2129       default:
2130       {
2131         GST_ERROR_OBJECT (pad, "Only supported mode is PUSH");
2132         return FALSE;
2133       }
2134     }
2135   }
2136
2137   /* deactivating */
2138   GST_INFO_OBJECT (self, "Deactivating srcpad");
2139   gst_aggregator_stop_srcpad_task (self, FALSE);
2140
2141   return TRUE;
2142 }
2143
2144 static gboolean
2145 gst_aggregator_default_sink_query (GstAggregator * self,
2146     GstAggregatorPad * aggpad, GstQuery * query)
2147 {
2148   GstPad *pad = GST_PAD (aggpad);
2149
2150   if (GST_QUERY_TYPE (query) == GST_QUERY_ALLOCATION) {
2151     GstQuery *decide_query = NULL;
2152     GstAggregatorClass *agg_class;
2153     gboolean ret;
2154
2155     GST_OBJECT_LOCK (self);
2156     PAD_LOCK (aggpad);
2157     if (G_UNLIKELY (!aggpad->priv->negotiated)) {
2158       GST_DEBUG_OBJECT (self,
2159           "not negotiated yet, can't answer ALLOCATION query");
2160       PAD_UNLOCK (aggpad);
2161       GST_OBJECT_UNLOCK (self);
2162
2163       return FALSE;
2164     }
2165
2166     if ((decide_query = self->priv->allocation_query))
2167       gst_query_ref (decide_query);
2168     PAD_UNLOCK (aggpad);
2169     GST_OBJECT_UNLOCK (self);
2170
2171     GST_DEBUG_OBJECT (self,
2172         "calling propose allocation with query %" GST_PTR_FORMAT, decide_query);
2173
2174     agg_class = GST_AGGREGATOR_GET_CLASS (self);
2175
2176     /* pass the query to the propose_allocation vmethod if any */
2177     if (agg_class->propose_allocation)
2178       ret = agg_class->propose_allocation (self, aggpad, decide_query, query);
2179     else
2180       ret = FALSE;
2181
2182     if (decide_query)
2183       gst_query_unref (decide_query);
2184
2185     GST_DEBUG_OBJECT (self, "ALLOCATION ret %d, %" GST_PTR_FORMAT, ret, query);
2186     return ret;
2187   }
2188
2189   return gst_pad_query_default (pad, GST_OBJECT (self), query);
2190 }
2191
2192 static void
2193 gst_aggregator_finalize (GObject * object)
2194 {
2195   GstAggregator *self = (GstAggregator *) object;
2196
2197   g_mutex_clear (&self->priv->src_lock);
2198   g_cond_clear (&self->priv->src_cond);
2199
2200   G_OBJECT_CLASS (aggregator_parent_class)->finalize (object);
2201 }
2202
2203 /*
2204  * gst_aggregator_set_latency_property:
2205  * @agg: a #GstAggregator
2206  * @latency: the new latency value (in nanoseconds).
2207  *
2208  * Sets the new latency value to @latency. This value is used to limit the
2209  * amount of time a pad waits for data to appear before considering the pad
2210  * as unresponsive.
2211  */
2212 static void
2213 gst_aggregator_set_latency_property (GstAggregator * self, GstClockTime latency)
2214 {
2215   gboolean changed;
2216
2217   g_return_if_fail (GST_IS_AGGREGATOR (self));
2218   g_return_if_fail (GST_CLOCK_TIME_IS_VALID (latency));
2219
2220   SRC_LOCK (self);
2221   changed = (self->priv->latency != latency);
2222
2223   if (changed) {
2224     GList *item;
2225
2226     GST_OBJECT_LOCK (self);
2227     /* First lock all the pads */
2228     for (item = GST_ELEMENT_CAST (self)->sinkpads; item; item = item->next) {
2229       GstAggregatorPad *aggpad = GST_AGGREGATOR_PAD (item->data);
2230       PAD_LOCK (aggpad);
2231     }
2232
2233     self->priv->latency = latency;
2234
2235     SRC_BROADCAST (self);
2236
2237     /* Now wake up the pads */
2238     for (item = GST_ELEMENT_CAST (self)->sinkpads; item; item = item->next) {
2239       GstAggregatorPad *aggpad = GST_AGGREGATOR_PAD (item->data);
2240       PAD_BROADCAST_EVENT (aggpad);
2241       PAD_UNLOCK (aggpad);
2242     }
2243     GST_OBJECT_UNLOCK (self);
2244   }
2245
2246   SRC_UNLOCK (self);
2247
2248   if (changed)
2249     gst_element_post_message (GST_ELEMENT_CAST (self),
2250         gst_message_new_latency (GST_OBJECT_CAST (self)));
2251 }
2252
2253 /*
2254  * gst_aggregator_get_latency_property:
2255  * @agg: a #GstAggregator
2256  *
2257  * Gets the latency value. See gst_aggregator_set_latency for
2258  * more details.
2259  *
2260  * Returns: The time in nanoseconds to wait for data to arrive on a sink pad
2261  * before a pad is deemed unresponsive. A value of -1 means an
2262  * unlimited time.
2263  */
2264 static GstClockTime
2265 gst_aggregator_get_latency_property (GstAggregator * agg)
2266 {
2267   GstClockTime res;
2268
2269   g_return_val_if_fail (GST_IS_AGGREGATOR (agg), GST_CLOCK_TIME_NONE);
2270
2271   GST_OBJECT_LOCK (agg);
2272   res = agg->priv->latency;
2273   GST_OBJECT_UNLOCK (agg);
2274
2275   return res;
2276 }
2277
2278 static void
2279 gst_aggregator_set_property (GObject * object, guint prop_id,
2280     const GValue * value, GParamSpec * pspec)
2281 {
2282   GstAggregator *agg = GST_AGGREGATOR (object);
2283
2284   switch (prop_id) {
2285     case PROP_LATENCY:
2286       gst_aggregator_set_latency_property (agg, g_value_get_uint64 (value));
2287       break;
2288     case PROP_MIN_UPSTREAM_LATENCY:
2289       SRC_LOCK (agg);
2290       agg->priv->upstream_latency_min = g_value_get_uint64 (value);
2291       SRC_UNLOCK (agg);
2292       break;
2293     case PROP_START_TIME_SELECTION:
2294       agg->priv->start_time_selection = g_value_get_enum (value);
2295       break;
2296     case PROP_START_TIME:
2297       agg->priv->start_time = g_value_get_uint64 (value);
2298       break;
2299     default:
2300       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
2301       break;
2302   }
2303 }
2304
2305 static void
2306 gst_aggregator_get_property (GObject * object, guint prop_id,
2307     GValue * value, GParamSpec * pspec)
2308 {
2309   GstAggregator *agg = GST_AGGREGATOR (object);
2310
2311   switch (prop_id) {
2312     case PROP_LATENCY:
2313       g_value_set_uint64 (value, gst_aggregator_get_latency_property (agg));
2314       break;
2315     case PROP_MIN_UPSTREAM_LATENCY:
2316       SRC_LOCK (agg);
2317       g_value_set_uint64 (value, agg->priv->upstream_latency_min);
2318       SRC_UNLOCK (agg);
2319       break;
2320     case PROP_START_TIME_SELECTION:
2321       g_value_set_enum (value, agg->priv->start_time_selection);
2322       break;
2323     case PROP_START_TIME:
2324       g_value_set_uint64 (value, agg->priv->start_time);
2325       break;
2326     default:
2327       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
2328       break;
2329   }
2330 }
2331
2332 /* GObject vmethods implementations */
2333 static void
2334 gst_aggregator_class_init (GstAggregatorClass * klass)
2335 {
2336   GObjectClass *gobject_class = (GObjectClass *) klass;
2337   GstElementClass *gstelement_class = (GstElementClass *) klass;
2338
2339   aggregator_parent_class = g_type_class_peek_parent (klass);
2340
2341   GST_DEBUG_CATEGORY_INIT (aggregator_debug, "aggregator",
2342       GST_DEBUG_FG_MAGENTA, "GstAggregator");
2343
2344   if (aggregator_private_offset != 0)
2345     g_type_class_adjust_private_offset (klass, &aggregator_private_offset);
2346
2347   klass->finish_buffer = gst_aggregator_default_finish_buffer;
2348
2349   klass->sink_event = gst_aggregator_default_sink_event;
2350   klass->sink_query = gst_aggregator_default_sink_query;
2351
2352   klass->src_event = gst_aggregator_default_src_event;
2353   klass->src_query = gst_aggregator_default_src_query;
2354
2355   klass->create_new_pad = gst_aggregator_default_create_new_pad;
2356   klass->update_src_caps = gst_aggregator_default_update_src_caps;
2357   klass->fixate_src_caps = gst_aggregator_default_fixate_src_caps;
2358   klass->negotiated_src_caps = gst_aggregator_default_negotiated_src_caps;
2359
2360   gstelement_class->request_new_pad =
2361       GST_DEBUG_FUNCPTR (gst_aggregator_request_new_pad);
2362   gstelement_class->send_event = GST_DEBUG_FUNCPTR (gst_aggregator_send_event);
2363   gstelement_class->release_pad =
2364       GST_DEBUG_FUNCPTR (gst_aggregator_release_pad);
2365   gstelement_class->change_state =
2366       GST_DEBUG_FUNCPTR (gst_aggregator_change_state);
2367
2368   gobject_class->set_property = gst_aggregator_set_property;
2369   gobject_class->get_property = gst_aggregator_get_property;
2370   gobject_class->finalize = gst_aggregator_finalize;
2371
2372   g_object_class_install_property (gobject_class, PROP_LATENCY,
2373       g_param_spec_uint64 ("latency", "Buffer latency",
2374           "Additional latency in live mode to allow upstream "
2375           "to take longer to produce buffers for the current "
2376           "position (in nanoseconds)", 0, G_MAXUINT64,
2377           DEFAULT_LATENCY, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
2378
2379   /**
2380    * GstAggregator:min-upstream-latency:
2381    *
2382    * Force minimum upstream latency (in nanoseconds). When sources with a
2383    * higher latency are expected to be plugged in dynamically after the
2384    * aggregator has started playing, this allows overriding the minimum
2385    * latency reported by the initial source(s). This is only taken into
2386    * account when larger than the actually reported minimum latency.
2387    *
2388    * Since: 1.16
2389    */
2390   g_object_class_install_property (gobject_class, PROP_MIN_UPSTREAM_LATENCY,
2391       g_param_spec_uint64 ("min-upstream-latency", "Buffer latency",
2392           "When sources with a higher latency are expected to be plugged "
2393           "in dynamically after the aggregator has started playing, "
2394           "this allows overriding the minimum latency reported by the "
2395           "initial source(s). This is only taken into account when larger "
2396           "than the actually reported minimum latency. (nanoseconds)",
2397           0, G_MAXUINT64,
2398           DEFAULT_LATENCY, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
2399
2400   g_object_class_install_property (gobject_class, PROP_START_TIME_SELECTION,
2401       g_param_spec_enum ("start-time-selection", "Start Time Selection",
2402           "Decides which start time is output",
2403           gst_aggregator_start_time_selection_get_type (),
2404           DEFAULT_START_TIME_SELECTION,
2405           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
2406
2407   g_object_class_install_property (gobject_class, PROP_START_TIME,
2408       g_param_spec_uint64 ("start-time", "Start Time",
2409           "Start time to use if start-time-selection=set", 0,
2410           G_MAXUINT64,
2411           DEFAULT_START_TIME, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
2412 }
2413
2414 static inline gpointer
2415 gst_aggregator_get_instance_private (GstAggregator * self)
2416 {
2417   return (G_STRUCT_MEMBER_P (self, aggregator_private_offset));
2418 }
2419
2420 static void
2421 gst_aggregator_init (GstAggregator * self, GstAggregatorClass * klass)
2422 {
2423   GstPadTemplate *pad_template;
2424   GstAggregatorPrivate *priv;
2425
2426   g_return_if_fail (klass->aggregate != NULL);
2427
2428   self->priv = gst_aggregator_get_instance_private (self);
2429
2430   priv = self->priv;
2431
2432   pad_template =
2433       gst_element_class_get_pad_template (GST_ELEMENT_CLASS (klass), "src");
2434   g_return_if_fail (pad_template != NULL);
2435
2436   priv->max_padserial = -1;
2437   priv->tags_changed = FALSE;
2438
2439   self->priv->peer_latency_live = FALSE;
2440   self->priv->peer_latency_min = self->priv->sub_latency_min = 0;
2441   self->priv->peer_latency_max = self->priv->sub_latency_max = 0;
2442   self->priv->has_peer_latency = FALSE;
2443
2444   self->srcpad = gst_pad_new_from_template (pad_template, "src");
2445
2446   gst_aggregator_reset_flow_values (self);
2447
2448   gst_pad_set_event_function (self->srcpad,
2449       GST_DEBUG_FUNCPTR (gst_aggregator_src_pad_event_func));
2450   gst_pad_set_query_function (self->srcpad,
2451       GST_DEBUG_FUNCPTR (gst_aggregator_src_pad_query_func));
2452   gst_pad_set_activatemode_function (self->srcpad,
2453       GST_DEBUG_FUNCPTR (gst_aggregator_src_pad_activate_mode_func));
2454
2455   gst_element_add_pad (GST_ELEMENT (self), self->srcpad);
2456
2457   self->priv->upstream_latency_min = DEFAULT_MIN_UPSTREAM_LATENCY;
2458   self->priv->latency = DEFAULT_LATENCY;
2459   self->priv->start_time_selection = DEFAULT_START_TIME_SELECTION;
2460   self->priv->start_time = DEFAULT_START_TIME;
2461
2462   g_mutex_init (&self->priv->src_lock);
2463   g_cond_init (&self->priv->src_cond);
2464 }
2465
2466 /* we can't use G_DEFINE_ABSTRACT_TYPE because we need the klass in the _init
2467  * method to get to the padtemplates */
2468 GType
2469 gst_aggregator_get_type (void)
2470 {
2471   static volatile gsize type = 0;
2472
2473   if (g_once_init_enter (&type)) {
2474     GType _type;
2475     static const GTypeInfo info = {
2476       sizeof (GstAggregatorClass),
2477       NULL,
2478       NULL,
2479       (GClassInitFunc) gst_aggregator_class_init,
2480       NULL,
2481       NULL,
2482       sizeof (GstAggregator),
2483       0,
2484       (GInstanceInitFunc) gst_aggregator_init,
2485     };
2486
2487     _type = g_type_register_static (GST_TYPE_ELEMENT,
2488         "GstAggregator", &info, G_TYPE_FLAG_ABSTRACT);
2489
2490     aggregator_private_offset =
2491         g_type_add_instance_private (_type, sizeof (GstAggregatorPrivate));
2492
2493     g_once_init_leave (&type, _type);
2494   }
2495   return type;
2496 }
2497
2498 /* Must be called with SRC lock and PAD lock held */
2499 static gboolean
2500 gst_aggregator_pad_has_space (GstAggregator * self, GstAggregatorPad * aggpad)
2501 {
2502   /* Empty queue always has space */
2503   if (aggpad->priv->num_buffers == 0 && aggpad->priv->clipped_buffer == NULL)
2504     return TRUE;
2505
2506   /* We also want at least two buffers, one is being processed and one is ready
2507    * for the next iteration when we operate in live mode. */
2508   if (self->priv->peer_latency_live && aggpad->priv->num_buffers < 2)
2509     return TRUE;
2510
2511   /* zero latency, if there is a buffer, it's full */
2512   if (self->priv->latency == 0)
2513     return FALSE;
2514
2515   /* Allow no more buffers than the latency */
2516   return (aggpad->priv->time_level <= self->priv->latency);
2517 }
2518
2519 /* Must be called with the PAD_LOCK held */
2520 static void
2521 apply_buffer (GstAggregatorPad * aggpad, GstBuffer * buffer, gboolean head)
2522 {
2523   GstClockTime timestamp;
2524
2525   if (GST_BUFFER_DTS_IS_VALID (buffer))
2526     timestamp = GST_BUFFER_DTS (buffer);
2527   else
2528     timestamp = GST_BUFFER_PTS (buffer);
2529
2530   if (timestamp == GST_CLOCK_TIME_NONE) {
2531     if (head)
2532       timestamp = aggpad->priv->head_position;
2533     else
2534       timestamp = aggpad->priv->tail_position;
2535   }
2536
2537   /* add duration */
2538   if (GST_BUFFER_DURATION_IS_VALID (buffer))
2539     timestamp += GST_BUFFER_DURATION (buffer);
2540
2541   if (head)
2542     aggpad->priv->head_position = timestamp;
2543   else
2544     aggpad->priv->tail_position = timestamp;
2545
2546   update_time_level (aggpad, head);
2547 }
2548
2549 /*
2550  * Can be called either from the sinkpad's chain function or from the srcpad's
2551  * thread in the case of a buffer synthetized from a GAP event.
2552  * Because of this second case, FLUSH_LOCK can't be used here.
2553  */
2554
2555 static GstFlowReturn
2556 gst_aggregator_pad_chain_internal (GstAggregator * self,
2557     GstAggregatorPad * aggpad, GstBuffer * buffer, gboolean head)
2558 {
2559   GstFlowReturn flow_return;
2560   GstClockTime buf_pts;
2561
2562   PAD_LOCK (aggpad);
2563   flow_return = aggpad->priv->flow_return;
2564   if (flow_return != GST_FLOW_OK)
2565     goto flushing;
2566
2567   PAD_UNLOCK (aggpad);
2568
2569   buf_pts = GST_BUFFER_PTS (buffer);
2570
2571   for (;;) {
2572     SRC_LOCK (self);
2573     GST_OBJECT_LOCK (self);
2574     PAD_LOCK (aggpad);
2575
2576     if (aggpad->priv->first_buffer) {
2577       self->priv->has_peer_latency = FALSE;
2578       aggpad->priv->first_buffer = FALSE;
2579     }
2580
2581     if ((gst_aggregator_pad_has_space (self, aggpad) || !head)
2582         && aggpad->priv->flow_return == GST_FLOW_OK) {
2583       if (head)
2584         g_queue_push_head (&aggpad->priv->data, buffer);
2585       else
2586         g_queue_push_tail (&aggpad->priv->data, buffer);
2587       apply_buffer (aggpad, buffer, head);
2588       aggpad->priv->num_buffers++;
2589       buffer = NULL;
2590       SRC_BROADCAST (self);
2591       break;
2592     }
2593
2594     flow_return = aggpad->priv->flow_return;
2595     if (flow_return != GST_FLOW_OK) {
2596       GST_OBJECT_UNLOCK (self);
2597       SRC_UNLOCK (self);
2598       goto flushing;
2599     }
2600     GST_DEBUG_OBJECT (aggpad, "Waiting for buffer to be consumed");
2601     GST_OBJECT_UNLOCK (self);
2602     SRC_UNLOCK (self);
2603     PAD_WAIT_EVENT (aggpad);
2604
2605     PAD_UNLOCK (aggpad);
2606   }
2607
2608   if (self->priv->first_buffer) {
2609     GstClockTime start_time;
2610     GstAggregatorPad *srcpad = GST_AGGREGATOR_PAD (self->srcpad);
2611
2612     switch (self->priv->start_time_selection) {
2613       case GST_AGGREGATOR_START_TIME_SELECTION_ZERO:
2614       default:
2615         start_time = 0;
2616         break;
2617       case GST_AGGREGATOR_START_TIME_SELECTION_FIRST:
2618         GST_OBJECT_LOCK (aggpad);
2619         if (aggpad->priv->head_segment.format == GST_FORMAT_TIME) {
2620           start_time = buf_pts;
2621           if (start_time != -1) {
2622             start_time = MAX (start_time, aggpad->priv->head_segment.start);
2623             start_time =
2624                 gst_segment_to_running_time (&aggpad->priv->head_segment,
2625                 GST_FORMAT_TIME, start_time);
2626           }
2627         } else {
2628           start_time = 0;
2629           GST_WARNING_OBJECT (aggpad,
2630               "Ignoring request of selecting the first start time "
2631               "as the segment is a %s segment instead of a time segment",
2632               gst_format_get_name (aggpad->segment.format));
2633         }
2634         GST_OBJECT_UNLOCK (aggpad);
2635         break;
2636       case GST_AGGREGATOR_START_TIME_SELECTION_SET:
2637         start_time = self->priv->start_time;
2638         if (start_time == -1)
2639           start_time = 0;
2640         break;
2641     }
2642
2643     if (start_time != -1) {
2644       if (srcpad->segment.position == -1)
2645         srcpad->segment.position = start_time;
2646       else
2647         srcpad->segment.position = MIN (start_time, srcpad->segment.position);
2648
2649       GST_DEBUG_OBJECT (self, "Selecting start time %" GST_TIME_FORMAT,
2650           GST_TIME_ARGS (start_time));
2651     }
2652   }
2653
2654   PAD_UNLOCK (aggpad);
2655   GST_OBJECT_UNLOCK (self);
2656   SRC_UNLOCK (self);
2657
2658   GST_DEBUG_OBJECT (aggpad, "Done chaining");
2659
2660   return flow_return;
2661
2662 flushing:
2663   PAD_UNLOCK (aggpad);
2664
2665   GST_DEBUG_OBJECT (aggpad, "Pad is %s, dropping buffer",
2666       gst_flow_get_name (flow_return));
2667   if (buffer)
2668     gst_buffer_unref (buffer);
2669
2670   return flow_return;
2671 }
2672
2673 static GstFlowReturn
2674 gst_aggregator_pad_chain (GstPad * pad, GstObject * object, GstBuffer * buffer)
2675 {
2676   GstFlowReturn ret;
2677   GstAggregatorPad *aggpad = GST_AGGREGATOR_PAD (pad);
2678
2679   PAD_FLUSH_LOCK (aggpad);
2680
2681   ret = gst_aggregator_pad_chain_internal (GST_AGGREGATOR_CAST (object),
2682       aggpad, buffer, TRUE);
2683
2684   PAD_FLUSH_UNLOCK (aggpad);
2685
2686   return ret;
2687 }
2688
2689 static gboolean
2690 gst_aggregator_pad_query_func (GstPad * pad, GstObject * parent,
2691     GstQuery * query)
2692 {
2693   GstAggregator *self = GST_AGGREGATOR (parent);
2694   GstAggregatorPad *aggpad = GST_AGGREGATOR_PAD (pad);
2695
2696   if (GST_QUERY_IS_SERIALIZED (query)) {
2697     GstStructure *s;
2698     gboolean ret = FALSE;
2699
2700     SRC_LOCK (self);
2701     PAD_LOCK (aggpad);
2702
2703     if (aggpad->priv->flow_return != GST_FLOW_OK) {
2704       SRC_UNLOCK (self);
2705       goto flushing;
2706     }
2707
2708     g_queue_push_head (&aggpad->priv->data, query);
2709     SRC_BROADCAST (self);
2710     SRC_UNLOCK (self);
2711
2712     while (!gst_aggregator_pad_queue_is_empty (aggpad)
2713         && aggpad->priv->flow_return == GST_FLOW_OK) {
2714       GST_DEBUG_OBJECT (aggpad, "Waiting for buffer to be consumed");
2715       PAD_WAIT_EVENT (aggpad);
2716     }
2717
2718     s = gst_query_writable_structure (query);
2719     if (gst_structure_get_boolean (s, "gst-aggregator-retval", &ret))
2720       gst_structure_remove_field (s, "gst-aggregator-retval");
2721     else
2722       g_queue_remove (&aggpad->priv->data, query);
2723
2724     if (aggpad->priv->flow_return != GST_FLOW_OK)
2725       goto flushing;
2726
2727     PAD_UNLOCK (aggpad);
2728
2729     return ret;
2730   } else {
2731     GstAggregatorClass *klass = GST_AGGREGATOR_GET_CLASS (parent);
2732
2733     return klass->sink_query (self, aggpad, query);
2734   }
2735
2736 flushing:
2737   GST_DEBUG_OBJECT (aggpad, "Pad is %s, dropping query",
2738       gst_flow_get_name (aggpad->priv->flow_return));
2739   PAD_UNLOCK (aggpad);
2740
2741   return FALSE;
2742 }
2743
2744 /* Queue serialized events and let the others go through directly.
2745  * The queued events with be handled from the src-pad task in
2746  * gst_aggregator_do_events_and_queries().
2747  */
2748 static GstFlowReturn
2749 gst_aggregator_pad_event_func (GstPad * pad, GstObject * parent,
2750     GstEvent * event)
2751 {
2752   GstFlowReturn ret = GST_FLOW_OK;
2753   GstAggregator *self = GST_AGGREGATOR (parent);
2754   GstAggregatorPad *aggpad = GST_AGGREGATOR_PAD (pad);
2755
2756   if (GST_EVENT_IS_SERIALIZED (event)
2757       && GST_EVENT_TYPE (event) != GST_EVENT_FLUSH_STOP) {
2758     SRC_LOCK (self);
2759     PAD_LOCK (aggpad);
2760
2761     if (aggpad->priv->flow_return != GST_FLOW_OK)
2762       goto flushing;
2763
2764     if (GST_EVENT_TYPE (event) == GST_EVENT_SEGMENT) {
2765       GST_OBJECT_LOCK (aggpad);
2766       gst_event_copy_segment (event, &aggpad->priv->head_segment);
2767       aggpad->priv->head_position = aggpad->priv->head_segment.position;
2768       update_time_level (aggpad, TRUE);
2769       GST_OBJECT_UNLOCK (aggpad);
2770     }
2771
2772     GST_DEBUG_OBJECT (aggpad, "Store event in queue: %" GST_PTR_FORMAT, event);
2773     g_queue_push_head (&aggpad->priv->data, event);
2774     SRC_BROADCAST (self);
2775     PAD_UNLOCK (aggpad);
2776     SRC_UNLOCK (self);
2777   } else {
2778     GstAggregatorClass *klass = GST_AGGREGATOR_GET_CLASS (parent);
2779
2780     if (!klass->sink_event (self, aggpad, event)) {
2781       /* Copied from GstPad to convert boolean to a GstFlowReturn in
2782        * the event handling func */
2783       ret = GST_FLOW_ERROR;
2784     }
2785   }
2786
2787   return ret;
2788
2789 flushing:
2790   GST_DEBUG_OBJECT (aggpad, "Pad is %s, dropping event",
2791       gst_flow_get_name (aggpad->priv->flow_return));
2792   PAD_UNLOCK (aggpad);
2793   SRC_UNLOCK (self);
2794   if (GST_EVENT_IS_STICKY (event))
2795     gst_pad_store_sticky_event (pad, event);
2796   gst_event_unref (event);
2797
2798   return aggpad->priv->flow_return;
2799 }
2800
2801 static gboolean
2802 gst_aggregator_pad_activate_mode_func (GstPad * pad,
2803     GstObject * parent, GstPadMode mode, gboolean active)
2804 {
2805   GstAggregator *self = GST_AGGREGATOR (parent);
2806   GstAggregatorPad *aggpad = GST_AGGREGATOR_PAD (pad);
2807
2808   if (active == FALSE) {
2809     SRC_LOCK (self);
2810     gst_aggregator_pad_set_flushing (aggpad, GST_FLOW_FLUSHING, TRUE);
2811     SRC_BROADCAST (self);
2812     SRC_UNLOCK (self);
2813   } else {
2814     PAD_LOCK (aggpad);
2815     aggpad->priv->flow_return = GST_FLOW_OK;
2816     PAD_BROADCAST_EVENT (aggpad);
2817     PAD_UNLOCK (aggpad);
2818   }
2819
2820   return TRUE;
2821 }
2822
2823 /***********************************
2824  * GstAggregatorPad implementation  *
2825  ************************************/
2826 G_DEFINE_TYPE_WITH_PRIVATE (GstAggregatorPad, gst_aggregator_pad, GST_TYPE_PAD);
2827
2828 #define DEFAULT_PAD_EMIT_SIGNALS FALSE
2829
2830 enum
2831 {
2832   PAD_PROP_0,
2833   PAD_PROP_EMIT_SIGNALS,
2834 };
2835
2836 enum
2837 {
2838   PAD_SIGNAL_BUFFER_CONSUMED,
2839   PAD_LAST_SIGNAL,
2840 };
2841
2842 static guint gst_aggregator_pad_signals[PAD_LAST_SIGNAL] = { 0 };
2843
2844 static void
2845 gst_aggregator_pad_constructed (GObject * object)
2846 {
2847   GstPad *pad = GST_PAD (object);
2848
2849   if (GST_PAD_IS_SINK (pad)) {
2850     gst_pad_set_chain_function (pad,
2851         GST_DEBUG_FUNCPTR (gst_aggregator_pad_chain));
2852     gst_pad_set_event_full_function_full (pad,
2853         GST_DEBUG_FUNCPTR (gst_aggregator_pad_event_func), NULL, NULL);
2854     gst_pad_set_query_function (pad,
2855         GST_DEBUG_FUNCPTR (gst_aggregator_pad_query_func));
2856     gst_pad_set_activatemode_function (pad,
2857         GST_DEBUG_FUNCPTR (gst_aggregator_pad_activate_mode_func));
2858   }
2859 }
2860
2861 static void
2862 gst_aggregator_pad_finalize (GObject * object)
2863 {
2864   GstAggregatorPad *pad = (GstAggregatorPad *) object;
2865
2866   g_cond_clear (&pad->priv->event_cond);
2867   g_mutex_clear (&pad->priv->flush_lock);
2868   g_mutex_clear (&pad->priv->lock);
2869
2870   G_OBJECT_CLASS (gst_aggregator_pad_parent_class)->finalize (object);
2871 }
2872
2873 static void
2874 gst_aggregator_pad_dispose (GObject * object)
2875 {
2876   GstAggregatorPad *pad = (GstAggregatorPad *) object;
2877
2878   gst_aggregator_pad_set_flushing (pad, GST_FLOW_FLUSHING, TRUE);
2879
2880   G_OBJECT_CLASS (gst_aggregator_pad_parent_class)->dispose (object);
2881 }
2882
2883 static void
2884 gst_aggregator_pad_set_property (GObject * object, guint prop_id,
2885     const GValue * value, GParamSpec * pspec)
2886 {
2887   GstAggregatorPad *pad = GST_AGGREGATOR_PAD (object);
2888
2889   switch (prop_id) {
2890     case PAD_PROP_EMIT_SIGNALS:
2891       pad->priv->emit_signals = g_value_get_boolean (value);
2892       break;
2893     default:
2894       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
2895       break;
2896   }
2897 }
2898
2899 static void
2900 gst_aggregator_pad_get_property (GObject * object, guint prop_id,
2901     GValue * value, GParamSpec * pspec)
2902 {
2903   GstAggregatorPad *pad = GST_AGGREGATOR_PAD (object);
2904
2905   switch (prop_id) {
2906     case PAD_PROP_EMIT_SIGNALS:
2907       g_value_set_boolean (value, pad->priv->emit_signals);
2908       break;
2909     default:
2910       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
2911       break;
2912   }
2913 }
2914
2915 static void
2916 gst_aggregator_pad_class_init (GstAggregatorPadClass * klass)
2917 {
2918   GObjectClass *gobject_class = (GObjectClass *) klass;
2919
2920   gobject_class->constructed = gst_aggregator_pad_constructed;
2921   gobject_class->finalize = gst_aggregator_pad_finalize;
2922   gobject_class->dispose = gst_aggregator_pad_dispose;
2923   gobject_class->set_property = gst_aggregator_pad_set_property;
2924   gobject_class->get_property = gst_aggregator_pad_get_property;
2925
2926   /**
2927    * GstAggregatorPad:buffer-consumed:
2928    *
2929    * Signals that a buffer was consumed. As aggregator pads store buffers
2930    * in an internal queue, there is no direct match between input and output
2931    * buffers at any given time. This signal can be useful to forward metas
2932    * such as #GstVideoTimeCodeMeta or #GstVideoCaptionMeta at the right time.
2933    *
2934    * Since: 1.16
2935    */
2936   gst_aggregator_pad_signals[PAD_SIGNAL_BUFFER_CONSUMED] =
2937       g_signal_new ("buffer-consumed", G_TYPE_FROM_CLASS (klass),
2938       G_SIGNAL_RUN_FIRST, 0, NULL, NULL, g_cclosure_marshal_generic,
2939       G_TYPE_NONE, 1, GST_TYPE_BUFFER);
2940
2941   /**
2942    * GstAggregatorPad:emit-signals:
2943    *
2944    * Enables the emission of signals such as #GstAggregatorPad::buffer-consumed
2945    *
2946    * Since: 1.16
2947    */
2948   g_object_class_install_property (gobject_class, PAD_PROP_EMIT_SIGNALS,
2949       g_param_spec_boolean ("emit-signals", "Emit signals",
2950           "Send signals to signal data consumption", DEFAULT_PAD_EMIT_SIGNALS,
2951           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
2952 }
2953
2954 static void
2955 gst_aggregator_pad_init (GstAggregatorPad * pad)
2956 {
2957   pad->priv = gst_aggregator_pad_get_instance_private (pad);
2958
2959   g_queue_init (&pad->priv->data);
2960   g_cond_init (&pad->priv->event_cond);
2961
2962   g_mutex_init (&pad->priv->flush_lock);
2963   g_mutex_init (&pad->priv->lock);
2964
2965   gst_aggregator_pad_reset_unlocked (pad);
2966   pad->priv->negotiated = FALSE;
2967   pad->priv->emit_signals = DEFAULT_PAD_EMIT_SIGNALS;
2968 }
2969
2970 /* Must be called with the PAD_LOCK held */
2971 static void
2972 gst_aggregator_pad_buffer_consumed (GstAggregatorPad * pad, GstBuffer * buffer)
2973 {
2974   pad->priv->num_buffers--;
2975   GST_TRACE_OBJECT (pad, "Consuming buffer %" GST_PTR_FORMAT, buffer);
2976   if (buffer && pad->priv->emit_signals) {
2977     g_signal_emit (pad, gst_aggregator_pad_signals[PAD_SIGNAL_BUFFER_CONSUMED],
2978         0, buffer);
2979   }
2980   PAD_BROADCAST_EVENT (pad);
2981 }
2982
2983 /* Must be called with the PAD_LOCK held */
2984 static void
2985 gst_aggregator_pad_clip_buffer_unlocked (GstAggregatorPad * pad)
2986 {
2987   GstAggregator *self = NULL;
2988   GstAggregatorClass *aggclass = NULL;
2989   GstBuffer *buffer = NULL;
2990
2991   while (pad->priv->clipped_buffer == NULL &&
2992       GST_IS_BUFFER (g_queue_peek_tail (&pad->priv->data))) {
2993     buffer = g_queue_pop_tail (&pad->priv->data);
2994
2995     apply_buffer (pad, buffer, FALSE);
2996
2997     /* We only take the parent here so that it's not taken if the buffer is
2998      * already clipped or if the queue is empty.
2999      */
3000     if (self == NULL) {
3001       self = GST_AGGREGATOR (gst_pad_get_parent_element (GST_PAD (pad)));
3002       if (self == NULL) {
3003         gst_buffer_unref (buffer);
3004         return;
3005       }
3006
3007       aggclass = GST_AGGREGATOR_GET_CLASS (self);
3008     }
3009
3010     if (aggclass->clip) {
3011       GST_TRACE_OBJECT (pad, "Clipping: %" GST_PTR_FORMAT, buffer);
3012
3013       buffer = aggclass->clip (self, pad, buffer);
3014
3015       if (buffer == NULL) {
3016         gst_aggregator_pad_buffer_consumed (pad, buffer);
3017         GST_TRACE_OBJECT (pad, "Clipping consumed the buffer");
3018       }
3019     }
3020
3021     pad->priv->clipped_buffer = buffer;
3022   }
3023
3024   if (self)
3025     gst_object_unref (self);
3026 }
3027
3028 /**
3029  * gst_aggregator_pad_pop_buffer:
3030  * @pad: the pad to get buffer from
3031  *
3032  * Steal the ref to the buffer currently queued in @pad.
3033  *
3034  * Returns: (transfer full): The buffer in @pad or NULL if no buffer was
3035  *   queued. You should unref the buffer after usage.
3036  */
3037 GstBuffer *
3038 gst_aggregator_pad_pop_buffer (GstAggregatorPad * pad)
3039 {
3040   GstBuffer *buffer;
3041
3042   PAD_LOCK (pad);
3043
3044   if (pad->priv->flow_return != GST_FLOW_OK) {
3045     PAD_UNLOCK (pad);
3046     return NULL;
3047   }
3048
3049   gst_aggregator_pad_clip_buffer_unlocked (pad);
3050
3051   buffer = pad->priv->clipped_buffer;
3052
3053   if (buffer) {
3054     pad->priv->clipped_buffer = NULL;
3055     gst_aggregator_pad_buffer_consumed (pad, buffer);
3056     GST_DEBUG_OBJECT (pad, "Consumed: %" GST_PTR_FORMAT, buffer);
3057   }
3058
3059   PAD_UNLOCK (pad);
3060
3061   return buffer;
3062 }
3063
3064 /**
3065  * gst_aggregator_pad_drop_buffer:
3066  * @pad: the pad where to drop any pending buffer
3067  *
3068  * Drop the buffer currently queued in @pad.
3069  *
3070  * Returns: TRUE if there was a buffer queued in @pad, or FALSE if not.
3071  */
3072 gboolean
3073 gst_aggregator_pad_drop_buffer (GstAggregatorPad * pad)
3074 {
3075   GstBuffer *buf;
3076
3077   buf = gst_aggregator_pad_pop_buffer (pad);
3078
3079   if (buf == NULL)
3080     return FALSE;
3081
3082   gst_buffer_unref (buf);
3083   return TRUE;
3084 }
3085
3086 /**
3087  * gst_aggregator_pad_peek_buffer:
3088  * @pad: the pad to get buffer from
3089  *
3090  * Returns: (transfer full): A reference to the buffer in @pad or
3091  * NULL if no buffer was queued. You should unref the buffer after
3092  * usage.
3093  */
3094 GstBuffer *
3095 gst_aggregator_pad_peek_buffer (GstAggregatorPad * pad)
3096 {
3097   GstBuffer *buffer;
3098
3099   PAD_LOCK (pad);
3100
3101   if (pad->priv->flow_return != GST_FLOW_OK) {
3102     PAD_UNLOCK (pad);
3103     return NULL;
3104   }
3105
3106   gst_aggregator_pad_clip_buffer_unlocked (pad);
3107
3108   if (pad->priv->clipped_buffer) {
3109     buffer = gst_buffer_ref (pad->priv->clipped_buffer);
3110   } else {
3111     buffer = NULL;
3112   }
3113   PAD_UNLOCK (pad);
3114
3115   return buffer;
3116 }
3117
3118 /**
3119  * gst_aggregator_pad_has_buffer:
3120  * @pad: the pad to check the buffer on
3121  *
3122  * This checks if a pad has a buffer available that will be returned by
3123  * a call to gst_aggregator_pad_peek_buffer() or
3124  * gst_aggregator_pad_pop_buffer().
3125  *
3126  * Returns: %TRUE if the pad has a buffer available as the next thing.
3127  *
3128  * Since: 1.14.1
3129  */
3130 gboolean
3131 gst_aggregator_pad_has_buffer (GstAggregatorPad * pad)
3132 {
3133   gboolean has_buffer;
3134
3135   PAD_LOCK (pad);
3136   gst_aggregator_pad_clip_buffer_unlocked (pad);
3137   has_buffer = (pad->priv->clipped_buffer != NULL);
3138   PAD_UNLOCK (pad);
3139
3140   return has_buffer;
3141 }
3142
3143 /**
3144  * gst_aggregator_pad_is_eos:
3145  * @pad: an aggregator pad
3146  *
3147  * Returns: %TRUE if the pad is EOS, otherwise %FALSE.
3148  */
3149 gboolean
3150 gst_aggregator_pad_is_eos (GstAggregatorPad * pad)
3151 {
3152   gboolean is_eos;
3153
3154   PAD_LOCK (pad);
3155   is_eos = pad->priv->eos;
3156   PAD_UNLOCK (pad);
3157
3158   return is_eos;
3159 }
3160
3161 #if 0
3162 /*
3163  * gst_aggregator_merge_tags:
3164  * @self: a #GstAggregator
3165  * @tags: a #GstTagList to merge
3166  * @mode: the #GstTagMergeMode to use
3167  *
3168  * Adds tags to so-called pending tags, which will be processed
3169  * before pushing out data downstream.
3170  *
3171  * Note that this is provided for convenience, and the subclass is
3172  * not required to use this and can still do tag handling on its own.
3173  *
3174  * MT safe.
3175  */
3176 void
3177 gst_aggregator_merge_tags (GstAggregator * self,
3178     const GstTagList * tags, GstTagMergeMode mode)
3179 {
3180   GstTagList *otags;
3181
3182   g_return_if_fail (GST_IS_AGGREGATOR (self));
3183   g_return_if_fail (tags == NULL || GST_IS_TAG_LIST (tags));
3184
3185   /* FIXME Check if we can use OBJECT lock here! */
3186   GST_OBJECT_LOCK (self);
3187   if (tags)
3188     GST_DEBUG_OBJECT (self, "merging tags %" GST_PTR_FORMAT, tags);
3189   otags = self->priv->tags;
3190   self->priv->tags = gst_tag_list_merge (self->priv->tags, tags, mode);
3191   if (otags)
3192     gst_tag_list_unref (otags);
3193   self->priv->tags_changed = TRUE;
3194   GST_OBJECT_UNLOCK (self);
3195 }
3196 #endif
3197
3198 /**
3199  * gst_aggregator_set_latency:
3200  * @self: a #GstAggregator
3201  * @min_latency: minimum latency
3202  * @max_latency: maximum latency
3203  *
3204  * Lets #GstAggregator sub-classes tell the baseclass what their internal
3205  * latency is. Will also post a LATENCY message on the bus so the pipeline
3206  * can reconfigure its global latency.
3207  */
3208 void
3209 gst_aggregator_set_latency (GstAggregator * self,
3210     GstClockTime min_latency, GstClockTime max_latency)
3211 {
3212   gboolean changed = FALSE;
3213
3214   g_return_if_fail (GST_IS_AGGREGATOR (self));
3215   g_return_if_fail (GST_CLOCK_TIME_IS_VALID (min_latency));
3216   g_return_if_fail (max_latency >= min_latency);
3217
3218   SRC_LOCK (self);
3219   if (self->priv->sub_latency_min != min_latency) {
3220     self->priv->sub_latency_min = min_latency;
3221     changed = TRUE;
3222   }
3223   if (self->priv->sub_latency_max != max_latency) {
3224     self->priv->sub_latency_max = max_latency;
3225     changed = TRUE;
3226   }
3227
3228   if (changed)
3229     SRC_BROADCAST (self);
3230   SRC_UNLOCK (self);
3231
3232   if (changed) {
3233     gst_element_post_message (GST_ELEMENT_CAST (self),
3234         gst_message_new_latency (GST_OBJECT_CAST (self)));
3235   }
3236 }
3237
3238 /**
3239  * gst_aggregator_get_buffer_pool:
3240  * @self: a #GstAggregator
3241  *
3242  * Returns: (transfer full): the instance of the #GstBufferPool used
3243  * by @trans; free it after use it
3244  */
3245 GstBufferPool *
3246 gst_aggregator_get_buffer_pool (GstAggregator * self)
3247 {
3248   GstBufferPool *pool;
3249
3250   g_return_val_if_fail (GST_IS_AGGREGATOR (self), NULL);
3251
3252   GST_OBJECT_LOCK (self);
3253   pool = self->priv->pool;
3254   if (pool)
3255     gst_object_ref (pool);
3256   GST_OBJECT_UNLOCK (self);
3257
3258   return pool;
3259 }
3260
3261 /**
3262  * gst_aggregator_get_allocator:
3263  * @self: a #GstAggregator
3264  * @allocator: (out) (allow-none) (transfer full): the #GstAllocator
3265  * used
3266  * @params: (out) (allow-none) (transfer full): the
3267  * #GstAllocationParams of @allocator
3268  *
3269  * Lets #GstAggregator sub-classes get the memory @allocator
3270  * acquired by the base class and its @params.
3271  *
3272  * Unref the @allocator after use it.
3273  */
3274 void
3275 gst_aggregator_get_allocator (GstAggregator * self,
3276     GstAllocator ** allocator, GstAllocationParams * params)
3277 {
3278   g_return_if_fail (GST_IS_AGGREGATOR (self));
3279
3280   if (allocator)
3281     *allocator = self->priv->allocator ?
3282         gst_object_ref (self->priv->allocator) : NULL;
3283
3284   if (params)
3285     *params = self->priv->allocation_params;
3286 }
3287
3288 /**
3289  * gst_aggregator_simple_get_next_time:
3290  * @self: A #GstAggregator
3291  *
3292  * This is a simple #GstAggregator::get_next_time implementation that
3293  * just looks at the #GstSegment on the srcpad of the aggregator and bases
3294  * the next time on the running time there.
3295  *
3296  * This is the desired behaviour in most cases where you have a live source
3297  * and you have a dead line based aggregator subclass.
3298  *
3299  * Returns: The running time based on the position
3300  *
3301  * Since: 1.16
3302  */
3303 GstClockTime
3304 gst_aggregator_simple_get_next_time (GstAggregator * self)
3305 {
3306   GstClockTime next_time;
3307   GstAggregatorPad *srcpad = GST_AGGREGATOR_PAD (self->srcpad);
3308   GstSegment *segment = &srcpad->segment;
3309
3310   GST_OBJECT_LOCK (self);
3311   if (segment->position == -1 || segment->position < segment->start)
3312     next_time = segment->start;
3313   else
3314     next_time = segment->position;
3315
3316   if (segment->stop != -1 && next_time > segment->stop)
3317     next_time = segment->stop;
3318
3319   next_time = gst_segment_to_running_time (segment, GST_FORMAT_TIME, next_time);
3320   GST_OBJECT_UNLOCK (self);
3321
3322   return next_time;
3323 }