elements: use new gst_element_class_add_static_pad_template()
[platform/upstream/gstreamer.git] / plugins / elements / gstconcat.c
1 /* GStreamer concat element
2  *
3  *  Copyright (c) 2014 Sebastian Dröge <sebastian@centricular.com>
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU Library General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
18  * Boston, MA 02110-1301, USA.
19  *
20  */
21 /**
22  * SECTION:element-concat
23  * @see_also: #GstFunnel
24  *
25  * Concatenates streams together to one continous stream.
26  *
27  * All streams but the current one are blocked until the current one
28  * finished with %GST_EVENT_EOS. Then the next stream is enabled, while
29  * keeping the running time continous for %GST_FORMAT_TIME segments or
30  * keeping the segment continous for %GST_FORMAT_BYTES segments.
31  *
32  * Streams are switched in the order in which the sinkpads were requested.
33  *
34  * By default, the stream segment's base values are adjusted to ensure
35  * the segment transitions between streams are continuous. In some cases,
36  * it may be desirable to turn off these adjustments (for example, because
37  * another downstream element like a streamsynchronizer adjusts the base
38  * values on its own). The adjust-value property can be used for this purpose.
39  *
40  * <refsect2>
41  * <title>Example launch line</title>
42  * |[
43  * gst-launch-1.0 concat name=c ! xvimagesink  videotestsrc num-buffers=100 ! c.   videotestsrc num-buffers=100 pattern=ball ! c.
44  * ]| Plays two video streams one after another.
45  * </refsect2>
46  */
47
48 #ifdef HAVE_CONFIG_H
49 #include "config.h"
50 #endif
51
52 #include "gstconcat.h"
53
54 GST_DEBUG_CATEGORY_STATIC (gst_concat_debug);
55 #define GST_CAT_DEFAULT gst_concat_debug
56
57 G_GNUC_INTERNAL GType gst_concat_pad_get_type (void);
58
59 #define GST_TYPE_CONCAT_PAD (gst_concat_pad_get_type())
60 #define GST_CONCAT_PAD(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_CONCAT_PAD, GstConcatPad))
61 #define GST_CONCAT_PAD_CAST(obj) ((GstConcatPad *)(obj))
62 #define GST_CONCAT_PAD_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_CONCAT_PAD, GstConcatPadClass))
63 #define GST_IS_CONCAT_PAD(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_CONCAT_PAD))
64 #define GST_IS_CONCAT_PAD_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_CONCAT_PAD))
65
66 typedef struct _GstConcatPad GstConcatPad;
67 typedef struct _GstConcatPadClass GstConcatPadClass;
68
69 struct _GstConcatPad
70 {
71   GstPad parent;
72
73   GstSegment segment;
74
75   /* Protected by the concat lock */
76   gboolean flushing;
77 };
78
79 struct _GstConcatPadClass
80 {
81   GstPadClass parent;
82 };
83
84 G_DEFINE_TYPE (GstConcatPad, gst_concat_pad, GST_TYPE_PAD);
85
86 static void
87 gst_concat_pad_class_init (GstConcatPadClass * klass)
88 {
89 }
90
91 static void
92 gst_concat_pad_init (GstConcatPad * self)
93 {
94   gst_segment_init (&self->segment, GST_FORMAT_UNDEFINED);
95   self->flushing = FALSE;
96 }
97
98 static GstStaticPadTemplate sink_template = GST_STATIC_PAD_TEMPLATE ("sink_%u",
99     GST_PAD_SINK,
100     GST_PAD_REQUEST,
101     GST_STATIC_CAPS_ANY);
102
103 static GstStaticPadTemplate src_template = GST_STATIC_PAD_TEMPLATE ("src",
104     GST_PAD_SRC,
105     GST_PAD_ALWAYS,
106     GST_STATIC_CAPS_ANY);
107
108 enum
109 {
110   PROP_0,
111   PROP_ACTIVE_PAD,
112   PROP_ADJUST_BASE
113 };
114
115 #define DEFAULT_ADJUST_BASE TRUE
116
117 #define _do_init \
118   GST_DEBUG_CATEGORY_INIT (gst_concat_debug, "concat", 0, "concat element");
119 #define gst_concat_parent_class parent_class
120 G_DEFINE_TYPE_WITH_CODE (GstConcat, gst_concat, GST_TYPE_ELEMENT, _do_init);
121
122 static void gst_concat_dispose (GObject * object);
123 static void gst_concat_finalize (GObject * object);
124 static void gst_concat_get_property (GObject * object,
125     guint prop_id, GValue * value, GParamSpec * pspec);
126 static void gst_concat_set_property (GObject * object,
127     guint prop_id, const GValue * value, GParamSpec * pspec);
128
129 static GstStateChangeReturn gst_concat_change_state (GstElement * element,
130     GstStateChange transition);
131 static GstPad *gst_concat_request_new_pad (GstElement * element,
132     GstPadTemplate * templ, const gchar * name, const GstCaps * caps);
133 static void gst_concat_release_pad (GstElement * element, GstPad * pad);
134
135 static GstFlowReturn gst_concat_sink_chain (GstPad * pad, GstObject * parent,
136     GstBuffer * buffer);
137 static gboolean gst_concat_sink_event (GstPad * pad, GstObject * parent,
138     GstEvent * event);
139 static gboolean gst_concat_sink_query (GstPad * pad, GstObject * parent,
140     GstQuery * query);
141
142 static gboolean gst_concat_src_event (GstPad * pad, GstObject * parent,
143     GstEvent * event);
144 static gboolean gst_concat_src_query (GstPad * pad, GstObject * parent,
145     GstQuery * query);
146
147 static gboolean gst_concat_switch_pad (GstConcat * self);
148
149 static void gst_concat_notify_active_pad (GstConcat * self);
150
151 static GParamSpec *pspec_active_pad = NULL;
152
153 static void
154 gst_concat_class_init (GstConcatClass * klass)
155 {
156   GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
157   GstElementClass *gstelement_class = GST_ELEMENT_CLASS (klass);
158
159   gobject_class->dispose = GST_DEBUG_FUNCPTR (gst_concat_dispose);
160   gobject_class->finalize = GST_DEBUG_FUNCPTR (gst_concat_finalize);
161
162   gobject_class->get_property = gst_concat_get_property;
163   gobject_class->set_property = gst_concat_set_property;
164
165   pspec_active_pad = g_param_spec_object ("active-pad", "Active pad",
166       "Currently active src pad", GST_TYPE_PAD, G_PARAM_READABLE |
167       G_PARAM_STATIC_STRINGS);
168   g_object_class_install_property (gobject_class, PROP_ACTIVE_PAD,
169       pspec_active_pad);
170   g_object_class_install_property (gobject_class, PROP_ADJUST_BASE,
171       g_param_spec_boolean ("adjust-base", "Adjust segment base",
172           "Adjust the base value of segments to ensure they are adjacent",
173           DEFAULT_ADJUST_BASE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
174
175   gst_element_class_set_static_metadata (gstelement_class,
176       "Concat", "Generic", "Concatenate multiple streams",
177       "Sebastian Dröge <sebastian@centricular.com>");
178
179   gst_element_class_add_static_pad_template (gstelement_class, &sink_template);
180   gst_element_class_add_static_pad_template (gstelement_class, &src_template);
181
182   gstelement_class->request_new_pad =
183       GST_DEBUG_FUNCPTR (gst_concat_request_new_pad);
184   gstelement_class->release_pad = GST_DEBUG_FUNCPTR (gst_concat_release_pad);
185   gstelement_class->change_state = GST_DEBUG_FUNCPTR (gst_concat_change_state);
186 }
187
188 static void
189 gst_concat_init (GstConcat * self)
190 {
191   g_mutex_init (&self->lock);
192   g_cond_init (&self->cond);
193
194   self->srcpad = gst_pad_new_from_static_template (&src_template, "src");
195   gst_pad_set_event_function (self->srcpad,
196       GST_DEBUG_FUNCPTR (gst_concat_src_event));
197   gst_pad_set_query_function (self->srcpad,
198       GST_DEBUG_FUNCPTR (gst_concat_src_query));
199   gst_pad_use_fixed_caps (self->srcpad);
200
201   gst_element_add_pad (GST_ELEMENT (self), self->srcpad);
202
203   self->adjust_base = DEFAULT_ADJUST_BASE;
204 }
205
206 static void
207 gst_concat_dispose (GObject * object)
208 {
209   GstConcat *self = GST_CONCAT (object);
210   GList *item;
211
212   gst_object_replace ((GstObject **) & self->current_sinkpad, NULL);
213
214 restart:
215   for (item = GST_ELEMENT_PADS (object); item; item = g_list_next (item)) {
216     GstPad *pad = GST_PAD (item->data);
217
218     if (GST_PAD_IS_SINK (pad)) {
219       gst_element_release_request_pad (GST_ELEMENT (object), pad);
220       goto restart;
221     }
222   }
223
224   G_OBJECT_CLASS (parent_class)->dispose (object);
225 }
226
227 static void
228 gst_concat_finalize (GObject * object)
229 {
230   GstConcat *self = GST_CONCAT (object);
231
232   g_mutex_clear (&self->lock);
233   g_cond_clear (&self->cond);
234
235   G_OBJECT_CLASS (parent_class)->finalize (object);
236 }
237
238 static void
239 gst_concat_get_property (GObject * object, guint prop_id, GValue * value,
240     GParamSpec * pspec)
241 {
242   GstConcat *self = GST_CONCAT (object);
243
244   switch (prop_id) {
245     case PROP_ACTIVE_PAD:{
246       g_mutex_lock (&self->lock);
247       g_value_set_object (value, self->current_sinkpad);
248       g_mutex_unlock (&self->lock);
249       break;
250     }
251     case PROP_ADJUST_BASE:{
252       g_mutex_lock (&self->lock);
253       g_value_set_boolean (value, self->adjust_base);
254       g_mutex_unlock (&self->lock);
255       break;
256     }
257     default:
258       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
259       break;
260   }
261 }
262
263 static void
264 gst_concat_set_property (GObject * object, guint prop_id, const GValue * value,
265     GParamSpec * pspec)
266 {
267   GstConcat *self = GST_CONCAT (object);
268
269   switch (prop_id) {
270     case PROP_ADJUST_BASE:{
271       g_mutex_lock (&self->lock);
272       self->adjust_base = g_value_get_boolean (value);
273       g_mutex_unlock (&self->lock);
274       break;
275     }
276     default:
277       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
278       break;
279   }
280 }
281
282 static GstPad *
283 gst_concat_request_new_pad (GstElement * element, GstPadTemplate * templ,
284     const gchar * name, const GstCaps * caps)
285 {
286   GstConcat *self = GST_CONCAT (element);
287   GstPad *sinkpad;
288   gchar *pad_name;
289   gboolean do_notify = FALSE;
290
291   GST_DEBUG_OBJECT (element, "requesting pad");
292
293   g_mutex_lock (&self->lock);
294   pad_name = g_strdup_printf ("sink_%u", self->pad_count);
295   self->pad_count++;
296   g_mutex_unlock (&self->lock);
297
298   sinkpad = GST_PAD_CAST (g_object_new (GST_TYPE_CONCAT_PAD,
299           "name", pad_name, "direction", templ->direction, "template", templ,
300           NULL));
301   g_free (pad_name);
302
303   gst_pad_set_chain_function (sinkpad,
304       GST_DEBUG_FUNCPTR (gst_concat_sink_chain));
305   gst_pad_set_event_function (sinkpad,
306       GST_DEBUG_FUNCPTR (gst_concat_sink_event));
307   gst_pad_set_query_function (sinkpad,
308       GST_DEBUG_FUNCPTR (gst_concat_sink_query));
309   GST_OBJECT_FLAG_SET (sinkpad, GST_PAD_FLAG_PROXY_CAPS);
310   GST_OBJECT_FLAG_SET (sinkpad, GST_PAD_FLAG_PROXY_ALLOCATION);
311
312   gst_pad_set_active (sinkpad, TRUE);
313
314   g_mutex_lock (&self->lock);
315   self->sinkpads = g_list_prepend (self->sinkpads, gst_object_ref (sinkpad));
316   if (!self->current_sinkpad) {
317     do_notify = TRUE;
318     self->current_sinkpad = gst_object_ref (sinkpad);
319   }
320   g_mutex_unlock (&self->lock);
321
322   gst_element_add_pad (element, sinkpad);
323
324   if (do_notify)
325     gst_concat_notify_active_pad (self);
326
327   return sinkpad;
328 }
329
330 static void
331 gst_concat_release_pad (GstElement * element, GstPad * pad)
332 {
333   GstConcat *self = GST_CONCAT (element);
334   GstConcatPad *spad = GST_CONCAT_PAD_CAST (pad);
335   GList *l;
336   gboolean current_pad_removed = FALSE;
337   gboolean eos = FALSE;
338   gboolean do_notify = FALSE;
339
340   GST_DEBUG_OBJECT (self, "releasing pad");
341
342   g_mutex_lock (&self->lock);
343   spad->flushing = TRUE;
344   g_cond_broadcast (&self->cond);
345   g_mutex_unlock (&self->lock);
346
347   gst_pad_set_active (pad, FALSE);
348
349   /* Now the pad is definitely not running anymore */
350
351   g_mutex_lock (&self->lock);
352   if (self->current_sinkpad == GST_PAD_CAST (spad)) {
353     eos = !gst_concat_switch_pad (self);
354     current_pad_removed = TRUE;
355     do_notify = TRUE;
356   }
357
358   for (l = self->sinkpads; l; l = l->next) {
359     if ((gpointer) spad == l->data) {
360       gst_object_unref (spad);
361       self->sinkpads = g_list_delete_link (self->sinkpads, l);
362       break;
363     }
364   }
365   g_mutex_unlock (&self->lock);
366
367   gst_element_remove_pad (GST_ELEMENT_CAST (self), pad);
368
369   if (do_notify)
370     gst_concat_notify_active_pad (self);
371
372   if (GST_STATE (self) > GST_STATE_READY) {
373     if (current_pad_removed && !eos)
374       gst_element_post_message (GST_ELEMENT_CAST (self),
375           gst_message_new_duration_changed (GST_OBJECT_CAST (self)));
376
377     /* FIXME: Sending EOS from application thread */
378     if (eos)
379       gst_pad_push_event (self->srcpad, gst_event_new_eos ());
380   }
381 }
382
383 /* Returns FALSE if flushing
384  * Must be called from the pad's streaming thread
385  */
386 static gboolean
387 gst_concat_pad_wait (GstConcatPad * spad, GstConcat * self)
388 {
389   g_mutex_lock (&self->lock);
390   if (spad->flushing) {
391     g_mutex_unlock (&self->lock);
392     GST_DEBUG_OBJECT (spad, "Flushing");
393     return FALSE;
394   }
395
396   while (spad != GST_CONCAT_PAD_CAST (self->current_sinkpad)) {
397     GST_TRACE_OBJECT (spad, "Not the current sinkpad - waiting");
398     g_cond_wait (&self->cond, &self->lock);
399     if (spad->flushing) {
400       g_mutex_unlock (&self->lock);
401       GST_DEBUG_OBJECT (spad, "Flushing");
402       return FALSE;
403     }
404   }
405   /* This pad can only become not the current sinkpad from
406    * a) This streaming thread (we hold the stream lock)
407    * b) Releasing the pad (takes the stream lock, see above)
408    *
409    * Unlocking here is thus safe and we can safely push
410    * serialized data to our srcpad
411    */
412   GST_DEBUG_OBJECT (spad, "Now the current sinkpad");
413   g_mutex_unlock (&self->lock);
414
415   return TRUE;
416 }
417
418 static GstFlowReturn
419 gst_concat_sink_chain (GstPad * pad, GstObject * parent, GstBuffer * buffer)
420 {
421   GstFlowReturn ret;
422   GstConcat *self = GST_CONCAT (parent);
423   GstConcatPad *spad = GST_CONCAT_PAD (pad);
424
425   GST_LOG_OBJECT (pad, "received buffer %p", buffer);
426
427   if (!gst_concat_pad_wait (spad, self))
428     return GST_FLOW_FLUSHING;
429
430   if (self->last_stop == GST_CLOCK_TIME_NONE)
431     self->last_stop = spad->segment.start;
432
433   if (self->format == GST_FORMAT_TIME) {
434     GstClockTime start_time = GST_BUFFER_TIMESTAMP (buffer);
435     GstClockTime end_time = GST_CLOCK_TIME_NONE;
436
437     if (start_time != GST_CLOCK_TIME_NONE)
438       end_time = start_time;
439     if (GST_BUFFER_DURATION_IS_VALID (buffer))
440       end_time += GST_BUFFER_DURATION (buffer);
441
442     if (end_time != GST_CLOCK_TIME_NONE && end_time > self->last_stop)
443       self->last_stop = end_time;
444   } else {
445     self->last_stop += gst_buffer_get_size (buffer);
446   }
447
448   ret = gst_pad_push (self->srcpad, buffer);
449
450   GST_LOG_OBJECT (pad, "handled buffer %s", gst_flow_get_name (ret));
451
452   return ret;
453 }
454
455 /* Returns FALSE if no further pad, must be called with concat lock */
456 static gboolean
457 gst_concat_switch_pad (GstConcat * self)
458 {
459   GList *l;
460   gboolean next;
461   GstSegment segment;
462   gint64 last_stop;
463
464   segment = GST_CONCAT_PAD (self->current_sinkpad)->segment;
465
466   last_stop = self->last_stop;
467   if (last_stop == GST_CLOCK_TIME_NONE)
468     last_stop = segment.stop;
469   if (last_stop == GST_CLOCK_TIME_NONE)
470     last_stop = segment.start;
471   g_assert (last_stop != GST_CLOCK_TIME_NONE);
472
473   if (last_stop > segment.stop)
474     last_stop = segment.stop;
475
476   if (segment.format == GST_FORMAT_TIME)
477     last_stop =
478         gst_segment_to_running_time (&segment, segment.format, last_stop);
479   else
480     last_stop += segment.start;
481
482   self->current_start_offset += last_stop;
483
484   for (l = self->sinkpads; l; l = l->next) {
485     if ((gpointer) self->current_sinkpad == l->data) {
486       l = l->prev;
487       GST_DEBUG_OBJECT (self,
488           "Switching from pad %" GST_PTR_FORMAT " to %" GST_PTR_FORMAT,
489           self->current_sinkpad, l ? l->data : NULL);
490       gst_object_unref (self->current_sinkpad);
491       self->current_sinkpad = l ? gst_object_ref (l->data) : NULL;
492       g_cond_broadcast (&self->cond);
493       break;
494     }
495   }
496
497   next = self->current_sinkpad != NULL;
498
499   self->last_stop = GST_CLOCK_TIME_NONE;
500
501   return next;
502 }
503
504 static void
505 gst_concat_notify_active_pad (GstConcat * self)
506 {
507   g_object_notify_by_pspec ((GObject *) self, pspec_active_pad);
508 }
509
510 static gboolean
511 gst_concat_sink_event (GstPad * pad, GstObject * parent, GstEvent * event)
512 {
513   GstConcat *self = GST_CONCAT (parent);
514   GstConcatPad *spad = GST_CONCAT_PAD_CAST (pad);
515   gboolean ret = TRUE;
516
517   GST_LOG_OBJECT (pad, "received event %" GST_PTR_FORMAT, event);
518
519   switch (GST_EVENT_TYPE (event)) {
520     case GST_EVENT_STREAM_START:{
521       if (!gst_concat_pad_wait (spad, self)) {
522         ret = FALSE;
523         gst_event_unref (event);
524       } else {
525         ret = gst_pad_event_default (pad, parent, event);
526       }
527       break;
528     }
529     case GST_EVENT_SEGMENT:{
530       gboolean adjust_base;
531
532       /* Drop segment event, we create our own one */
533       gst_event_copy_segment (event, &spad->segment);
534       gst_event_unref (event);
535
536       g_mutex_lock (&self->lock);
537       adjust_base = self->adjust_base;
538       if (self->format == GST_FORMAT_UNDEFINED) {
539         if (spad->segment.format != GST_FORMAT_TIME
540             && spad->segment.format != GST_FORMAT_BYTES) {
541           g_mutex_unlock (&self->lock);
542           GST_ELEMENT_ERROR (self, CORE, FAILED, (NULL),
543               ("Can only operate in TIME or BYTES format"));
544           ret = FALSE;
545           break;
546         }
547         self->format = spad->segment.format;
548         GST_DEBUG_OBJECT (self, "Operating in %s format",
549             gst_format_get_name (self->format));
550         g_mutex_unlock (&self->lock);
551       } else if (self->format != spad->segment.format) {
552         g_mutex_unlock (&self->lock);
553         GST_ELEMENT_ERROR (self, CORE, FAILED, (NULL),
554             ("Operating in %s format but new pad has %s",
555                 gst_format_get_name (self->format),
556                 gst_format_get_name (spad->segment.format)));
557         ret = FALSE;
558       } else {
559         g_mutex_unlock (&self->lock);
560       }
561
562       if (!gst_concat_pad_wait (spad, self)) {
563         ret = FALSE;
564       } else {
565         GstSegment segment = spad->segment;
566
567         if (adjust_base) {
568           /* We know no duration */
569           segment.duration = -1;
570
571           /* Update segment values to be continous with last stream */
572           if (self->format == GST_FORMAT_TIME) {
573             segment.base += self->current_start_offset;
574           } else {
575             /* Shift start/stop byte position */
576             segment.start += self->current_start_offset;
577             if (segment.stop != -1)
578               segment.stop += self->current_start_offset;
579           }
580         }
581
582         gst_pad_push_event (self->srcpad, gst_event_new_segment (&segment));
583       }
584       break;
585     }
586     case GST_EVENT_EOS:{
587       gst_event_unref (event);
588
589       if (!gst_concat_pad_wait (spad, self)) {
590         ret = FALSE;
591       } else {
592         gboolean next;
593
594         g_mutex_lock (&self->lock);
595         next = gst_concat_switch_pad (self);
596         g_mutex_unlock (&self->lock);
597         ret = TRUE;
598
599         gst_concat_notify_active_pad (self);
600
601         if (!next) {
602           gst_pad_push_event (self->srcpad, gst_event_new_eos ());
603         } else {
604           gst_element_post_message (GST_ELEMENT_CAST (self),
605               gst_message_new_duration_changed (GST_OBJECT_CAST (self)));
606         }
607       }
608       break;
609     }
610     case GST_EVENT_FLUSH_START:{
611       gboolean forward;
612
613       g_mutex_lock (&self->lock);
614       spad->flushing = TRUE;
615       g_cond_broadcast (&self->cond);
616       forward = (self->current_sinkpad == GST_PAD_CAST (spad));
617       g_mutex_unlock (&self->lock);
618
619       if (forward)
620         ret = gst_pad_event_default (pad, parent, event);
621       else
622         gst_event_unref (event);
623       break;
624     }
625     case GST_EVENT_FLUSH_STOP:{
626       gboolean forward;
627
628       gst_segment_init (&spad->segment, GST_FORMAT_UNDEFINED);
629       spad->flushing = FALSE;
630
631       g_mutex_lock (&self->lock);
632       forward = (self->current_sinkpad == GST_PAD_CAST (spad));
633       g_mutex_unlock (&self->lock);
634
635       if (forward) {
636         gboolean reset_time;
637
638         gst_event_parse_flush_stop (event, &reset_time);
639         if (reset_time) {
640           GST_DEBUG_OBJECT (self,
641               "resetting start offset to 0 after flushing with reset_time = TRUE");
642           self->current_start_offset = 0;
643         }
644         ret = gst_pad_event_default (pad, parent, event);
645       } else {
646         gst_event_unref (event);
647       }
648       break;
649     }
650     default:{
651       /* Wait for other serialized events before forwarding */
652       if (GST_EVENT_IS_SERIALIZED (event) && !gst_concat_pad_wait (spad, self)) {
653         gst_event_unref (event);
654         ret = FALSE;
655       } else {
656         ret = gst_pad_event_default (pad, parent, event);
657       }
658       break;
659     }
660   }
661
662   return ret;
663 }
664
665 static gboolean
666 gst_concat_sink_query (GstPad * pad, GstObject * parent, GstQuery * query)
667 {
668   GstConcat *self = GST_CONCAT (parent);
669   GstConcatPad *spad = GST_CONCAT_PAD_CAST (pad);
670   gboolean ret = TRUE;
671
672   GST_LOG_OBJECT (pad, "received query %" GST_PTR_FORMAT, query);
673
674   switch (GST_QUERY_TYPE (query)) {
675     default:
676       /* Wait for other serialized queries before forwarding */
677       if (GST_QUERY_IS_SERIALIZED (query) && !gst_concat_pad_wait (spad, self)) {
678         ret = FALSE;
679       } else {
680         ret = gst_pad_query_default (pad, parent, query);
681       }
682       break;
683   }
684
685   return ret;
686 }
687
688 static gboolean
689 gst_concat_src_event (GstPad * pad, GstObject * parent, GstEvent * event)
690 {
691   GstConcat *self = GST_CONCAT (parent);
692   gboolean ret = TRUE;
693
694   GST_LOG_OBJECT (pad, "received event %" GST_PTR_FORMAT, event);
695
696   switch (GST_EVENT_TYPE (event)) {
697     case GST_EVENT_SEEK:{
698       GstPad *sinkpad = NULL;
699
700       g_mutex_lock (&self->lock);
701       if ((sinkpad = self->current_sinkpad))
702         gst_object_ref (sinkpad);
703       g_mutex_unlock (&self->lock);
704       if (sinkpad) {
705         ret = gst_pad_push_event (sinkpad, event);
706         gst_object_unref (sinkpad);
707       } else {
708         gst_event_unref (event);
709         ret = FALSE;
710       }
711       break;
712     }
713     case GST_EVENT_QOS:{
714       GstQOSType type;
715       GstClockTimeDiff diff;
716       GstClockTime timestamp;
717       gdouble proportion;
718
719       gst_event_parse_qos (event, &type, &proportion, &diff, &timestamp);
720       gst_event_unref (event);
721
722       if (timestamp != GST_CLOCK_TIME_NONE
723           && timestamp > self->current_start_offset) {
724         timestamp -= self->current_start_offset;
725         event = gst_event_new_qos (type, proportion, diff, timestamp);
726         ret = gst_pad_push_event (self->current_sinkpad, event);
727       } else {
728         ret = FALSE;
729       }
730       break;
731     }
732     case GST_EVENT_FLUSH_STOP:{
733       gboolean reset_time;
734
735       gst_event_parse_flush_stop (event, &reset_time);
736       if (reset_time) {
737         GST_DEBUG_OBJECT (self,
738             "resetting start offset to 0 after flushing with reset_time = TRUE");
739         self->current_start_offset = 0;
740       }
741
742       ret = gst_pad_event_default (pad, parent, event);
743       break;
744     }
745     default:
746       ret = gst_pad_event_default (pad, parent, event);
747       break;
748   }
749
750   return ret;
751 }
752
753 static gboolean
754 gst_concat_src_query (GstPad * pad, GstObject * parent, GstQuery * query)
755 {
756   gboolean ret = TRUE;
757
758   GST_LOG_OBJECT (pad, "received query %" GST_PTR_FORMAT, query);
759
760   switch (GST_QUERY_TYPE (query)) {
761     default:
762       ret = gst_pad_query_default (pad, parent, query);
763       break;
764   }
765
766   return ret;
767 }
768
769 static void
770 reset_pad (const GValue * data, gpointer user_data)
771 {
772   GstPad *pad = g_value_get_object (data);
773   GstConcatPad *spad = GST_CONCAT_PAD_CAST (pad);
774
775   gst_segment_init (&spad->segment, GST_FORMAT_UNDEFINED);
776   spad->flushing = FALSE;
777 }
778
779 static void
780 unblock_pad (const GValue * data, gpointer user_data)
781 {
782   GstPad *pad = g_value_get_object (data);
783   GstConcatPad *spad = GST_CONCAT_PAD_CAST (pad);
784
785   spad->flushing = TRUE;
786 }
787
788 static GstStateChangeReturn
789 gst_concat_change_state (GstElement * element, GstStateChange transition)
790 {
791   GstConcat *self = GST_CONCAT (element);
792   GstStateChangeReturn ret;
793
794   switch (transition) {
795     case GST_STATE_CHANGE_READY_TO_PAUSED:{
796       GstIterator *iter = gst_element_iterate_sink_pads (element);
797       GstIteratorResult res;
798
799       self->format = GST_FORMAT_UNDEFINED;
800       self->current_start_offset = 0;
801       self->last_stop = GST_CLOCK_TIME_NONE;
802
803       do {
804         res = gst_iterator_foreach (iter, reset_pad, NULL);
805       } while (res == GST_ITERATOR_RESYNC);
806
807       gst_iterator_free (iter);
808
809       if (res == GST_ITERATOR_ERROR)
810         return GST_STATE_CHANGE_FAILURE;
811       break;
812     }
813     case GST_STATE_CHANGE_PAUSED_TO_READY:{
814       GstIterator *iter = gst_element_iterate_sink_pads (element);
815       GstIteratorResult res;
816
817       g_mutex_lock (&self->lock);
818       do {
819         res = gst_iterator_foreach (iter, unblock_pad, NULL);
820       } while (res == GST_ITERATOR_RESYNC);
821
822       gst_iterator_free (iter);
823       g_cond_broadcast (&self->cond);
824       g_mutex_unlock (&self->lock);
825
826       if (res == GST_ITERATOR_ERROR)
827         return GST_STATE_CHANGE_FAILURE;
828
829       break;
830     }
831     default:
832       break;
833   }
834
835   ret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
836
837   return ret;
838 }