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