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