7f754964baddfd3d570f387d4e03403db1361e60
[platform/upstream/gstreamer.git] / libs / gst / base / gstaggregator.c
1 /* GStreamer
2  * Copyright (C) 2014 Mathieu Duponchelle <mathieu.duponchelle@opencreed.com>
3  * Copyright (C) 2014 Thibault Saunier <tsaunier@gnome.org>
4  *
5  * gstaggregator.c:
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
20  * Boston, MA 02110-1301, USA.
21  */
22 /**
23  * SECTION: gstaggregator
24  * @short_description: manages a set of pads with the purpose of
25  * aggregating their buffers.
26  * @see_also: gstcollectpads for historical reasons.
27  *
28  * Manages a set of pads with the purpose of aggregating their buffers.
29  * Control is given to the subclass when all pads have data.
30  * <itemizedlist>
31  *  <listitem><para>
32  *    Base class for mixers and muxers. Implementers should at least implement
33  *    the aggregate () vmethod.
34  *  </para></listitem>
35  *  <listitem><para>
36  *    When data is queued on all pads, tha aggregate vmethod is called.
37  *  </para></listitem>
38  *  <listitem><para>
39  *    One can peek at the data on any given GstAggregatorPad with the
40  *    gst_aggregator_pad_get_buffer () method, and take ownership of it
41  *    with the gst_aggregator_pad_steal_buffer () method. When a buffer
42  *    has been taken with steal_buffer (), a new buffer can be queued
43  *    on that pad.
44  *  </para></listitem>
45  *  <listitem><para>
46  *    If the subclass wishes to push a buffer downstream in its aggregate
47  *    implementation, it should do so through the
48  *    gst_aggregator_finish_buffer () method. This method will take care
49  *    of sending and ordering mandatory events such as stream start, caps
50  *    and segment.
51  *  </para></listitem>
52  *  <listitem><para>
53  *    Same goes for EOS events, which should not be pushed directly by the
54  *    subclass, it should instead return GST_FLOW_EOS in its aggregate
55  *    implementation.
56  *  </para></listitem>
57  * </itemizedlist>
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
69 /*  Might become API */
70 static void gst_aggregator_merge_tags (GstAggregator * aggregator,
71     const GstTagList * tags, GstTagMergeMode mode);
72 static void gst_aggregator_set_latency_property (GstAggregator * agg,
73     gint64 latency);
74 static gint64 gst_aggregator_get_latency_property (GstAggregator * agg);
75
76
77 GST_DEBUG_CATEGORY_STATIC (aggregator_debug);
78 #define GST_CAT_DEFAULT aggregator_debug
79
80 /* GstAggregatorPad definitions */
81 #define PAD_LOCK_EVENT(pad)   G_STMT_START {                            \
82   GST_LOG_OBJECT (pad, "Taking EVENT lock from thread %p",              \
83         g_thread_self());                                               \
84   g_mutex_lock(&pad->priv->event_lock);                                 \
85   GST_LOG_OBJECT (pad, "Took EVENT lock from thread %p",              \
86         g_thread_self());                                               \
87   } G_STMT_END
88
89 #define PAD_UNLOCK_EVENT(pad)  G_STMT_START {                           \
90   GST_LOG_OBJECT (pad, "Releasing EVENT lock from thread %p",          \
91         g_thread_self());                                               \
92   g_mutex_unlock(&pad->priv->event_lock);                               \
93   GST_LOG_OBJECT (pad, "Release EVENT lock from thread %p",          \
94         g_thread_self());                                               \
95   } G_STMT_END
96
97
98 #define PAD_WAIT_EVENT(pad)   G_STMT_START {                            \
99   GST_LOG_OBJECT (pad, "Waiting for EVENT on thread %p",               \
100         g_thread_self());                                               \
101   g_cond_wait(&(((GstAggregatorPad* )pad)->priv->event_cond),       \
102       &(pad->priv->event_lock));                                        \
103   GST_LOG_OBJECT (pad, "DONE Waiting for EVENT on thread %p",               \
104         g_thread_self());                                               \
105   } G_STMT_END
106
107 #define PAD_BROADCAST_EVENT(pad) {                                          \
108   GST_LOG_OBJECT (pad, "Signaling EVENT from thread %p",               \
109         g_thread_self());                                                   \
110   g_cond_broadcast(&(((GstAggregatorPad* )pad)->priv->event_cond)); \
111   }
112
113 #define GST_AGGREGATOR_SETCAPS_LOCK(self)   G_STMT_START {        \
114   GST_LOG_OBJECT (self, "Taking SETCAPS lock from thread %p",   \
115         g_thread_self());                                         \
116   g_mutex_lock(&self->priv->setcaps_lock);                         \
117   GST_LOG_OBJECT (self, "Took SETCAPS lock from thread %p",     \
118         g_thread_self());                                         \
119   } G_STMT_END
120
121 #define GST_AGGREGATOR_SETCAPS_UNLOCK(self)   G_STMT_START {        \
122   GST_LOG_OBJECT (self, "Releasing SETCAPS lock from thread %p",  \
123         g_thread_self());                                           \
124   g_mutex_unlock(&self->priv->setcaps_lock);                         \
125   GST_LOG_OBJECT (self, "Took SETCAPS lock from thread %p",       \
126         g_thread_self());                                           \
127   } G_STMT_END
128
129 #define PAD_STREAM_LOCK(pad)   G_STMT_START {                            \
130   GST_LOG_OBJECT (pad, "Taking lock from thread %p",              \
131         g_thread_self());                                               \
132   g_mutex_lock(&pad->priv->stream_lock);                                 \
133   GST_LOG_OBJECT (pad, "Took lock from thread %p",              \
134         g_thread_self());                                               \
135   } G_STMT_END
136
137 #define PAD_STREAM_UNLOCK(pad)  G_STMT_START {                           \
138   GST_LOG_OBJECT (pad, "Releasing lock from thread %p",          \
139         g_thread_self());                                               \
140   g_mutex_unlock(&pad->priv->stream_lock);                               \
141   GST_LOG_OBJECT (pad, "Release lock from thread %p",          \
142         g_thread_self());                                               \
143   } G_STMT_END
144
145 #define SRC_STREAM_LOCK(self)   G_STMT_START {                             \
146   GST_LOG_OBJECT (self, "Taking src STREAM lock from thread %p",           \
147         g_thread_self());                                                  \
148   g_mutex_lock(&self->priv->src_lock);                                     \
149   GST_LOG_OBJECT (self, "Took src STREAM lock from thread %p",             \
150         g_thread_self());                                                  \
151   } G_STMT_END
152
153 #define SRC_STREAM_UNLOCK(self)  G_STMT_START {                            \
154   GST_LOG_OBJECT (self, "Releasing src STREAM lock from thread %p",        \
155         g_thread_self());                                                  \
156   g_mutex_unlock(&self->priv->src_lock);                                   \
157   GST_LOG_OBJECT (self, "Release src STREAM lock from thread %p",          \
158         g_thread_self());                                                  \
159   } G_STMT_END
160
161 #define SRC_STREAM_WAIT(self) G_STMT_START {                               \
162   GST_LOG_OBJECT (self, "Waiting for src STREAM on thread %p",             \
163         g_thread_self());                                                  \
164   g_cond_wait(&(self->priv->src_cond), &(self->priv->src_lock));           \
165   GST_LOG_OBJECT (self, "DONE Waiting for src STREAM on thread %p",        \
166         g_thread_self());                                                  \
167   } G_STMT_END
168
169 #define SRC_STREAM_BROADCAST(self) G_STMT_START {                          \
170     SRC_STREAM_LOCK (self);                                                \
171     GST_LOG_OBJECT (self, "Signaling src STREAM from thread %p",           \
172         g_thread_self());                                                  \
173     if (self->priv->aggregate_id)                                          \
174       gst_clock_id_unschedule (self->priv->aggregate_id);                  \
175     g_cond_broadcast(&(self->priv->src_cond));                             \
176     SRC_STREAM_UNLOCK (self);                                              \
177   } G_STMT_END
178
179 struct _GstAggregatorPadPrivate
180 {
181   gboolean pending_flush_start;
182   gboolean pending_flush_stop;
183   gboolean pending_eos;
184   gboolean flushing;
185
186   GMutex event_lock;
187   GCond event_cond;
188
189   GMutex stream_lock;
190 };
191
192 static gboolean
193 _aggpad_flush (GstAggregatorPad * aggpad, GstAggregator * agg)
194 {
195   GstAggregatorPadClass *klass = GST_AGGREGATOR_PAD_GET_CLASS (aggpad);
196
197   aggpad->eos = FALSE;
198   aggpad->priv->flushing = FALSE;
199
200   if (klass->flush)
201     return klass->flush (aggpad, agg);
202
203   return TRUE;
204 }
205
206 /*************************************
207  * GstAggregator implementation  *
208  *************************************/
209 static GstElementClass *aggregator_parent_class = NULL;
210
211 struct _GstAggregatorPrivate
212 {
213   gint padcount;
214
215   /* Our state is >= PAUSED */
216   gboolean running;
217
218
219   gint seqnum;
220   gboolean send_stream_start;
221   gboolean send_segment;
222   gboolean flush_seeking;
223   gboolean pending_flush_start;
224   gboolean send_eos;
225   GstFlowReturn flow_return;
226
227   GstCaps *srccaps;
228
229   GstTagList *tags;
230   gboolean tags_changed;
231
232   /* Lock to prevent two src setcaps from happening at the same time  */
233   GMutex setcaps_lock;
234
235   gboolean latency_live;
236   GstClockTime latency_min;
237   GstClockTime latency_max;
238
239   GstClockTime sub_latency_min;
240   GstClockTime sub_latency_max;
241
242   /* aggregate */
243   GstClockID aggregate_id;
244   GMutex src_lock;
245   GCond src_cond;
246 };
247
248 typedef struct
249 {
250   GstEvent *event;
251   gboolean result;
252   gboolean flush;
253
254   gboolean one_actually_seeked;
255 } EventData;
256
257 #define DEFAULT_LATENCY        -1
258
259 enum
260 {
261   PROP_0,
262   PROP_LATENCY,
263   PROP_LAST
264 };
265
266 /**
267  * gst_aggregator_iterate_sinkpads:
268  * @self: The #GstAggregator
269  * @func: The function to call.
270  * @user_data: The data to pass to @func.
271  *
272  * Iterate the sinkpads of aggregator to call a function on them.
273  *
274  * This method guarantees that @func will be called only once for each
275  * sink pad.
276  */
277 gboolean
278 gst_aggregator_iterate_sinkpads (GstAggregator * self,
279     GstAggregatorPadForeachFunc func, gpointer user_data)
280 {
281   gboolean result = FALSE;
282   GstIterator *iter;
283   gboolean done = FALSE;
284   GValue item = { 0, };
285   GList *seen_pads = NULL;
286
287   iter = gst_element_iterate_sink_pads (GST_ELEMENT (self));
288
289   if (!iter)
290     goto no_iter;
291
292   while (!done) {
293     switch (gst_iterator_next (iter, &item)) {
294       case GST_ITERATOR_OK:
295       {
296         GstPad *pad;
297
298         pad = g_value_get_object (&item);
299
300         /* if already pushed, skip. FIXME, find something faster to tag pads */
301         if (pad == NULL || g_list_find (seen_pads, pad)) {
302           g_value_reset (&item);
303           break;
304         }
305
306         GST_LOG_OBJECT (self, "calling function on pad %s:%s",
307             GST_DEBUG_PAD_NAME (pad));
308         result = func (self, pad, user_data);
309
310         done = !result;
311
312         seen_pads = g_list_prepend (seen_pads, pad);
313
314         g_value_reset (&item);
315         break;
316       }
317       case GST_ITERATOR_RESYNC:
318         gst_iterator_resync (iter);
319         break;
320       case GST_ITERATOR_ERROR:
321         GST_ERROR_OBJECT (self,
322             "Could not iterate over internally linked pads");
323         done = TRUE;
324         break;
325       case GST_ITERATOR_DONE:
326         done = TRUE;
327         break;
328     }
329   }
330   g_value_unset (&item);
331   gst_iterator_free (iter);
332
333   if (seen_pads == NULL) {
334     GST_DEBUG_OBJECT (self, "No pad seen");
335     return FALSE;
336   }
337
338   g_list_free (seen_pads);
339
340 no_iter:
341   return result;
342 }
343
344 static inline gboolean
345 _check_all_pads_with_data_or_eos (GstAggregator * self,
346     GstAggregatorPad * aggpad, gpointer user_data)
347 {
348   if (aggpad->buffer || aggpad->eos) {
349     return TRUE;
350   }
351
352   GST_LOG_OBJECT (aggpad, "Not ready to be aggregated");
353
354   return FALSE;
355 }
356
357 static void
358 _reset_flow_values (GstAggregator * self)
359 {
360   self->priv->flow_return = GST_FLOW_FLUSHING;
361   self->priv->send_stream_start = TRUE;
362   self->priv->send_segment = TRUE;
363   gst_segment_init (&self->segment, GST_FORMAT_TIME);
364 }
365
366 static inline void
367 _push_mandatory_events (GstAggregator * self)
368 {
369   GstAggregatorPrivate *priv = self->priv;
370
371   if (g_atomic_int_get (&self->priv->send_stream_start)) {
372     gchar s_id[32];
373
374     GST_INFO_OBJECT (self, "pushing stream start");
375     /* stream-start (FIXME: create id based on input ids) */
376     g_snprintf (s_id, sizeof (s_id), "agg-%08x", g_random_int ());
377     if (!gst_pad_push_event (self->srcpad, gst_event_new_stream_start (s_id))) {
378       GST_WARNING_OBJECT (self->srcpad, "Sending stream start event failed");
379     }
380     g_atomic_int_set (&self->priv->send_stream_start, FALSE);
381   }
382
383   if (self->priv->srccaps) {
384
385     GST_INFO_OBJECT (self, "pushing caps: %" GST_PTR_FORMAT,
386         self->priv->srccaps);
387     if (!gst_pad_push_event (self->srcpad,
388             gst_event_new_caps (self->priv->srccaps))) {
389       GST_WARNING_OBJECT (self->srcpad, "Sending caps event failed");
390     }
391     gst_caps_unref (self->priv->srccaps);
392     self->priv->srccaps = NULL;
393   }
394
395   if (g_atomic_int_get (&self->priv->send_segment)) {
396     if (!g_atomic_int_get (&self->priv->flush_seeking)) {
397       GstEvent *segev = gst_event_new_segment (&self->segment);
398
399       if (!self->priv->seqnum)
400         self->priv->seqnum = gst_event_get_seqnum (segev);
401       else
402         gst_event_set_seqnum (segev, self->priv->seqnum);
403
404       GST_DEBUG_OBJECT (self, "pushing segment %" GST_PTR_FORMAT, segev);
405       gst_pad_push_event (self->srcpad, segev);
406       g_atomic_int_set (&self->priv->send_segment, FALSE);
407     }
408   }
409
410   if (priv->tags && priv->tags_changed) {
411     gst_pad_push_event (self->srcpad,
412         gst_event_new_tag (gst_tag_list_ref (priv->tags)));
413     priv->tags_changed = FALSE;
414   }
415 }
416
417 /**
418  * gst_aggregator_set_src_caps:
419  * @self: The #GstAggregator
420  * @caps: The #GstCaps to set on the src pad.
421  *
422  * Sets the caps to be used on the src pad.
423  */
424 void
425 gst_aggregator_set_src_caps (GstAggregator * self, GstCaps * caps)
426 {
427   GST_AGGREGATOR_SETCAPS_LOCK (self);
428   gst_caps_replace (&self->priv->srccaps, caps);
429   _push_mandatory_events (self);
430   GST_AGGREGATOR_SETCAPS_UNLOCK (self);
431 }
432
433 /**
434  * gst_aggregator_finish_buffer:
435  * @self: The #GstAggregator
436  * @buffer: the #GstBuffer to push.
437  *
438  * This method will take care of sending mandatory events before pushing
439  * the provided buffer.
440  */
441 GstFlowReturn
442 gst_aggregator_finish_buffer (GstAggregator * self, GstBuffer * buffer)
443 {
444   _push_mandatory_events (self);
445
446   if (!g_atomic_int_get (&self->priv->flush_seeking) &&
447       gst_pad_is_active (self->srcpad)) {
448     GST_TRACE_OBJECT (self, "pushing buffer %" GST_PTR_FORMAT, buffer);
449     return gst_pad_push (self->srcpad, buffer);
450   } else {
451     GST_INFO_OBJECT (self, "Not pushing (active: %i, flushing: %i)",
452         g_atomic_int_get (&self->priv->flush_seeking),
453         gst_pad_is_active (self->srcpad));
454     gst_buffer_unref (buffer);
455     return GST_FLOW_OK;
456   }
457 }
458
459 static void
460 _push_eos (GstAggregator * self)
461 {
462   GstEvent *event;
463   _push_mandatory_events (self);
464
465   self->priv->send_eos = FALSE;
466   event = gst_event_new_eos ();
467   gst_event_set_seqnum (event, self->priv->seqnum);
468   gst_pad_push_event (self->srcpad, event);
469 }
470
471 static GstClockTime
472 gst_aggregator_get_next_time (GstAggregator * self)
473 {
474   GstAggregatorClass *klass = GST_AGGREGATOR_GET_CLASS (self);
475
476   if (klass->get_next_time)
477     return klass->get_next_time (self);
478
479   return GST_CLOCK_TIME_NONE;
480 }
481
482 /* called with the src STREAM lock */
483 static gboolean
484 _wait_and_check (GstAggregator * self, gboolean * timeout)
485 {
486   GstClockTime latency_max, latency_min;
487   GstClockTime start;
488   gboolean live;
489
490   *timeout = FALSE;
491
492   gst_aggregator_get_latency (self, &live, &latency_min, &latency_max);
493
494   if (gst_aggregator_iterate_sinkpads (self,
495           (GstAggregatorPadForeachFunc) _check_all_pads_with_data_or_eos,
496           NULL)) {
497     GST_DEBUG_OBJECT (self, "all pads have data");
498     return TRUE;
499   }
500
501   SRC_STREAM_LOCK (self);
502
503   /* Before waiting, check if we're actually still running */
504   if (!self->priv->running || !self->priv->send_eos) {
505     SRC_STREAM_UNLOCK (self);
506
507     return FALSE;
508   }
509
510   start = gst_aggregator_get_next_time (self);
511
512   if (!live || !GST_IS_CLOCK (GST_ELEMENT_CLOCK (self))
513       || !GST_CLOCK_TIME_IS_VALID (start)) {
514     /* We wake up here when something happened, and below
515      * then check if we're ready now. If we return FALSE,
516      * we will be directly called again.
517      */
518     SRC_STREAM_WAIT (self);
519   } else {
520     GstClockTime base_time, time;
521     GstClock *clock;
522     GstClockReturn status;
523
524     GST_DEBUG_OBJECT (self, "got subclass start time: %" GST_TIME_FORMAT,
525         GST_TIME_ARGS (start));
526
527     GST_OBJECT_LOCK (self);
528     base_time = GST_ELEMENT_CAST (self)->base_time;
529     clock = GST_ELEMENT_CLOCK (self);
530     if (clock)
531       gst_object_ref (clock);
532     GST_OBJECT_UNLOCK (self);
533
534     time = base_time + start;
535
536     if (GST_CLOCK_TIME_IS_VALID (latency_max)) {
537       time += latency_max;
538     } else if (GST_CLOCK_TIME_IS_VALID (latency_min)) {
539       time += latency_min;
540     } else {
541       time += self->latency;
542     }
543
544     GST_DEBUG_OBJECT (self, "possibly waiting for clock to reach %"
545         GST_TIME_FORMAT " (base %" GST_TIME_FORMAT " start %" GST_TIME_FORMAT
546         " latency max %" GST_TIME_FORMAT " latency min %" GST_TIME_FORMAT
547         " current %" GST_TIME_FORMAT ")", GST_TIME_ARGS (time),
548         GST_TIME_ARGS (GST_ELEMENT_CAST (self)->base_time),
549         GST_TIME_ARGS (start), GST_TIME_ARGS (latency_max),
550         GST_TIME_ARGS (latency_min),
551         GST_TIME_ARGS (gst_clock_get_time (clock)));
552
553     self->priv->aggregate_id = gst_clock_new_single_shot_id (clock, time);
554     gst_object_unref (clock);
555     SRC_STREAM_UNLOCK (self);
556
557     status = gst_clock_id_wait (self->priv->aggregate_id, NULL);
558
559     SRC_STREAM_LOCK (self);
560     if (self->priv->aggregate_id) {
561       gst_clock_id_unref (self->priv->aggregate_id);
562       self->priv->aggregate_id = NULL;
563     }
564
565     GST_DEBUG_OBJECT (self, "clock returned %d", status);
566
567     /* we timed out */
568     if (status == GST_CLOCK_OK || status == GST_CLOCK_EARLY) {
569       SRC_STREAM_UNLOCK (self);
570       *timeout = TRUE;
571       return TRUE;
572     }
573   }
574   SRC_STREAM_UNLOCK (self);
575
576   return gst_aggregator_iterate_sinkpads (self,
577       (GstAggregatorPadForeachFunc) _check_all_pads_with_data_or_eos, NULL);
578 }
579
580 static void
581 aggregate_func (GstAggregator * self)
582 {
583   GstAggregatorPrivate *priv = self->priv;
584   GstAggregatorClass *klass = GST_AGGREGATOR_GET_CLASS (self);
585   gboolean timeout = FALSE;
586
587   if (self->priv->running == FALSE) {
588     GST_DEBUG_OBJECT (self, "Not running anymore");
589     return;
590   }
591
592   GST_LOG_OBJECT (self, "Checking aggregate");
593   while (priv->send_eos && priv->running) {
594     if (!_wait_and_check (self, &timeout))
595       continue;
596
597     GST_TRACE_OBJECT (self, "Actually aggregating!");
598
599     priv->flow_return = klass->aggregate (self, timeout);
600
601     if (priv->flow_return == GST_FLOW_EOS) {
602       _push_eos (self);
603     }
604
605     if (priv->flow_return == GST_FLOW_FLUSHING &&
606         g_atomic_int_get (&priv->flush_seeking))
607       priv->flow_return = GST_FLOW_OK;
608
609     GST_LOG_OBJECT (self, "flow return is %s",
610         gst_flow_get_name (priv->flow_return));
611
612     if (priv->flow_return != GST_FLOW_OK)
613       break;
614   }
615 }
616
617 static gboolean
618 _start (GstAggregator * self)
619 {
620   self->priv->running = TRUE;
621   self->priv->send_stream_start = TRUE;
622   self->priv->send_segment = TRUE;
623   self->priv->send_eos = TRUE;
624   self->priv->srccaps = NULL;
625   self->priv->flow_return = GST_FLOW_OK;
626
627   return TRUE;
628 }
629
630 static gboolean
631 _check_pending_flush_stop (GstAggregatorPad * pad)
632 {
633   return (!pad->priv->pending_flush_stop && !pad->priv->pending_flush_start);
634 }
635
636 static gboolean
637 _stop_srcpad_task (GstAggregator * self, GstEvent * flush_start)
638 {
639   gboolean res = TRUE;
640
641   GST_INFO_OBJECT (self, "%s srcpad task",
642       flush_start ? "Pausing" : "Stopping");
643
644   self->priv->running = FALSE;
645   SRC_STREAM_BROADCAST (self);
646
647   if (flush_start) {
648     res = gst_pad_push_event (self->srcpad, flush_start);
649   }
650
651   gst_pad_stop_task (self->srcpad);
652   SRC_STREAM_BROADCAST (self);
653
654   return res;
655 }
656
657 static void
658 _start_srcpad_task (GstAggregator * self)
659 {
660   GST_INFO_OBJECT (self, "Starting srcpad task");
661
662   self->priv->running = TRUE;
663   gst_pad_start_task (GST_PAD (self->srcpad),
664       (GstTaskFunction) aggregate_func, self, NULL);
665 }
666
667 static GstFlowReturn
668 _flush (GstAggregator * self)
669 {
670   GstFlowReturn ret = GST_FLOW_OK;
671   GstAggregatorPrivate *priv = self->priv;
672   GstAggregatorClass *klass = GST_AGGREGATOR_GET_CLASS (self);
673
674   GST_DEBUG_OBJECT (self, "Flushing everything");
675   g_atomic_int_set (&priv->send_segment, TRUE);
676   g_atomic_int_set (&priv->flush_seeking, FALSE);
677   g_atomic_int_set (&priv->tags_changed, FALSE);
678   if (klass->flush)
679     ret = klass->flush (self);
680
681   return ret;
682 }
683
684 static gboolean
685 _all_flush_stop_received (GstAggregator * self)
686 {
687   GList *tmp;
688   GstAggregatorPad *tmppad;
689
690   GST_OBJECT_LOCK (self);
691   for (tmp = GST_ELEMENT (self)->sinkpads; tmp; tmp = tmp->next) {
692     tmppad = (GstAggregatorPad *) tmp->data;
693
694     if (_check_pending_flush_stop (tmppad) == FALSE) {
695       GST_DEBUG_OBJECT (tmppad, "Is not last %i -- %i",
696           tmppad->priv->pending_flush_start, tmppad->priv->pending_flush_stop);
697       GST_OBJECT_UNLOCK (self);
698       return FALSE;
699     }
700   }
701   GST_OBJECT_UNLOCK (self);
702
703   return TRUE;
704 }
705
706 static void
707 _flush_start (GstAggregator * self, GstAggregatorPad * aggpad, GstEvent * event)
708 {
709   GstBuffer *tmpbuf;
710   GstAggregatorPrivate *priv = self->priv;
711   GstAggregatorPadPrivate *padpriv = aggpad->priv;
712
713   g_atomic_int_set (&aggpad->priv->flushing, TRUE);
714   /*  Remove pad buffer and wake up the streaming thread */
715   tmpbuf = gst_aggregator_pad_steal_buffer (aggpad);
716   gst_buffer_replace (&tmpbuf, NULL);
717   PAD_STREAM_LOCK (aggpad);
718   if (g_atomic_int_compare_and_exchange (&padpriv->pending_flush_start,
719           TRUE, FALSE) == TRUE) {
720     GST_DEBUG_OBJECT (aggpad, "Expecting FLUSH_STOP now");
721     g_atomic_int_set (&padpriv->pending_flush_stop, TRUE);
722   }
723
724   if (g_atomic_int_get (&priv->flush_seeking)) {
725     /* If flush_seeking we forward the first FLUSH_START */
726     if (g_atomic_int_compare_and_exchange (&priv->pending_flush_start,
727             TRUE, FALSE) == TRUE) {
728
729       GST_INFO_OBJECT (self, "Flushing, pausing srcpad task");
730       _stop_srcpad_task (self, event);
731       priv->flow_return = GST_FLOW_OK;
732
733       GST_INFO_OBJECT (self, "Getting STREAM_LOCK while seeking");
734       GST_PAD_STREAM_LOCK (self->srcpad);
735       GST_LOG_OBJECT (self, "GOT STREAM_LOCK");
736       event = NULL;
737     }
738   } else {
739     gst_event_unref (event);
740   }
741   PAD_STREAM_UNLOCK (aggpad);
742
743   tmpbuf = gst_aggregator_pad_steal_buffer (aggpad);
744   gst_buffer_replace (&tmpbuf, NULL);
745 }
746
747 /* GstAggregator vmethods default implementations */
748 static gboolean
749 _sink_event (GstAggregator * self, GstAggregatorPad * aggpad, GstEvent * event)
750 {
751   gboolean res = TRUE;
752   GstPad *pad = GST_PAD (aggpad);
753   GstAggregatorPrivate *priv = self->priv;
754
755   switch (GST_EVENT_TYPE (event)) {
756     case GST_EVENT_FLUSH_START:
757     {
758       _flush_start (self, aggpad, event);
759       /* We forward only in one case: right after flush_seeking */
760       event = NULL;
761       goto eat;
762     }
763     case GST_EVENT_FLUSH_STOP:
764     {
765       GST_DEBUG_OBJECT (aggpad, "Got FLUSH_STOP");
766
767       _aggpad_flush (aggpad, self);
768       if (g_atomic_int_get (&priv->flush_seeking)) {
769         g_atomic_int_set (&aggpad->priv->pending_flush_stop, FALSE);
770
771         if (g_atomic_int_get (&priv->flush_seeking)) {
772           if (_all_flush_stop_received (self)) {
773             /* That means we received FLUSH_STOP/FLUSH_STOP on
774              * all sinkpads -- Seeking is Done... sending FLUSH_STOP */
775             _flush (self);
776             gst_pad_push_event (self->srcpad, event);
777             priv->send_eos = TRUE;
778             event = NULL;
779             SRC_STREAM_BROADCAST (self);
780
781             GST_INFO_OBJECT (self, "Releasing source pad STREAM_LOCK");
782             GST_PAD_STREAM_UNLOCK (self->srcpad);
783             _start_srcpad_task (self);
784           }
785         }
786       }
787
788       /* We never forward the event */
789       goto eat;
790     }
791     case GST_EVENT_EOS:
792     {
793       GST_DEBUG_OBJECT (aggpad, "EOS");
794
795       /* We still have a buffer, and we don't want the subclass to have to
796        * check for it. Mark pending_eos, eos will be set when steal_buffer is
797        * called
798        */
799       PAD_LOCK_EVENT (aggpad);
800       if (!aggpad->buffer) {
801         aggpad->eos = TRUE;
802       } else {
803         aggpad->priv->pending_eos = TRUE;
804       }
805       PAD_UNLOCK_EVENT (aggpad);
806
807       SRC_STREAM_BROADCAST (self);
808       goto eat;
809     }
810     case GST_EVENT_SEGMENT:
811     {
812       PAD_LOCK_EVENT (aggpad);
813       gst_event_copy_segment (event, &aggpad->segment);
814       self->priv->seqnum = gst_event_get_seqnum (event);
815       PAD_UNLOCK_EVENT (aggpad);
816       goto eat;
817     }
818     case GST_EVENT_STREAM_START:
819     {
820       goto eat;
821     }
822     case GST_EVENT_TAG:
823     {
824       GstTagList *tags;
825
826       gst_event_parse_tag (event, &tags);
827
828       if (gst_tag_list_get_scope (tags) == GST_TAG_SCOPE_STREAM) {
829         gst_aggregator_merge_tags (self, tags, GST_TAG_MERGE_REPLACE);
830         gst_event_unref (event);
831         event = NULL;
832         goto eat;
833       }
834       break;
835     }
836     default:
837     {
838       break;
839     }
840   }
841
842   GST_DEBUG_OBJECT (pad, "Forwarding event: %" GST_PTR_FORMAT, event);
843   return gst_pad_event_default (pad, GST_OBJECT (self), event);
844
845 eat:
846   GST_DEBUG_OBJECT (pad, "Eating event: %" GST_PTR_FORMAT, event);
847   if (event)
848     gst_event_unref (event);
849
850   return res;
851 }
852
853 static gboolean
854 _stop_pad (GstAggregator * self, GstAggregatorPad * pad, gpointer unused_udata)
855 {
856   _aggpad_flush (pad, self);
857
858   return TRUE;
859 }
860
861 static gboolean
862 _stop (GstAggregator * agg)
863 {
864   _reset_flow_values (agg);
865
866   gst_aggregator_iterate_sinkpads (agg,
867       (GstAggregatorPadForeachFunc) _stop_pad, NULL);
868
869   if (agg->priv->tags)
870     gst_tag_list_unref (agg->priv->tags);
871   agg->priv->tags = NULL;
872
873   return TRUE;
874 }
875
876 /* GstElement vmethods implementations */
877 static GstStateChangeReturn
878 _change_state (GstElement * element, GstStateChange transition)
879 {
880   GstStateChangeReturn ret;
881   GstAggregator *self = GST_AGGREGATOR (element);
882   GstAggregatorClass *agg_class = GST_AGGREGATOR_GET_CLASS (self);
883
884
885   switch (transition) {
886     case GST_STATE_CHANGE_READY_TO_PAUSED:
887       agg_class->start (self);
888       break;
889     default:
890       break;
891   }
892
893   if ((ret =
894           GST_ELEMENT_CLASS (aggregator_parent_class)->change_state (element,
895               transition)) == GST_STATE_CHANGE_FAILURE)
896     goto failure;
897
898
899   switch (transition) {
900     case GST_STATE_CHANGE_PAUSED_TO_READY:
901       agg_class->stop (self);
902       break;
903     default:
904       break;
905   }
906
907   return ret;
908
909 failure:
910   {
911     GST_ERROR_OBJECT (element, "parent failed state change");
912     return ret;
913   }
914 }
915
916 static void
917 _release_pad (GstElement * element, GstPad * pad)
918 {
919   GstAggregator *self = GST_AGGREGATOR (element);
920   GstBuffer *tmpbuf;
921
922   GstAggregatorPad *aggpad = GST_AGGREGATOR_PAD (pad);
923
924   GST_INFO_OBJECT (pad, "Removing pad");
925
926   g_atomic_int_set (&aggpad->priv->flushing, TRUE);
927   tmpbuf = gst_aggregator_pad_steal_buffer (aggpad);
928   gst_buffer_replace (&tmpbuf, NULL);
929   gst_element_remove_pad (element, pad);
930
931   SRC_STREAM_BROADCAST (self);
932 }
933
934 static GstPad *
935 _request_new_pad (GstElement * element,
936     GstPadTemplate * templ, const gchar * req_name, const GstCaps * caps)
937 {
938   GstAggregator *self;
939   GstAggregatorPad *agg_pad;
940
941   GstElementClass *klass = GST_ELEMENT_GET_CLASS (element);
942   GstAggregatorPrivate *priv = GST_AGGREGATOR (element)->priv;
943
944   self = GST_AGGREGATOR (element);
945
946   if (templ == gst_element_class_get_pad_template (klass, "sink_%u")) {
947     gint serial = 0;
948     gchar *name = NULL;
949
950     GST_OBJECT_LOCK (element);
951     if (req_name == NULL || strlen (req_name) < 6
952         || !g_str_has_prefix (req_name, "sink_")) {
953       /* no name given when requesting the pad, use next available int */
954       priv->padcount++;
955     } else {
956       /* parse serial number from requested padname */
957       serial = g_ascii_strtoull (&req_name[5], NULL, 10);
958       if (serial >= priv->padcount)
959         priv->padcount = serial;
960     }
961
962     name = g_strdup_printf ("sink_%u", priv->padcount);
963     agg_pad = g_object_new (GST_AGGREGATOR_GET_CLASS (self)->sinkpads_type,
964         "name", name, "direction", GST_PAD_SINK, "template", templ, NULL);
965     g_free (name);
966
967     GST_OBJECT_UNLOCK (element);
968
969   } else {
970     return NULL;
971   }
972
973   GST_DEBUG_OBJECT (element, "Adding pad %s", GST_PAD_NAME (agg_pad));
974
975   if (priv->running)
976     gst_pad_set_active (GST_PAD (agg_pad), TRUE);
977
978   /* add the pad to the element */
979   gst_element_add_pad (element, GST_PAD (agg_pad));
980
981   return GST_PAD (agg_pad);
982 }
983
984 typedef struct
985 {
986   GstClockTime min, max;
987   gboolean live;
988 } LatencyData;
989
990 static gboolean
991 _latency_query (GstAggregator * self, GstPad * pad, gpointer user_data)
992 {
993   LatencyData *data = user_data;
994   GstClockTime min, max;
995   GstQuery *query;
996   gboolean live, res;
997
998   query = gst_query_new_latency ();
999   res = gst_pad_peer_query (pad, query);
1000
1001   if (res) {
1002     gst_query_parse_latency (query, &live, &min, &max);
1003
1004     GST_LOG_OBJECT (self, "got latency live:%s min:%" G_GINT64_FORMAT
1005         " max:%" G_GINT64_FORMAT, live ? "true" : "false", min, max);
1006
1007     if (min > data->min)
1008       data->min = min;
1009
1010     if (max != GST_CLOCK_TIME_NONE &&
1011         ((data->max != GST_CLOCK_TIME_NONE && max < data->max) ||
1012             (data->max == GST_CLOCK_TIME_NONE)))
1013       data->max = max;
1014
1015     data->live |= live;
1016   }
1017
1018   gst_query_unref (query);
1019
1020   return TRUE;
1021 }
1022
1023 /**
1024  * gst_aggregator_get_latency:
1025  * @self: a #GstAggregator
1026  * @live: (out) (allow-none): whether @self is live
1027  * @min_latency: (out) (allow-none): the configured minimum latency of @self
1028  * @max_latency: (out) (allow-none): the configured maximum latency of @self
1029  *
1030  * Retreives the latency values reported by @self in response to the latency
1031  * query.
1032  *
1033  * Typically only called by subclasses.
1034  */
1035 void
1036 gst_aggregator_get_latency (GstAggregator * self, gboolean * live,
1037     GstClockTime * min_latency, GstClockTime * max_latency)
1038 {
1039   GstClockTime min, max;
1040
1041   g_return_if_fail (GST_IS_AGGREGATOR (self));
1042
1043   min = self->priv->latency_min;
1044   max = self->priv->latency_max;
1045
1046   min += self->priv->sub_latency_min;
1047   if (GST_CLOCK_TIME_IS_VALID (max)
1048       && GST_CLOCK_TIME_IS_VALID (self->priv->sub_latency_max))
1049     max += self->priv->sub_latency_max;
1050
1051   if (GST_CLOCK_TIME_IS_VALID (self->latency)) {
1052     min += self->latency;
1053     if (GST_CLOCK_TIME_IS_VALID (max))
1054       max += self->latency;
1055   }
1056
1057   if (live)
1058     *live = self->priv->latency_live;
1059   if (min_latency)
1060     *min_latency = min;
1061   if (max_latency)
1062     *max_latency = max;
1063 }
1064
1065 static gboolean
1066 gst_aggregator_query_latency (GstAggregator * self, GstQuery * query)
1067 {
1068   LatencyData data;
1069
1070   data.min = 0;
1071   data.max = GST_CLOCK_TIME_NONE;
1072   data.live = FALSE;
1073
1074   /* query upstream's latency */
1075   gst_aggregator_iterate_sinkpads (self,
1076       (GstAggregatorPadForeachFunc) _latency_query, &data);
1077
1078   if (data.live && GST_CLOCK_TIME_IS_VALID (self->latency) &&
1079       self->latency > data.max) {
1080     GST_ELEMENT_WARNING (self, CORE, NEGOTIATION,
1081         ("%s", "Latency too big"),
1082         ("The requested latency value is too big for the current pipeline.  "
1083             "Limiting to %" G_GINT64_FORMAT, data.max));
1084     self->latency = data.max;
1085   }
1086
1087   if (G_UNLIKELY (!GST_CLOCK_TIME_IS_VALID (data.min))) {
1088     GST_WARNING_OBJECT (self, "Invalid minimum latency, using 0");
1089     data.min = 0;
1090   }
1091
1092   self->priv->latency_live = data.live;
1093   self->priv->latency_min = data.min;
1094   self->priv->latency_max = data.max;
1095
1096   /* add our own */
1097   if (GST_CLOCK_TIME_IS_VALID (self->latency)) {
1098     if (GST_CLOCK_TIME_IS_VALID (data.min))
1099       data.min += self->latency;
1100     if (GST_CLOCK_TIME_IS_VALID (data.max))
1101       data.max += self->latency;
1102   }
1103
1104   if (GST_CLOCK_TIME_IS_VALID (self->priv->sub_latency_min)
1105       && GST_CLOCK_TIME_IS_VALID (data.min))
1106     data.min += self->priv->sub_latency_min;
1107   if (GST_CLOCK_TIME_IS_VALID (self->priv->sub_latency_max)
1108       && GST_CLOCK_TIME_IS_VALID (data.max))
1109     data.max += self->priv->sub_latency_max;
1110
1111   GST_DEBUG_OBJECT (self, "configured latency live:%s min:%" G_GINT64_FORMAT
1112       " max:%" G_GINT64_FORMAT, data.live ? "true" : "false", data.min,
1113       data.max);
1114
1115   gst_query_set_latency (query, data.live, data.min, data.max);
1116
1117   return TRUE;
1118 }
1119
1120 static gboolean
1121 _send_event (GstElement * element, GstEvent * event)
1122 {
1123   GstAggregator *self = GST_AGGREGATOR (element);
1124
1125   GST_STATE_LOCK (element);
1126   if (GST_EVENT_TYPE (event) == GST_EVENT_SEEK &&
1127       GST_STATE (element) < GST_STATE_PAUSED) {
1128     gdouble rate;
1129     GstFormat fmt;
1130     GstSeekFlags flags;
1131     GstSeekType start_type, stop_type;
1132     gint64 start, stop;
1133
1134     gst_event_parse_seek (event, &rate, &fmt, &flags, &start_type,
1135         &start, &stop_type, &stop);
1136     gst_segment_do_seek (&self->segment, rate, fmt, flags, start_type, start,
1137         stop_type, stop, NULL);
1138
1139     self->priv->seqnum = gst_event_get_seqnum (event);
1140     GST_DEBUG_OBJECT (element, "Storing segment %" GST_PTR_FORMAT, event);
1141   }
1142   GST_STATE_UNLOCK (element);
1143
1144
1145   return GST_ELEMENT_CLASS (aggregator_parent_class)->send_event (element,
1146       event);
1147 }
1148
1149 static gboolean
1150 _src_query (GstAggregator * self, GstQuery * query)
1151 {
1152   gboolean res = TRUE;
1153
1154   switch (GST_QUERY_TYPE (query)) {
1155     case GST_QUERY_SEEKING:
1156     {
1157       GstFormat format;
1158
1159       /* don't pass it along as some (file)sink might claim it does
1160        * whereas with a collectpads in between that will not likely work */
1161       gst_query_parse_seeking (query, &format, NULL, NULL, NULL);
1162       gst_query_set_seeking (query, format, FALSE, 0, -1);
1163       res = TRUE;
1164
1165       goto discard;
1166     }
1167     case GST_QUERY_LATENCY:
1168     {
1169       gboolean ret;
1170
1171       ret = gst_aggregator_query_latency (self, query);
1172       /* Wake up the src thread again, due to changed latencies
1173        * or changed live-ness we might have to adjust if we wait
1174        * on a deadline at all and how long.
1175        */
1176       SRC_STREAM_BROADCAST (self);
1177       return ret;
1178     }
1179     default:
1180       break;
1181   }
1182
1183   return gst_pad_query_default (self->srcpad, GST_OBJECT (self), query);
1184
1185 discard:
1186   return res;
1187 }
1188
1189 static gboolean
1190 event_forward_func (GstPad * pad, EventData * evdata)
1191 {
1192   gboolean ret = TRUE;
1193   GstPad *peer = gst_pad_get_peer (pad);
1194   GstAggregatorPadPrivate *padpriv = GST_AGGREGATOR_PAD (pad)->priv;
1195
1196   if (peer) {
1197     ret = gst_pad_send_event (peer, gst_event_ref (evdata->event));
1198     GST_DEBUG_OBJECT (pad, "return of event push is %d", ret);
1199     gst_object_unref (peer);
1200   }
1201
1202   if (ret == FALSE) {
1203     if (GST_EVENT_TYPE (evdata->event) == GST_EVENT_SEEK)
1204       GST_ERROR_OBJECT (pad, "Event %" GST_PTR_FORMAT " failed", evdata->event);
1205
1206     if (GST_EVENT_TYPE (evdata->event) == GST_EVENT_SEEK) {
1207       GstQuery *seeking = gst_query_new_seeking (GST_FORMAT_TIME);
1208
1209       if (gst_pad_query (peer, seeking)) {
1210         gboolean seekable;
1211
1212         gst_query_parse_seeking (seeking, NULL, &seekable, NULL, NULL);
1213
1214         if (seekable == FALSE) {
1215           GST_INFO_OBJECT (pad,
1216               "Source not seekable, We failed but it does not matter!");
1217
1218           ret = TRUE;
1219         }
1220       } else {
1221         GST_ERROR_OBJECT (pad, "Query seeking FAILED");
1222       }
1223     }
1224
1225     if (evdata->flush) {
1226       padpriv->pending_flush_start = FALSE;
1227       padpriv->pending_flush_stop = FALSE;
1228     }
1229   } else {
1230     evdata->one_actually_seeked = TRUE;
1231   }
1232
1233   evdata->result &= ret;
1234
1235   /* Always send to all pads */
1236   return FALSE;
1237 }
1238
1239 static gboolean
1240 _set_flush_pending (GstAggregator * self, GstAggregatorPad * pad,
1241     gpointer udata)
1242 {
1243   pad->priv->pending_flush_start = TRUE;
1244   pad->priv->pending_flush_stop = FALSE;
1245
1246   return TRUE;
1247 }
1248
1249 static EventData
1250 _forward_event_to_all_sinkpads (GstAggregator * self, GstEvent * event,
1251     gboolean flush)
1252 {
1253   EventData evdata;
1254
1255   evdata.event = event;
1256   evdata.result = TRUE;
1257   evdata.flush = flush;
1258   evdata.one_actually_seeked = FALSE;
1259
1260   /* We first need to set all pads as flushing in a first pass
1261    * as flush_start flush_stop is sometimes sent synchronously
1262    * while we send the seek event */
1263   if (flush)
1264     gst_aggregator_iterate_sinkpads (self,
1265         (GstAggregatorPadForeachFunc) _set_flush_pending, NULL);
1266   gst_pad_forward (self->srcpad, (GstPadForwardFunction) event_forward_func,
1267       &evdata);
1268
1269   gst_event_unref (event);
1270
1271   return evdata;
1272 }
1273
1274 static gboolean
1275 _do_seek (GstAggregator * self, GstEvent * event)
1276 {
1277   gdouble rate;
1278   GstFormat fmt;
1279   GstSeekFlags flags;
1280   GstSeekType start_type, stop_type;
1281   gint64 start, stop;
1282   gboolean flush;
1283   EventData evdata;
1284   GstAggregatorPrivate *priv = self->priv;
1285
1286   gst_event_parse_seek (event, &rate, &fmt, &flags, &start_type,
1287       &start, &stop_type, &stop);
1288
1289   GST_INFO_OBJECT (self, "starting SEEK");
1290
1291   flush = flags & GST_SEEK_FLAG_FLUSH;
1292
1293   if (flush) {
1294     g_atomic_int_set (&priv->pending_flush_start, TRUE);
1295     g_atomic_int_set (&priv->flush_seeking, TRUE);
1296   }
1297
1298   gst_segment_do_seek (&self->segment, rate, fmt, flags, start_type, start,
1299       stop_type, stop, NULL);
1300
1301   /* forward the seek upstream */
1302   evdata = _forward_event_to_all_sinkpads (self, event, flush);
1303   event = NULL;
1304
1305   if (!evdata.result || !evdata.one_actually_seeked) {
1306     g_atomic_int_set (&priv->flush_seeking, FALSE);
1307     g_atomic_int_set (&priv->pending_flush_start, FALSE);
1308   }
1309
1310   GST_INFO_OBJECT (self, "seek done, result: %d", evdata.result);
1311
1312   return evdata.result;
1313 }
1314
1315 static gboolean
1316 _src_event (GstAggregator * self, GstEvent * event)
1317 {
1318   EventData evdata;
1319   gboolean res = TRUE;
1320
1321   switch (GST_EVENT_TYPE (event)) {
1322     case GST_EVENT_SEEK:
1323     {
1324       gst_event_ref (event);
1325       res = _do_seek (self, event);
1326       gst_event_unref (event);
1327       event = NULL;
1328       goto done;
1329     }
1330     case GST_EVENT_NAVIGATION:
1331     {
1332       /* navigation is rather pointless. */
1333       res = FALSE;
1334       gst_event_unref (event);
1335       goto done;
1336     }
1337     default:
1338     {
1339       break;
1340     }
1341   }
1342
1343   evdata = _forward_event_to_all_sinkpads (self, event, FALSE);
1344   res = evdata.result;
1345
1346 done:
1347   return res;
1348 }
1349
1350 static gboolean
1351 src_event_func (GstPad * pad, GstObject * parent, GstEvent * event)
1352 {
1353   GstAggregatorClass *klass = GST_AGGREGATOR_GET_CLASS (parent);
1354
1355   return klass->src_event (GST_AGGREGATOR (parent), event);
1356 }
1357
1358 static gboolean
1359 src_query_func (GstPad * pad, GstObject * parent, GstQuery * query)
1360 {
1361   GstAggregatorClass *klass = GST_AGGREGATOR_GET_CLASS (parent);
1362
1363   return klass->src_query (GST_AGGREGATOR (parent), query);
1364 }
1365
1366 static gboolean
1367 src_activate_mode (GstPad * pad,
1368     GstObject * parent, GstPadMode mode, gboolean active)
1369 {
1370   GstAggregator *self = GST_AGGREGATOR (parent);
1371   GstAggregatorClass *klass = GST_AGGREGATOR_GET_CLASS (parent);
1372
1373   if (klass->src_activate) {
1374     if (klass->src_activate (self, mode, active) == FALSE) {
1375       return FALSE;
1376     }
1377   }
1378
1379   if (active == TRUE) {
1380     switch (mode) {
1381       case GST_PAD_MODE_PUSH:
1382       {
1383         GST_INFO_OBJECT (pad, "Activating pad!");
1384         _start_srcpad_task (self);
1385         return TRUE;
1386       }
1387       default:
1388       {
1389         GST_ERROR_OBJECT (pad, "Only supported mode is PUSH");
1390         return FALSE;
1391       }
1392     }
1393   }
1394
1395   /* deactivating */
1396   GST_INFO_OBJECT (self, "Deactivating srcpad");
1397   _stop_srcpad_task (self, FALSE);
1398
1399   return TRUE;
1400 }
1401
1402 static gboolean
1403 _sink_query (GstAggregator * self, GstAggregatorPad * aggpad, GstQuery * query)
1404 {
1405   GstPad *pad = GST_PAD (aggpad);
1406
1407   return gst_pad_query_default (pad, GST_OBJECT (self), query);
1408 }
1409
1410 static void
1411 gst_aggregator_finalize (GObject * object)
1412 {
1413   GstAggregator *self = (GstAggregator *) object;
1414
1415   gst_object_unref (self->clock);
1416   g_mutex_clear (&self->priv->setcaps_lock);
1417   g_mutex_clear (&self->priv->src_lock);
1418   g_cond_clear (&self->priv->src_cond);
1419
1420   G_OBJECT_CLASS (aggregator_parent_class)->finalize (object);
1421 }
1422
1423 static void
1424 gst_aggregator_dispose (GObject * object)
1425 {
1426   G_OBJECT_CLASS (aggregator_parent_class)->dispose (object);
1427 }
1428
1429 /*
1430  * gst_aggregator_set_latency_property:
1431  * @agg: a #GstAggregator
1432  * @latency: the new latency value.
1433  *
1434  * Sets the new latency value to @latency. This value is used to limit the
1435  * amount of time a pad waits for data to appear before considering the pad
1436  * as unresponsive.
1437  */
1438 static void
1439 gst_aggregator_set_latency_property (GstAggregator * self, gint64 latency)
1440 {
1441   gboolean changed;
1442
1443   g_return_if_fail (GST_IS_AGGREGATOR (self));
1444
1445   GST_OBJECT_LOCK (self);
1446
1447   if (self->priv->latency_live && self->priv->latency_max != 0 &&
1448       GST_CLOCK_TIME_IS_VALID (latency) && latency > self->priv->latency_max) {
1449     GST_ELEMENT_WARNING (self, CORE, NEGOTIATION,
1450         ("%s", "Latency too big"),
1451         ("The requested latency value is too big for the latency in the "
1452             "current pipeline.  Limiting to %" G_GINT64_FORMAT,
1453             self->priv->latency_max));
1454     latency = self->priv->latency_max;
1455   }
1456
1457   changed = self->latency != latency;
1458   self->latency = latency;
1459   GST_OBJECT_UNLOCK (self);
1460
1461   if (changed)
1462     gst_element_post_message (GST_ELEMENT_CAST (self),
1463         gst_message_new_latency (GST_OBJECT_CAST (self)));
1464 }
1465
1466 /*
1467  * gst_aggregator_get_latency_property:
1468  * @agg: a #GstAggregator
1469  *
1470  * Gets the latency value. See gst_aggregator_set_latency for
1471  * more details.
1472  *
1473  * Returns: The time in nanoseconds to wait for data to arrive on a sink pad 
1474  * before a pad is deemed unresponsive. A value of -1 means an
1475  * unlimited time.
1476  */
1477 static gint64
1478 gst_aggregator_get_latency_property (GstAggregator * agg)
1479 {
1480   gint64 res;
1481
1482   g_return_val_if_fail (GST_IS_AGGREGATOR (agg), -1);
1483
1484   GST_OBJECT_LOCK (agg);
1485   res = agg->latency;
1486   GST_OBJECT_UNLOCK (agg);
1487
1488   return res;
1489 }
1490
1491 static void
1492 gst_aggregator_set_property (GObject * object, guint prop_id,
1493     const GValue * value, GParamSpec * pspec)
1494 {
1495   GstAggregator *agg = GST_AGGREGATOR (object);
1496
1497   switch (prop_id) {
1498     case PROP_LATENCY:
1499       gst_aggregator_set_latency_property (agg, g_value_get_int64 (value));
1500       break;
1501     default:
1502       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
1503       break;
1504   }
1505 }
1506
1507 static void
1508 gst_aggregator_get_property (GObject * object, guint prop_id,
1509     GValue * value, GParamSpec * pspec)
1510 {
1511   GstAggregator *agg = GST_AGGREGATOR (object);
1512
1513   switch (prop_id) {
1514     case PROP_LATENCY:
1515       g_value_set_int64 (value, gst_aggregator_get_latency_property (agg));
1516       break;
1517     default:
1518       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
1519       break;
1520   }
1521 }
1522
1523 /* GObject vmethods implementations */
1524 static void
1525 gst_aggregator_class_init (GstAggregatorClass * klass)
1526 {
1527   GObjectClass *gobject_class = (GObjectClass *) klass;
1528   GstElementClass *gstelement_class = (GstElementClass *) klass;
1529
1530   aggregator_parent_class = g_type_class_peek_parent (klass);
1531   g_type_class_add_private (klass, sizeof (GstAggregatorPrivate));
1532
1533   GST_DEBUG_CATEGORY_INIT (aggregator_debug, "aggregator",
1534       GST_DEBUG_FG_MAGENTA, "GstAggregator");
1535
1536   klass->sinkpads_type = GST_TYPE_AGGREGATOR_PAD;
1537   klass->start = _start;
1538   klass->stop = _stop;
1539
1540   klass->sink_event = _sink_event;
1541   klass->sink_query = _sink_query;
1542
1543   klass->src_event = _src_event;
1544   klass->src_query = _src_query;
1545
1546   gstelement_class->request_new_pad = GST_DEBUG_FUNCPTR (_request_new_pad);
1547   gstelement_class->send_event = GST_DEBUG_FUNCPTR (_send_event);
1548   gstelement_class->release_pad = GST_DEBUG_FUNCPTR (_release_pad);
1549   gstelement_class->change_state = GST_DEBUG_FUNCPTR (_change_state);
1550
1551   gobject_class->set_property = gst_aggregator_set_property;
1552   gobject_class->get_property = gst_aggregator_get_property;
1553   gobject_class->finalize = gst_aggregator_finalize;
1554   gobject_class->dispose = gst_aggregator_dispose;
1555
1556   g_object_class_install_property (gobject_class, PROP_LATENCY,
1557       g_param_spec_int64 ("latency", "Buffer latency",
1558           "Additional latency in live mode to allow upstream "
1559           "to take longer to produce buffers for the current "
1560           "position", 0,
1561           (G_MAXLONG == G_MAXINT64) ? G_MAXINT64 : (G_MAXLONG * GST_SECOND - 1),
1562           DEFAULT_LATENCY, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
1563 }
1564
1565 static void
1566 gst_aggregator_init (GstAggregator * self, GstAggregatorClass * klass)
1567 {
1568   GstPadTemplate *pad_template;
1569   GstAggregatorPrivate *priv;
1570
1571   g_return_if_fail (klass->aggregate != NULL);
1572
1573   self->priv =
1574       G_TYPE_INSTANCE_GET_PRIVATE (self, GST_TYPE_AGGREGATOR,
1575       GstAggregatorPrivate);
1576
1577   priv = self->priv;
1578
1579   pad_template =
1580       gst_element_class_get_pad_template (GST_ELEMENT_CLASS (klass), "src");
1581   g_return_if_fail (pad_template != NULL);
1582
1583   priv->padcount = -1;
1584   priv->tags_changed = FALSE;
1585
1586   self->priv->latency_live = FALSE;
1587   self->priv->latency_min = self->priv->sub_latency_min = 0;
1588   self->priv->latency_max = self->priv->sub_latency_max = GST_CLOCK_TIME_NONE;
1589   _reset_flow_values (self);
1590
1591   self->srcpad = gst_pad_new_from_template (pad_template, "src");
1592
1593   gst_pad_set_event_function (self->srcpad,
1594       GST_DEBUG_FUNCPTR ((GstPadEventFunction) src_event_func));
1595   gst_pad_set_query_function (self->srcpad,
1596       GST_DEBUG_FUNCPTR ((GstPadQueryFunction) src_query_func));
1597   gst_pad_set_activatemode_function (self->srcpad,
1598       GST_DEBUG_FUNCPTR ((GstPadActivateModeFunction) src_activate_mode));
1599
1600   gst_element_add_pad (GST_ELEMENT (self), self->srcpad);
1601
1602   self->clock = gst_system_clock_obtain ();
1603   self->latency = 0;
1604
1605   g_mutex_init (&self->priv->setcaps_lock);
1606   g_mutex_init (&self->priv->src_lock);
1607   g_cond_init (&self->priv->src_cond);
1608 }
1609
1610 /* we can't use G_DEFINE_ABSTRACT_TYPE because we need the klass in the _init
1611  * method to get to the padtemplates */
1612 GType
1613 gst_aggregator_get_type (void)
1614 {
1615   static volatile gsize type = 0;
1616
1617   if (g_once_init_enter (&type)) {
1618     GType _type;
1619     static const GTypeInfo info = {
1620       sizeof (GstAggregatorClass),
1621       NULL,
1622       NULL,
1623       (GClassInitFunc) gst_aggregator_class_init,
1624       NULL,
1625       NULL,
1626       sizeof (GstAggregator),
1627       0,
1628       (GInstanceInitFunc) gst_aggregator_init,
1629     };
1630
1631     _type = g_type_register_static (GST_TYPE_ELEMENT,
1632         "GstAggregator", &info, G_TYPE_FLAG_ABSTRACT);
1633     g_once_init_leave (&type, _type);
1634   }
1635   return type;
1636 }
1637
1638 static GstFlowReturn
1639 _chain (GstPad * pad, GstObject * object, GstBuffer * buffer)
1640 {
1641   GstBuffer *actual_buf = buffer;
1642   GstAggregator *self = GST_AGGREGATOR (object);
1643   GstAggregatorPrivate *priv = self->priv;
1644   GstAggregatorPad *aggpad = GST_AGGREGATOR_PAD (pad);
1645   GstAggregatorClass *aggclass = GST_AGGREGATOR_GET_CLASS (object);
1646
1647   GST_DEBUG_OBJECT (aggpad, "Start chaining a buffer %" GST_PTR_FORMAT, buffer);
1648
1649   PAD_STREAM_LOCK (aggpad);
1650
1651   if (g_atomic_int_get (&aggpad->priv->flushing) == TRUE)
1652     goto flushing;
1653
1654   if (g_atomic_int_get (&aggpad->priv->pending_eos) == TRUE)
1655     goto eos;
1656
1657   PAD_LOCK_EVENT (aggpad);
1658
1659   while (aggpad->buffer && g_atomic_int_get (&aggpad->priv->flushing) == FALSE) {
1660     GST_DEBUG_OBJECT (aggpad, "Waiting for buffer to be consumed");
1661     PAD_WAIT_EVENT (aggpad);
1662   }
1663   PAD_UNLOCK_EVENT (aggpad);
1664
1665   if (g_atomic_int_get (&aggpad->priv->flushing) == TRUE)
1666     goto flushing;
1667
1668   if (aggclass->clip) {
1669     aggclass->clip (self, aggpad, buffer, &actual_buf);
1670   }
1671
1672   PAD_LOCK_EVENT (aggpad);
1673   if (aggpad->buffer)
1674     gst_buffer_unref (aggpad->buffer);
1675   aggpad->buffer = actual_buf;
1676   PAD_UNLOCK_EVENT (aggpad);
1677   PAD_STREAM_UNLOCK (aggpad);
1678
1679   if (gst_aggregator_iterate_sinkpads (self,
1680           (GstAggregatorPadForeachFunc) _check_all_pads_with_data_or_eos, NULL))
1681     SRC_STREAM_BROADCAST (self);
1682
1683   GST_DEBUG_OBJECT (aggpad, "Done chaining");
1684
1685   return priv->flow_return;
1686
1687 flushing:
1688   PAD_STREAM_UNLOCK (aggpad);
1689
1690   gst_buffer_unref (buffer);
1691   GST_DEBUG_OBJECT (aggpad, "We are flushing");
1692
1693   return GST_FLOW_FLUSHING;
1694
1695 eos:
1696   PAD_STREAM_UNLOCK (aggpad);
1697
1698   gst_buffer_unref (buffer);
1699   GST_DEBUG_OBJECT (pad, "We are EOS already...");
1700
1701   return GST_FLOW_EOS;
1702 }
1703
1704 static gboolean
1705 pad_query_func (GstPad * pad, GstObject * parent, GstQuery * query)
1706 {
1707   GstAggregatorPad *aggpad = GST_AGGREGATOR_PAD (pad);
1708   GstAggregatorClass *klass = GST_AGGREGATOR_GET_CLASS (parent);
1709
1710   if (GST_QUERY_IS_SERIALIZED (query)) {
1711     PAD_LOCK_EVENT (aggpad);
1712
1713     if (g_atomic_int_get (&aggpad->priv->flushing) == TRUE) {
1714       PAD_UNLOCK_EVENT (aggpad);
1715       goto flushing;
1716     }
1717
1718     while (aggpad->buffer
1719         && g_atomic_int_get (&aggpad->priv->flushing) == FALSE) {
1720       GST_DEBUG_OBJECT (aggpad, "Waiting for buffer to be consumed");
1721       PAD_WAIT_EVENT (aggpad);
1722     }
1723     PAD_UNLOCK_EVENT (aggpad);
1724
1725     if (g_atomic_int_get (&aggpad->priv->flushing) == TRUE)
1726       goto flushing;
1727   }
1728
1729   return klass->sink_query (GST_AGGREGATOR (parent),
1730       GST_AGGREGATOR_PAD (pad), query);
1731
1732 flushing:
1733   GST_DEBUG_OBJECT (aggpad, "Pad is flushing, dropping query");
1734   return FALSE;
1735 }
1736
1737 static gboolean
1738 pad_event_func (GstPad * pad, GstObject * parent, GstEvent * event)
1739 {
1740   GstAggregatorPad *aggpad = GST_AGGREGATOR_PAD (pad);
1741   GstAggregatorClass *klass = GST_AGGREGATOR_GET_CLASS (parent);
1742
1743   if (GST_EVENT_IS_SERIALIZED (event) && GST_EVENT_TYPE (event) != GST_EVENT_EOS
1744       && GST_EVENT_TYPE (event) != GST_EVENT_SEGMENT_DONE) {
1745     PAD_LOCK_EVENT (aggpad);
1746
1747     if (g_atomic_int_get (&aggpad->priv->flushing) == TRUE
1748         && GST_EVENT_TYPE (event) != GST_EVENT_FLUSH_STOP) {
1749       PAD_UNLOCK_EVENT (aggpad);
1750       goto flushing;
1751     }
1752
1753     while (aggpad->buffer
1754         && g_atomic_int_get (&aggpad->priv->flushing) == FALSE) {
1755       GST_DEBUG_OBJECT (aggpad, "Waiting for buffer to be consumed");
1756       PAD_WAIT_EVENT (aggpad);
1757     }
1758     PAD_UNLOCK_EVENT (aggpad);
1759
1760     if (g_atomic_int_get (&aggpad->priv->flushing) == TRUE
1761         && GST_EVENT_TYPE (event) != GST_EVENT_FLUSH_STOP)
1762       goto flushing;
1763   }
1764
1765   return klass->sink_event (GST_AGGREGATOR (parent),
1766       GST_AGGREGATOR_PAD (pad), event);
1767
1768 flushing:
1769   GST_DEBUG_OBJECT (aggpad, "Pad is flushing, dropping event");
1770   if (GST_EVENT_IS_STICKY (event))
1771     gst_pad_store_sticky_event (pad, event);
1772   gst_event_unref (event);
1773   return FALSE;
1774 }
1775
1776 static gboolean
1777 pad_activate_mode_func (GstPad * pad,
1778     GstObject * parent, GstPadMode mode, gboolean active)
1779 {
1780   GstAggregatorPad *aggpad = GST_AGGREGATOR_PAD (pad);
1781
1782   if (active == FALSE) {
1783     PAD_LOCK_EVENT (aggpad);
1784     g_atomic_int_set (&aggpad->priv->flushing, TRUE);
1785     gst_buffer_replace (&aggpad->buffer, NULL);
1786     PAD_BROADCAST_EVENT (aggpad);
1787     PAD_UNLOCK_EVENT (aggpad);
1788   } else {
1789     g_atomic_int_set (&aggpad->priv->flushing, FALSE);
1790     PAD_LOCK_EVENT (aggpad);
1791     PAD_BROADCAST_EVENT (aggpad);
1792     PAD_UNLOCK_EVENT (aggpad);
1793   }
1794
1795   return TRUE;
1796 }
1797
1798 /***********************************
1799  * GstAggregatorPad implementation  *
1800  ************************************/
1801 static GstPadClass *aggregator_pad_parent_class = NULL;
1802 G_DEFINE_TYPE (GstAggregatorPad, gst_aggregator_pad, GST_TYPE_PAD);
1803
1804 static void
1805 _pad_constructed (GObject * object)
1806 {
1807   GstPad *pad = GST_PAD (object);
1808
1809   gst_pad_set_chain_function (pad,
1810       GST_DEBUG_FUNCPTR ((GstPadChainFunction) _chain));
1811   gst_pad_set_event_function (pad,
1812       GST_DEBUG_FUNCPTR ((GstPadEventFunction) pad_event_func));
1813   gst_pad_set_query_function (pad,
1814       GST_DEBUG_FUNCPTR ((GstPadQueryFunction) pad_query_func));
1815   gst_pad_set_activatemode_function (pad,
1816       GST_DEBUG_FUNCPTR ((GstPadActivateModeFunction) pad_activate_mode_func));
1817 }
1818
1819 static void
1820 gst_aggregator_pad_finalize (GObject * object)
1821 {
1822   GstAggregatorPad *pad = (GstAggregatorPad *) object;
1823
1824   g_mutex_clear (&pad->priv->event_lock);
1825   g_cond_clear (&pad->priv->event_cond);
1826   g_mutex_clear (&pad->priv->stream_lock);
1827
1828   G_OBJECT_CLASS (aggregator_pad_parent_class)->finalize (object);
1829 }
1830
1831 static void
1832 gst_aggregator_pad_dispose (GObject * object)
1833 {
1834   GstAggregatorPad *pad = (GstAggregatorPad *) object;
1835   GstBuffer *buf;
1836
1837   buf = gst_aggregator_pad_steal_buffer (pad);
1838   if (buf)
1839     gst_buffer_unref (buf);
1840
1841   G_OBJECT_CLASS (aggregator_pad_parent_class)->dispose (object);
1842 }
1843
1844 static void
1845 gst_aggregator_pad_class_init (GstAggregatorPadClass * klass)
1846 {
1847   GObjectClass *gobject_class = (GObjectClass *) klass;
1848
1849   aggregator_pad_parent_class = g_type_class_peek_parent (klass);
1850   g_type_class_add_private (klass, sizeof (GstAggregatorPadPrivate));
1851
1852   gobject_class->constructed = GST_DEBUG_FUNCPTR (_pad_constructed);
1853   gobject_class->finalize = GST_DEBUG_FUNCPTR (gst_aggregator_pad_finalize);
1854   gobject_class->dispose = GST_DEBUG_FUNCPTR (gst_aggregator_pad_dispose);
1855 }
1856
1857 static void
1858 gst_aggregator_pad_init (GstAggregatorPad * pad)
1859 {
1860   pad->priv =
1861       G_TYPE_INSTANCE_GET_PRIVATE (pad, GST_TYPE_AGGREGATOR_PAD,
1862       GstAggregatorPadPrivate);
1863
1864   pad->buffer = NULL;
1865   g_mutex_init (&pad->priv->event_lock);
1866   g_cond_init (&pad->priv->event_cond);
1867
1868   g_mutex_init (&pad->priv->stream_lock);
1869 }
1870
1871 /**
1872  * gst_aggregator_pad_steal_buffer:
1873  * @pad: the pad to get buffer from
1874  *
1875  * Steal the ref to the buffer currently queued in @pad.
1876  *
1877  * Returns: (transfer full): The buffer in @pad or NULL if no buffer was
1878  *   queued. You should unref the buffer after usage.
1879  */
1880 GstBuffer *
1881 gst_aggregator_pad_steal_buffer (GstAggregatorPad * pad)
1882 {
1883   GstBuffer *buffer = NULL;
1884
1885   PAD_LOCK_EVENT (pad);
1886   if (pad->buffer) {
1887     GST_TRACE_OBJECT (pad, "Consuming buffer");
1888     buffer = pad->buffer;
1889     pad->buffer = NULL;
1890     if (pad->priv->pending_eos) {
1891       pad->priv->pending_eos = FALSE;
1892       pad->eos = TRUE;
1893     }
1894     PAD_BROADCAST_EVENT (pad);
1895     GST_DEBUG_OBJECT (pad, "Consumed: %" GST_PTR_FORMAT, buffer);
1896   }
1897   PAD_UNLOCK_EVENT (pad);
1898
1899   return buffer;
1900 }
1901
1902 /**
1903  * gst_aggregator_pad_get_buffer:
1904  * @pad: the pad to get buffer from
1905  *
1906  * Returns: (transfer full): A reference to the buffer in @pad or
1907  * NULL if no buffer was queued. You should unref the buffer after
1908  * usage.
1909  */
1910 GstBuffer *
1911 gst_aggregator_pad_get_buffer (GstAggregatorPad * pad)
1912 {
1913   GstBuffer *buffer = NULL;
1914
1915   PAD_LOCK_EVENT (pad);
1916   if (pad->buffer)
1917     buffer = gst_buffer_ref (pad->buffer);
1918   PAD_UNLOCK_EVENT (pad);
1919
1920   return buffer;
1921 }
1922
1923 /**
1924  * gst_aggregator_merge_tags:
1925  * @self: a #GstAggregator
1926  * @tags: a #GstTagList to merge
1927  * @mode: the #GstTagMergeMode to use
1928  *
1929  * Adds tags to so-called pending tags, which will be processed
1930  * before pushing out data downstream.
1931  *
1932  * Note that this is provided for convenience, and the subclass is
1933  * not required to use this and can still do tag handling on its own.
1934  *
1935  * MT safe.
1936  */
1937 void
1938 gst_aggregator_merge_tags (GstAggregator * self,
1939     const GstTagList * tags, GstTagMergeMode mode)
1940 {
1941   GstTagList *otags;
1942
1943   g_return_if_fail (GST_IS_AGGREGATOR (self));
1944   g_return_if_fail (tags == NULL || GST_IS_TAG_LIST (tags));
1945
1946   /* FIXME Check if we can use OBJECT lock here! */
1947   GST_OBJECT_LOCK (self);
1948   if (tags)
1949     GST_DEBUG_OBJECT (self, "merging tags %" GST_PTR_FORMAT, tags);
1950   otags = self->priv->tags;
1951   self->priv->tags = gst_tag_list_merge (self->priv->tags, tags, mode);
1952   if (otags)
1953     gst_tag_list_unref (otags);
1954   self->priv->tags_changed = TRUE;
1955   GST_OBJECT_UNLOCK (self);
1956 }
1957
1958 /**
1959  * gst_aggregator_set_latency:
1960  * @self: a #GstAggregator
1961  * @min_latency: minimum latency
1962  * @max_latency: maximum latency
1963  *
1964  * Lets #GstAggregator sub-classes tell the baseclass what their internal
1965  * latency is. Will also post a LATENCY message on the bus so the pipeline
1966  * can reconfigure its global latency.
1967  */
1968 void
1969 gst_aggregator_set_latency (GstAggregator * self,
1970     GstClockTime min_latency, GstClockTime max_latency)
1971 {
1972   g_return_if_fail (GST_IS_AGGREGATOR (self));
1973   g_return_if_fail (max_latency >= min_latency);
1974
1975   GST_OBJECT_LOCK (self);
1976   self->priv->sub_latency_min = min_latency;
1977   self->priv->sub_latency_max = max_latency;
1978   GST_OBJECT_UNLOCK (self);
1979
1980   gst_element_post_message (GST_ELEMENT_CAST (self),
1981       gst_message_new_latency (GST_OBJECT_CAST (self)));
1982 }