inputselector: Don't dereference NULL pointer
[platform/upstream/gstreamer.git] / plugins / elements / gstinputselector.c
1 /* GStreamer input selector
2  * Copyright (C) 2003 Julien Moutte <julien@moutte.net>
3  * Copyright (C) 2005 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
4  * Copyright (C) 2005 Jan Schmidt <thaytan@mad.scientist.com>
5  * Copyright (C) 2007 Wim Taymans <wim.taymans@gmail.com>
6  * Copyright (C) 2007 Andy Wingo <wingo@pobox.com>
7  * Copyright (C) 2008 Nokia Corporation. (contact <stefan.kost@nokia.com>)
8  * Copyright (C) 2011 Sebastian Dröge <sebastian.droege@collabora.co.uk>
9  *
10  * This library is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU Library General Public
12  * License as published by the Free Software Foundation; either
13  * version 2 of the License, or (at your option) any later version.
14  *
15  * This library is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18  * Library General Public License for more details.
19  *
20  * You should have received a copy of the GNU Library General Public
21  * License along with this library; if not, write to the
22  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
23  * Boston, MA 02110-1301, USA.
24  */
25
26 /**
27  * SECTION:element-input-selector
28  * @see_also: #GstOutputSelector
29  *
30  * Direct one out of N input streams to the output pad.
31  *
32  * The input pads are from a GstPad subclass and have additional
33  * properties, which users may find useful, namely:
34  *
35  * <itemizedlist>
36  * <listitem>
37  * "running-time": Running time of stream on pad (#gint64)
38  * </listitem>
39  * <listitem>
40  * "tags": The currently active tags on the pad (#GstTagList, boxed type)
41  * </listitem>
42  * <listitem>
43  * "active": If the pad is currently active (#gboolean)
44  * </listitem>
45  * <listitem>
46  * "always-ok" : Make an inactive pads return #GST_FLOW_OK instead of
47  * #GST_FLOW_NOT_LINKED
48  * </listitem>
49  * </itemizedlist>
50  */
51
52 #ifdef HAVE_CONFIG_H
53 #include "config.h"
54 #endif
55
56 #include <string.h>
57
58 #include "gstinputselector.h"
59
60 #define DEBUG_CACHED_BUFFERS 0
61
62 GST_DEBUG_CATEGORY_STATIC (input_selector_debug);
63 #define GST_CAT_DEFAULT input_selector_debug
64
65 #define GST_TYPE_INPUT_SELECTOR_SYNC_MODE (gst_input_selector_sync_mode_get_type())
66 static GType
67 gst_input_selector_sync_mode_get_type (void)
68 {
69   static GType type = 0;
70   static const GEnumValue data[] = {
71     {GST_INPUT_SELECTOR_SYNC_MODE_ACTIVE_SEGMENT,
72           "Sync using the current active segment",
73         "active-segment"},
74     {GST_INPUT_SELECTOR_SYNC_MODE_CLOCK, "Sync using the clock", "clock"},
75     {0, NULL, NULL},
76   };
77
78   if (!type) {
79     type = g_enum_register_static ("GstInputSelectorSyncMode", data);
80   }
81   return type;
82 }
83
84 #define GST_INPUT_SELECTOR_GET_LOCK(sel) (&((GstInputSelector*)(sel))->lock)
85 #define GST_INPUT_SELECTOR_GET_COND(sel) (&((GstInputSelector*)(sel))->cond)
86 #define GST_INPUT_SELECTOR_LOCK(sel) (g_mutex_lock (GST_INPUT_SELECTOR_GET_LOCK(sel)))
87 #define GST_INPUT_SELECTOR_UNLOCK(sel) (g_mutex_unlock (GST_INPUT_SELECTOR_GET_LOCK(sel)))
88 #define GST_INPUT_SELECTOR_WAIT(sel) (g_cond_wait (GST_INPUT_SELECTOR_GET_COND(sel), \
89                         GST_INPUT_SELECTOR_GET_LOCK(sel)))
90 #define GST_INPUT_SELECTOR_BROADCAST(sel) (g_cond_broadcast (GST_INPUT_SELECTOR_GET_COND(sel)))
91
92 static GstStaticPadTemplate gst_input_selector_sink_factory =
93 GST_STATIC_PAD_TEMPLATE ("sink_%u",
94     GST_PAD_SINK,
95     GST_PAD_REQUEST,
96     GST_STATIC_CAPS_ANY);
97
98 static GstStaticPadTemplate gst_input_selector_src_factory =
99 GST_STATIC_PAD_TEMPLATE ("src",
100     GST_PAD_SRC,
101     GST_PAD_ALWAYS,
102     GST_STATIC_CAPS_ANY);
103
104 enum
105 {
106   PROP_0,
107   PROP_N_PADS,
108   PROP_ACTIVE_PAD,
109   PROP_SYNC_STREAMS,
110   PROP_SYNC_MODE,
111   PROP_CACHE_BUFFERS
112 };
113
114 #define DEFAULT_SYNC_STREAMS TRUE
115 #define DEFAULT_SYNC_MODE GST_INPUT_SELECTOR_SYNC_MODE_ACTIVE_SEGMENT
116 #define DEFAULT_CACHE_BUFFERS FALSE
117 #define DEFAULT_PAD_ALWAYS_OK TRUE
118
119 enum
120 {
121   PROP_PAD_0,
122   PROP_PAD_RUNNING_TIME,
123   PROP_PAD_TAGS,
124   PROP_PAD_ACTIVE,
125   PROP_PAD_ALWAYS_OK
126 };
127
128 enum
129 {
130   /* methods */
131   SIGNAL_BLOCK,
132   SIGNAL_SWITCH,
133   LAST_SIGNAL
134 };
135 static guint gst_input_selector_signals[LAST_SIGNAL] = { 0 };
136
137 static void gst_input_selector_active_pad_changed (GstInputSelector * sel,
138     GParamSpec * pspec, gpointer user_data);
139 static inline gboolean gst_input_selector_is_active_sinkpad (GstInputSelector *
140     sel, GstPad * pad);
141 static GstPad *gst_input_selector_activate_sinkpad (GstInputSelector * sel,
142     GstPad * pad);
143 static GstPad *gst_input_selector_get_linked_pad (GstInputSelector * sel,
144     GstPad * pad, gboolean strict);
145
146 #define GST_TYPE_SELECTOR_PAD \
147   (gst_selector_pad_get_type())
148 #define GST_SELECTOR_PAD(obj) \
149   (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_SELECTOR_PAD, GstSelectorPad))
150 #define GST_SELECTOR_PAD_CLASS(klass) \
151   (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_SELECTOR_PAD, GstSelectorPadClass))
152 #define GST_IS_SELECTOR_PAD(obj) \
153   (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_SELECTOR_PAD))
154 #define GST_IS_SELECTOR_PAD_CLASS(klass) \
155   (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_SELECTOR_PAD))
156 #define GST_SELECTOR_PAD_CAST(obj) \
157   ((GstSelectorPad *)(obj))
158
159 typedef struct _GstSelectorPad GstSelectorPad;
160 typedef struct _GstSelectorPadClass GstSelectorPadClass;
161 typedef struct _GstSelectorPadCachedBuffer GstSelectorPadCachedBuffer;
162
163 struct _GstSelectorPad
164 {
165   GstPad parent;
166
167   gboolean active;              /* when buffer have passed the pad */
168   gboolean pushed;              /* when buffer was pushed downstream since activation */
169   gboolean eos;                 /* when EOS has been received */
170   gboolean eos_sent;            /* when EOS was sent downstream */
171   gboolean discont;             /* after switching we create a discont */
172   gboolean flushing;            /* set after flush-start and before flush-stop */
173   gboolean always_ok;
174   GstTagList *tags;             /* last tags received on the pad */
175
176   GstSegment segment;           /* the current segment on the pad */
177   guint32 segment_seqnum;       /* sequence number of the current segment */
178
179   gboolean events_pending;      /* TRUE if sticky events need to be updated */
180
181   gboolean sending_cached_buffers;
182   GQueue *cached_buffers;
183 };
184
185 struct _GstSelectorPadCachedBuffer
186 {
187   GstBuffer *buffer;
188   GstSegment segment;
189 };
190
191 struct _GstSelectorPadClass
192 {
193   GstPadClass parent;
194 };
195
196 GType gst_selector_pad_get_type (void);
197 static void gst_selector_pad_finalize (GObject * object);
198 static void gst_selector_pad_get_property (GObject * object,
199     guint prop_id, GValue * value, GParamSpec * pspec);
200 static void gst_selector_pad_set_property (GObject * object,
201     guint prop_id, const GValue * value, GParamSpec * pspec);
202
203 static gint64 gst_selector_pad_get_running_time (GstSelectorPad * pad);
204 static void gst_selector_pad_reset (GstSelectorPad * pad);
205 static gboolean gst_selector_pad_event (GstPad * pad, GstObject * parent,
206     GstEvent * event);
207 static gboolean gst_selector_pad_query (GstPad * pad, GstObject * parent,
208     GstQuery * query);
209 static GstIterator *gst_selector_pad_iterate_linked_pads (GstPad * pad,
210     GstObject * parent);
211 static GstFlowReturn gst_selector_pad_chain (GstPad * pad, GstObject * parent,
212     GstBuffer * buf);
213 static void gst_selector_pad_cache_buffer (GstSelectorPad * selpad,
214     GstBuffer * buffer);
215 static void gst_selector_pad_free_cached_buffers (GstSelectorPad * selpad);
216
217 G_DEFINE_TYPE (GstSelectorPad, gst_selector_pad, GST_TYPE_PAD);
218
219 static void
220 gst_selector_pad_class_init (GstSelectorPadClass * klass)
221 {
222   GObjectClass *gobject_class;
223
224   gobject_class = (GObjectClass *) klass;
225
226   gobject_class->finalize = gst_selector_pad_finalize;
227
228   gobject_class->get_property = gst_selector_pad_get_property;
229   gobject_class->set_property = gst_selector_pad_set_property;
230
231   g_object_class_install_property (gobject_class, PROP_PAD_RUNNING_TIME,
232       g_param_spec_int64 ("running-time", "Running time",
233           "Running time of stream on pad", 0, G_MAXINT64, 0,
234           G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
235   g_object_class_install_property (gobject_class, PROP_PAD_TAGS,
236       g_param_spec_boxed ("tags", "Tags",
237           "The currently active tags on the pad", GST_TYPE_TAG_LIST,
238           G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
239   g_object_class_install_property (gobject_class, PROP_PAD_ACTIVE,
240       g_param_spec_boolean ("active", "Active",
241           "If the pad is currently active", FALSE,
242           G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
243   /* FIXME: better property name? */
244   g_object_class_install_property (gobject_class, PROP_PAD_ALWAYS_OK,
245       g_param_spec_boolean ("always-ok", "Always OK",
246           "Make an inactive pad return OK instead of NOT_LINKED",
247           DEFAULT_PAD_ALWAYS_OK, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
248 }
249
250 static void
251 gst_selector_pad_init (GstSelectorPad * pad)
252 {
253   pad->always_ok = DEFAULT_PAD_ALWAYS_OK;
254   gst_selector_pad_reset (pad);
255 }
256
257 static void
258 gst_selector_pad_finalize (GObject * object)
259 {
260   GstSelectorPad *pad;
261
262   pad = GST_SELECTOR_PAD_CAST (object);
263
264   if (pad->tags)
265     gst_tag_list_unref (pad->tags);
266   gst_selector_pad_free_cached_buffers (pad);
267
268   G_OBJECT_CLASS (gst_selector_pad_parent_class)->finalize (object);
269 }
270
271 static void
272 gst_selector_pad_set_property (GObject * object, guint prop_id,
273     const GValue * value, GParamSpec * pspec)
274 {
275   GstSelectorPad *spad = GST_SELECTOR_PAD_CAST (object);
276
277   switch (prop_id) {
278     case PROP_PAD_ALWAYS_OK:
279       GST_OBJECT_LOCK (object);
280       spad->always_ok = g_value_get_boolean (value);
281       GST_OBJECT_UNLOCK (object);
282       break;
283     default:
284       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
285       break;
286   }
287 }
288
289 static void
290 gst_selector_pad_get_property (GObject * object, guint prop_id,
291     GValue * value, GParamSpec * pspec)
292 {
293   GstSelectorPad *spad = GST_SELECTOR_PAD_CAST (object);
294
295   switch (prop_id) {
296     case PROP_PAD_RUNNING_TIME:
297       g_value_set_int64 (value, gst_selector_pad_get_running_time (spad));
298       break;
299     case PROP_PAD_TAGS:
300       GST_OBJECT_LOCK (object);
301       g_value_set_boxed (value, spad->tags);
302       GST_OBJECT_UNLOCK (object);
303       break;
304     case PROP_PAD_ACTIVE:
305     {
306       GstInputSelector *sel;
307
308       sel = GST_INPUT_SELECTOR (gst_pad_get_parent (spad));
309       if (sel) {
310         g_value_set_boolean (value, gst_input_selector_is_active_sinkpad (sel,
311                 GST_PAD_CAST (spad)));
312         gst_object_unref (sel);
313       } else {
314         g_value_set_boolean (value, FALSE);
315       }
316       break;
317     }
318     case PROP_PAD_ALWAYS_OK:
319       GST_OBJECT_LOCK (object);
320       g_value_set_boolean (value, spad->always_ok);
321       GST_OBJECT_UNLOCK (object);
322       break;
323     default:
324       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
325       break;
326   }
327 }
328
329 static gint64
330 gst_selector_pad_get_running_time (GstSelectorPad * pad)
331 {
332   gint64 ret = 0;
333
334   GST_OBJECT_LOCK (pad);
335   if (pad->active) {
336     ret =
337         gst_segment_to_running_time (&pad->segment, pad->segment.format,
338         pad->segment.position);
339   }
340   GST_OBJECT_UNLOCK (pad);
341
342   GST_DEBUG_OBJECT (pad, "running time: %" GST_TIME_FORMAT
343       " segment: %" GST_SEGMENT_FORMAT, GST_TIME_ARGS (ret), &pad->segment);
344
345   return ret;
346 }
347
348 /* must be called with the SELECTOR_LOCK */
349 static void
350 gst_selector_pad_reset (GstSelectorPad * pad)
351 {
352   GST_OBJECT_LOCK (pad);
353   pad->active = FALSE;
354   pad->pushed = FALSE;
355   pad->eos = FALSE;
356   pad->eos_sent = FALSE;
357   pad->events_pending = FALSE;
358   pad->discont = FALSE;
359   pad->flushing = FALSE;
360   gst_segment_init (&pad->segment, GST_FORMAT_UNDEFINED);
361   pad->sending_cached_buffers = FALSE;
362   gst_selector_pad_free_cached_buffers (pad);
363   GST_OBJECT_UNLOCK (pad);
364 }
365
366 static GstSelectorPadCachedBuffer *
367 gst_selector_pad_new_cached_buffer (GstSelectorPad * selpad, GstBuffer * buffer)
368 {
369   GstSelectorPadCachedBuffer *cached_buffer =
370       g_slice_new (GstSelectorPadCachedBuffer);
371   cached_buffer->buffer = buffer;
372   cached_buffer->segment = selpad->segment;
373   return cached_buffer;
374 }
375
376 static void
377 gst_selector_pad_free_cached_buffer (GstSelectorPadCachedBuffer * cached_buffer)
378 {
379   gst_buffer_unref (cached_buffer->buffer);
380   g_slice_free (GstSelectorPadCachedBuffer, cached_buffer);
381 }
382
383 /* must be called with the SELECTOR_LOCK */
384 static void
385 gst_selector_pad_cache_buffer (GstSelectorPad * selpad, GstBuffer * buffer)
386 {
387   if (selpad->segment.format != GST_FORMAT_TIME) {
388     GST_DEBUG_OBJECT (selpad, "Buffer %p with segment not in time format, "
389         "not caching", buffer);
390     return;
391   }
392
393   GST_DEBUG_OBJECT (selpad, "Caching buffer %p", buffer);
394   if (!selpad->cached_buffers)
395     selpad->cached_buffers = g_queue_new ();
396   g_queue_push_tail (selpad->cached_buffers,
397       gst_selector_pad_new_cached_buffer (selpad, buffer));
398 }
399
400 /* must be called with the SELECTOR_LOCK */
401 static void
402 gst_selector_pad_free_cached_buffers (GstSelectorPad * selpad)
403 {
404   if (!selpad->cached_buffers)
405     return;
406
407   GST_DEBUG_OBJECT (selpad, "Freeing cached buffers");
408   g_queue_free_full (selpad->cached_buffers,
409       (GDestroyNotify) gst_selector_pad_free_cached_buffer);
410   selpad->cached_buffers = NULL;
411 }
412
413 /* strictly get the linked pad from the sinkpad. If the pad is active we return
414  * the srcpad else we return NULL */
415 static GstIterator *
416 gst_selector_pad_iterate_linked_pads (GstPad * pad, GstObject * parent)
417 {
418   GstInputSelector *sel;
419   GstPad *otherpad;
420   GstIterator *it = NULL;
421   GValue val = { 0, };
422
423   sel = GST_INPUT_SELECTOR (parent);
424
425   otherpad = gst_input_selector_get_linked_pad (sel, pad, TRUE);
426   if (otherpad) {
427     g_value_init (&val, GST_TYPE_PAD);
428     g_value_set_object (&val, otherpad);
429     it = gst_iterator_new_single (GST_TYPE_PAD, &val);
430     g_value_unset (&val);
431     gst_object_unref (otherpad);
432   }
433
434   return it;
435 }
436
437 /* must be called with the SELECTOR_LOCK, will block while the pad is blocked 
438  * or return TRUE when flushing */
439 static gboolean
440 gst_input_selector_wait (GstInputSelector * self, GstSelectorPad * pad)
441 {
442   while (!self->eos && self->blocked && !self->flushing && !pad->flushing) {
443     /* we can be unlocked here when we are shutting down (flushing) or when we
444      * get unblocked */
445     GST_INPUT_SELECTOR_WAIT (self);
446   }
447   return self->flushing;
448 }
449
450 static gboolean
451 gst_selector_pad_event (GstPad * pad, GstObject * parent, GstEvent * event)
452 {
453   gboolean res = TRUE;
454   gboolean forward;
455   gboolean new_tags = FALSE;
456   GstInputSelector *sel;
457   GstSelectorPad *selpad;
458   GstPad *prev_active_sinkpad;
459   GstPad *active_sinkpad;
460
461   sel = GST_INPUT_SELECTOR (parent);
462   selpad = GST_SELECTOR_PAD_CAST (pad);
463   GST_DEBUG_OBJECT (selpad, "received event %" GST_PTR_FORMAT, event);
464
465   GST_INPUT_SELECTOR_LOCK (sel);
466   prev_active_sinkpad =
467       sel->active_sinkpad ? gst_object_ref (sel->active_sinkpad) : NULL;
468   active_sinkpad = gst_input_selector_activate_sinkpad (sel, pad);
469   gst_object_ref (active_sinkpad);
470   GST_INPUT_SELECTOR_UNLOCK (sel);
471
472   if (prev_active_sinkpad != active_sinkpad) {
473     if (prev_active_sinkpad)
474       g_object_notify (G_OBJECT (prev_active_sinkpad), "active");
475     g_object_notify (G_OBJECT (active_sinkpad), "active");
476     g_object_notify (G_OBJECT (sel), "active-pad");
477   }
478   if (prev_active_sinkpad)
479     gst_object_unref (prev_active_sinkpad);
480   gst_object_unref (active_sinkpad);
481
482   GST_INPUT_SELECTOR_LOCK (sel);
483   active_sinkpad = gst_input_selector_activate_sinkpad (sel, pad);
484
485   /* only forward if we are dealing with the active sinkpad */
486   forward = (pad == active_sinkpad);
487
488   switch (GST_EVENT_TYPE (event)) {
489     case GST_EVENT_STREAM_START:{
490       guint group_id;
491
492       if (!gst_event_parse_group_id (event, &group_id))
493         sel->have_group_id = FALSE;
494       break;
495     }
496     case GST_EVENT_FLUSH_START:
497       /* Unblock the pad if it's waiting */
498       selpad->flushing = TRUE;
499       sel->eos = FALSE;
500       GST_INPUT_SELECTOR_BROADCAST (sel);
501       break;
502     case GST_EVENT_FLUSH_STOP:
503       gst_selector_pad_reset (selpad);
504       break;
505     case GST_EVENT_SEGMENT:
506     {
507       gst_event_copy_segment (event, &selpad->segment);
508       selpad->segment_seqnum = gst_event_get_seqnum (event);
509
510       GST_DEBUG_OBJECT (pad, "configured SEGMENT %" GST_SEGMENT_FORMAT,
511           &selpad->segment);
512       break;
513     }
514     case GST_EVENT_TAG:
515     {
516       GstTagList *tags, *oldtags, *newtags;
517
518       gst_event_parse_tag (event, &tags);
519
520       GST_OBJECT_LOCK (selpad);
521       oldtags = selpad->tags;
522
523       newtags = gst_tag_list_merge (oldtags, tags, GST_TAG_MERGE_REPLACE);
524       selpad->tags = newtags;
525       GST_OBJECT_UNLOCK (selpad);
526
527       if (oldtags)
528         gst_tag_list_unref (oldtags);
529       GST_DEBUG_OBJECT (pad, "received tags %" GST_PTR_FORMAT, newtags);
530
531       new_tags = TRUE;
532       break;
533     }
534     case GST_EVENT_EOS:
535       selpad->eos = TRUE;
536
537       if (!forward) {
538         /* blocked until active the sind pad or flush */
539         gst_input_selector_wait (sel, selpad);
540         forward = TRUE;
541       } else {
542         /* Notify all waiting pads about going EOS now */
543         sel->eos = TRUE;
544         GST_INPUT_SELECTOR_BROADCAST (sel);
545       }
546
547       selpad->eos_sent = TRUE;
548       GST_DEBUG_OBJECT (pad, "received EOS");
549       break;
550     case GST_EVENT_GAP:{
551       GstClockTime ts, dur;
552
553       GST_DEBUG_OBJECT (pad, "Received gap event: %" GST_PTR_FORMAT, event);
554
555       gst_event_parse_gap (event, &ts, &dur);
556       if (GST_CLOCK_TIME_IS_VALID (ts)) {
557         if (GST_CLOCK_TIME_IS_VALID (dur))
558           ts += dur;
559
560         /* update the segment position */
561         GST_OBJECT_LOCK (pad);
562         selpad->segment.position = ts;
563         GST_OBJECT_UNLOCK (pad);
564         if (sel->sync_streams && active_sinkpad == pad)
565           GST_INPUT_SELECTOR_BROADCAST (sel);
566       }
567
568     }
569       break;
570     default:
571       break;
572   }
573   GST_INPUT_SELECTOR_UNLOCK (sel);
574   if (new_tags)
575     g_object_notify (G_OBJECT (selpad), "tags");
576   if (forward) {
577     GST_DEBUG_OBJECT (pad, "forwarding event");
578     res = gst_pad_push_event (sel->srcpad, event);
579   } else {
580     /* If we aren't forwarding the event because the pad is not the
581      * active_sinkpad, then set the flag on the pad
582      * that says a segment needs sending if/when that pad is activated.
583      * For all other cases, we send the event immediately, which makes
584      * sparse streams and other segment updates work correctly downstream.
585      */
586     if (GST_EVENT_IS_STICKY (event))
587       selpad->events_pending = TRUE;
588     gst_event_unref (event);
589   }
590
591   return res;
592 }
593
594 static gboolean
595 gst_selector_pad_query (GstPad * pad, GstObject * parent, GstQuery * query)
596 {
597   gboolean res = FALSE;
598   GstInputSelector *self = (GstInputSelector *) parent;
599
600   switch (GST_QUERY_TYPE (query)) {
601     case GST_QUERY_CAPS:
602       /* always proxy caps query, regardless of active pad or not */
603       res = gst_pad_peer_query (self->srcpad, query);
604       break;
605     case GST_QUERY_ALLOCATION:{
606       GstPad *active_sinkpad;
607       GstInputSelector *sel = GST_INPUT_SELECTOR (parent);
608
609       /* Only do the allocation query for the active sinkpad,
610        * after switching a reconfigure event is sent and upstream
611        * should reconfigure and do a new allocation query
612        */
613       if (GST_PAD_DIRECTION (pad) == GST_PAD_SINK) {
614         GST_INPUT_SELECTOR_LOCK (sel);
615         active_sinkpad = gst_input_selector_activate_sinkpad (sel, pad);
616         GST_INPUT_SELECTOR_UNLOCK (sel);
617
618         if (pad != active_sinkpad) {
619           res = FALSE;
620           goto done;
621         }
622       }
623     }
624       /* fall through */
625     default:
626       res = gst_pad_query_default (pad, parent, query);
627       break;
628   }
629
630 done:
631   return res;
632 }
633
634 static GstClockTime
635 gst_input_selector_get_clipped_running_time (GstSegment * seg, GstBuffer * buf)
636 {
637   GstClockTime running_time;
638
639   running_time = GST_BUFFER_PTS (buf);
640   /* If possible try to get the running time at the end of the buffer */
641   if (GST_BUFFER_DURATION_IS_VALID (buf))
642     running_time += GST_BUFFER_DURATION (buf);
643   /* Only use the segment to convert to running time if the segment is
644    * in TIME format, otherwise do our best to try to sync */
645   if (GST_CLOCK_TIME_IS_VALID (seg->stop)) {
646     if (running_time > seg->stop) {
647       running_time = seg->stop;
648     }
649   }
650   return gst_segment_to_running_time (seg, GST_FORMAT_TIME, running_time);
651 }
652
653 /* must be called without the SELECTOR_LOCK, will wait until the running time
654  * of the active pad is after this pad or return TRUE when flushing */
655 static gboolean
656 gst_input_selector_wait_running_time (GstInputSelector * sel,
657     GstSelectorPad * selpad, GstBuffer * buf)
658 {
659   GstSegment *seg;
660
661   GST_DEBUG_OBJECT (selpad, "entering wait for buffer %p", buf);
662
663   /* If we have no valid timestamp we can't sync this buffer */
664   if (!GST_BUFFER_PTS_IS_VALID (buf)) {
665     GST_DEBUG_OBJECT (selpad, "leaving wait for buffer with "
666         "invalid timestamp");
667     return FALSE;
668   }
669
670   seg = &selpad->segment;
671
672   /* Wait until
673    *   a) this is the active pad
674    *   b) the pad or the selector is flushing
675    *   c) the selector is not blocked
676    *   d) the buffer running time is before the current running time
677    *      (either active-seg or clock, depending on sync-mode)
678    */
679
680   GST_INPUT_SELECTOR_LOCK (sel);
681   while (TRUE) {
682     GstPad *active_sinkpad;
683     GstSelectorPad *active_selpad;
684     GstClock *clock;
685     gint64 cur_running_time;
686     GstClockTime running_time;
687
688     active_sinkpad =
689         gst_input_selector_activate_sinkpad (sel, GST_PAD_CAST (selpad));
690     active_selpad = GST_SELECTOR_PAD_CAST (active_sinkpad);
691
692     if (seg->format != GST_FORMAT_TIME) {
693       GST_DEBUG_OBJECT (selpad,
694           "Not waiting because we don't have a TIME segment");
695       GST_INPUT_SELECTOR_UNLOCK (sel);
696       return FALSE;
697     }
698
699     running_time = gst_input_selector_get_clipped_running_time (seg, buf);
700     /* If this is outside the segment don't sync */
701     if (running_time == -1) {
702       GST_DEBUG_OBJECT (selpad,
703           "Not waiting because buffer is outside segment");
704       GST_INPUT_SELECTOR_UNLOCK (sel);
705       return FALSE;
706     }
707
708     cur_running_time = GST_CLOCK_TIME_NONE;
709     if (sel->sync_mode == GST_INPUT_SELECTOR_SYNC_MODE_CLOCK) {
710       clock = gst_element_get_clock (GST_ELEMENT_CAST (sel));
711       if (clock) {
712         GstClockTime base_time;
713
714         cur_running_time = gst_clock_get_time (clock);
715         base_time = gst_element_get_base_time (GST_ELEMENT_CAST (sel));
716         if (base_time <= cur_running_time)
717           cur_running_time -= base_time;
718         else
719           cur_running_time = 0;
720
721         gst_object_unref (clock);
722       }
723     } else {
724       GstSegment *active_seg;
725
726       active_seg = &active_selpad->segment;
727
728       /* If the active segment is configured but not to time format
729        * we can't do any syncing at all */
730       if (active_seg->format != GST_FORMAT_TIME
731           && active_seg->format != GST_FORMAT_UNDEFINED) {
732         GST_DEBUG_OBJECT (selpad,
733             "Not waiting because active segment isn't in TIME format");
734         GST_INPUT_SELECTOR_UNLOCK (sel);
735         return FALSE;
736       }
737
738       /* Get active pad's running time, if no configured segment yet keep at -1 */
739       if (active_seg->format == GST_FORMAT_TIME)
740         cur_running_time = gst_segment_to_running_time (active_seg,
741             GST_FORMAT_TIME, active_seg->position);
742     }
743
744     if (selpad != active_selpad && !sel->eos && !sel->flushing
745         && !selpad->flushing && (sel->blocked
746             || cur_running_time == GST_CLOCK_TIME_NONE
747             || running_time >= cur_running_time)) {
748       if (!sel->blocked) {
749         GST_DEBUG_OBJECT (selpad,
750             "Waiting for active streams to advance. %" GST_TIME_FORMAT " >= %"
751             GST_TIME_FORMAT, GST_TIME_ARGS (running_time),
752             GST_TIME_ARGS (cur_running_time));
753       } else
754         GST_DEBUG_OBJECT (selpad, "Waiting for selector to unblock");
755
756       GST_INPUT_SELECTOR_WAIT (sel);
757     } else {
758       GST_INPUT_SELECTOR_UNLOCK (sel);
759       break;
760     }
761   }
762
763   /* Return TRUE if the selector or the pad is flushing */
764   return (sel->flushing || selpad->flushing);
765 }
766
767 static gboolean
768 forward_sticky_events (GstPad * sinkpad, GstEvent ** event, gpointer user_data)
769 {
770   GstInputSelector *sel = GST_INPUT_SELECTOR (user_data);
771
772   if (GST_EVENT_TYPE (*event) == GST_EVENT_SEGMENT) {
773     GstSegment *seg = &GST_SELECTOR_PAD (sinkpad)->segment;
774     GstEvent *e;
775
776     e = gst_event_new_segment (seg);
777     gst_event_set_seqnum (e, GST_SELECTOR_PAD_CAST (sinkpad)->segment_seqnum);
778
779     gst_pad_push_event (sel->srcpad, e);
780   } else if (GST_EVENT_TYPE (*event) == GST_EVENT_STREAM_START
781       && !sel->have_group_id) {
782     GstEvent *tmp =
783         gst_pad_get_sticky_event (sel->srcpad, GST_EVENT_STREAM_START, 0);
784
785     /* Only push stream-start once if not all our streams have a stream-id */
786     if (!tmp) {
787       gst_pad_push_event (sel->srcpad, gst_event_ref (*event));
788     } else {
789       gst_event_unref (tmp);
790     }
791   } else {
792     gst_pad_push_event (sel->srcpad, gst_event_ref (*event));
793   }
794
795   return TRUE;
796 }
797
798 #if DEBUG_CACHED_BUFFERS
799 static void
800 gst_input_selector_debug_cached_buffers (GstInputSelector * sel)
801 {
802   GList *walk;
803
804   if (gst_debug_category_get_threshold (input_selector_debug) < GST_LEVEL_DEBUG)
805     return;
806
807   for (walk = GST_ELEMENT_CAST (sel)->sinkpads; walk; walk = walk->next) {
808     GstSelectorPad *selpad;
809     GString *timestamps;
810     GList *l;
811
812     selpad = GST_SELECTOR_PAD_CAST (walk->data);
813     if (!selpad->cached_buffers) {
814       GST_DEBUG_OBJECT (selpad, "Cached buffers timestamps: <none>");
815       continue;
816     }
817
818     timestamps = g_string_new ("Cached buffers timestamps:");
819     for (l = selpad->cached_buffers->head; l != NULL; l = l->next) {
820       GstSelectorPadCachedBuffer *cached_buffer = l->data;
821
822       g_string_append_printf (timestamps, " %" GST_TIME_FORMAT,
823           GST_TIME_ARGS (GST_BUFFER_PTS (cached_buffer->buffer)));
824     }
825     GST_DEBUG_OBJECT (selpad, "%s", timestamps->str);
826     g_string_free (timestamps, TRUE);
827   }
828 }
829 #endif
830
831 /* must be called with the SELECTOR_LOCK */
832 static void
833 gst_input_selector_cleanup_old_cached_buffers (GstInputSelector * sel,
834     GstPad * pad)
835 {
836   GstClock *clock;
837   gint64 cur_running_time;
838   GList *walk;
839
840   cur_running_time = GST_CLOCK_TIME_NONE;
841   if (sel->sync_mode == GST_INPUT_SELECTOR_SYNC_MODE_CLOCK) {
842     clock = gst_element_get_clock (GST_ELEMENT_CAST (sel));
843     if (clock) {
844       GstClockTime base_time;
845
846       cur_running_time = gst_clock_get_time (clock);
847       base_time = gst_element_get_base_time (GST_ELEMENT_CAST (sel));
848       if (base_time <= cur_running_time)
849         cur_running_time -= base_time;
850       else
851         cur_running_time = 0;
852
853       gst_object_unref (clock);
854     }
855   } else {
856     GstPad *active_sinkpad;
857     GstSelectorPad *active_selpad;
858     GstSegment *active_seg;
859
860     active_sinkpad = gst_input_selector_activate_sinkpad (sel, pad);
861     active_selpad = GST_SELECTOR_PAD_CAST (active_sinkpad);
862     active_seg = &active_selpad->segment;
863
864     /* Get active pad's running time, if no configured segment yet keep at -1 */
865     if (active_seg->format == GST_FORMAT_TIME)
866       cur_running_time = gst_segment_to_running_time (active_seg,
867           GST_FORMAT_TIME, active_seg->position);
868   }
869
870   if (!GST_CLOCK_TIME_IS_VALID (cur_running_time))
871     return;
872
873   GST_DEBUG_OBJECT (sel, "Cleaning up old cached buffers");
874   for (walk = GST_ELEMENT_CAST (sel)->sinkpads; walk; walk = g_list_next (walk)) {
875     GstSelectorPad *selpad;
876     GstSegment *seg;
877     GstSelectorPadCachedBuffer *cached_buffer;
878     GSList *maybe_remove;
879     guint queue_position;
880
881     selpad = GST_SELECTOR_PAD_CAST (walk->data);
882     if (!selpad->cached_buffers)
883       continue;
884
885     seg = &selpad->segment;
886
887     maybe_remove = NULL;
888     queue_position = 0;
889     while ((cached_buffer = g_queue_peek_nth (selpad->cached_buffers,
890                 queue_position))) {
891       GstBuffer *buffer = cached_buffer->buffer;
892       GstClockTime running_time;
893       GSList *l;
894
895       /* If we have no valid timestamp we can't sync this buffer */
896       if (!GST_BUFFER_PTS_IS_VALID (buffer)) {
897         maybe_remove = g_slist_append (maybe_remove, cached_buffer);
898         queue_position = g_slist_length (maybe_remove);
899         continue;
900       }
901
902       /* the buffer is still valid if its duration is valid and the
903        * timestamp + duration is >= time, or if its duration is invalid
904        * and the timestamp is >= time */
905       running_time = gst_input_selector_get_clipped_running_time (seg, buffer);
906       GST_DEBUG_OBJECT (selpad,
907           "checking if buffer %p running time=%" GST_TIME_FORMAT
908           " >= stream time=%" GST_TIME_FORMAT, buffer,
909           GST_TIME_ARGS (running_time), GST_TIME_ARGS (cur_running_time));
910       if (running_time >= cur_running_time) {
911         break;
912       }
913
914       GST_DEBUG_OBJECT (selpad, "Removing old cached buffer %p", buffer);
915       g_queue_pop_nth (selpad->cached_buffers, queue_position);
916       gst_selector_pad_free_cached_buffer (cached_buffer);
917
918       for (l = maybe_remove; l != NULL; l = g_slist_next (l)) {
919         /* A buffer after some invalid buffers was removed, it means the invalid buffers
920          * are old, lets also remove them */
921         cached_buffer = l->data;
922         g_queue_remove (selpad->cached_buffers, cached_buffer);
923         gst_selector_pad_free_cached_buffer (cached_buffer);
924       }
925
926       g_slist_free (maybe_remove);
927       maybe_remove = NULL;
928       queue_position = 0;
929     }
930
931     g_slist_free (maybe_remove);
932     maybe_remove = NULL;
933
934     if (g_queue_is_empty (selpad->cached_buffers)) {
935       g_queue_free (selpad->cached_buffers);
936       selpad->cached_buffers = NULL;
937     }
938   }
939
940 #if DEBUG_CACHED_BUFFERS
941   gst_input_selector_debug_cached_buffers (sel);
942 #endif
943 }
944
945 static GstFlowReturn
946 gst_selector_pad_chain (GstPad * pad, GstObject * parent, GstBuffer * buf)
947 {
948   GstInputSelector *sel;
949   GstFlowReturn res;
950   GstPad *active_sinkpad;
951   GstPad *prev_active_sinkpad = NULL;
952   GstSelectorPad *selpad;
953
954   sel = GST_INPUT_SELECTOR (parent);
955   selpad = GST_SELECTOR_PAD_CAST (pad);
956
957   GST_DEBUG_OBJECT (selpad,
958       "entering chain for buf %p with timestamp %" GST_TIME_FORMAT, buf,
959       GST_TIME_ARGS (GST_BUFFER_PTS (buf)));
960
961   GST_INPUT_SELECTOR_LOCK (sel);
962   if (sel->eos) {
963     GST_INPUT_SELECTOR_UNLOCK (sel);
964     goto eos;
965   }
966
967   /* wait or check for flushing */
968   if (gst_input_selector_wait (sel, selpad)) {
969     GST_INPUT_SELECTOR_UNLOCK (sel);
970     goto flushing;
971   }
972
973   GST_LOG_OBJECT (pad, "getting active pad");
974
975   prev_active_sinkpad =
976       sel->active_sinkpad ? gst_object_ref (sel->active_sinkpad) : NULL;
977   active_sinkpad = gst_input_selector_activate_sinkpad (sel, pad);
978
979   /* In sync mode wait until the active pad has advanced
980    * after the running time of the current buffer */
981   if (sel->sync_streams) {
982     /* call chain for each cached buffer if we are not the active pad
983      * or if we are the active pad but didn't push anything yet. */
984     if (active_sinkpad != pad || !selpad->pushed) {
985       /* no need to check for sel->cache_buffers as selpad->cached_buffers
986        * will only be valid if cache_buffers is TRUE */
987       if (selpad->cached_buffers && !selpad->sending_cached_buffers) {
988         GstSelectorPadCachedBuffer *cached_buffer;
989         GstSegment saved_segment;
990
991         saved_segment = selpad->segment;
992
993         selpad->sending_cached_buffers = TRUE;
994         while (!sel->eos && !sel->flushing && !selpad->flushing &&
995             (cached_buffer = g_queue_pop_head (selpad->cached_buffers))) {
996           GST_DEBUG_OBJECT (pad, "Cached buffers found, "
997               "invoking chain for cached buffer %p", cached_buffer->buffer);
998
999           selpad->segment = cached_buffer->segment;
1000           selpad->events_pending = TRUE;
1001           GST_INPUT_SELECTOR_UNLOCK (sel);
1002           gst_selector_pad_chain (pad, parent, cached_buffer->buffer);
1003           GST_INPUT_SELECTOR_LOCK (sel);
1004
1005           /* we may have cleaned up the queue in the meantime because of
1006            * old buffers */
1007           if (!selpad->cached_buffers) {
1008             break;
1009           }
1010         }
1011         selpad->sending_cached_buffers = FALSE;
1012
1013         /* all cached buffers sent, restore segment for current buffer */
1014         selpad->segment = saved_segment;
1015         selpad->events_pending = TRUE;
1016
1017         /* Might have changed while calling chain for cached buffers */
1018         active_sinkpad = gst_input_selector_activate_sinkpad (sel, pad);
1019       }
1020     }
1021
1022     if (active_sinkpad != pad) {
1023       GST_INPUT_SELECTOR_UNLOCK (sel);
1024       if (gst_input_selector_wait_running_time (sel, selpad, buf))
1025         goto flushing;
1026       GST_INPUT_SELECTOR_LOCK (sel);
1027     }
1028
1029     /* Might have changed while waiting */
1030     active_sinkpad = gst_input_selector_activate_sinkpad (sel, pad);
1031   }
1032
1033   if (sel->eos) {
1034     GST_INPUT_SELECTOR_UNLOCK (sel);
1035     goto eos;
1036   }
1037
1038   /* update the segment on the srcpad */
1039   if (GST_BUFFER_PTS_IS_VALID (buf)) {
1040     GstClockTime start_time = GST_BUFFER_PTS (buf);
1041
1042     GST_LOG_OBJECT (pad, "received start time %" GST_TIME_FORMAT,
1043         GST_TIME_ARGS (start_time));
1044     if (GST_BUFFER_DURATION_IS_VALID (buf))
1045       GST_LOG_OBJECT (pad, "received end time %" GST_TIME_FORMAT,
1046           GST_TIME_ARGS (start_time + GST_BUFFER_DURATION (buf)));
1047
1048     GST_OBJECT_LOCK (pad);
1049     selpad->segment.position = start_time;
1050     GST_OBJECT_UNLOCK (pad);
1051   }
1052
1053   /* Ignore buffers from pads except the selected one */
1054   if (pad != active_sinkpad)
1055     goto ignore;
1056
1057   /* Tell all non-active pads that we advanced the running time */
1058   if (sel->sync_streams)
1059     GST_INPUT_SELECTOR_BROADCAST (sel);
1060
1061   GST_INPUT_SELECTOR_UNLOCK (sel);
1062
1063   if (prev_active_sinkpad != active_sinkpad) {
1064     if (prev_active_sinkpad)
1065       g_object_notify (G_OBJECT (prev_active_sinkpad), "active");
1066     g_object_notify (G_OBJECT (active_sinkpad), "active");
1067     g_object_notify (G_OBJECT (sel), "active-pad");
1068   }
1069
1070   /* if we have a pending events, push them now */
1071   if (G_UNLIKELY (prev_active_sinkpad != active_sinkpad
1072           || selpad->events_pending)) {
1073     gst_pad_sticky_events_foreach (GST_PAD_CAST (selpad), forward_sticky_events,
1074         sel);
1075     selpad->events_pending = FALSE;
1076   }
1077
1078   if (prev_active_sinkpad) {
1079     gst_object_unref (prev_active_sinkpad);
1080     prev_active_sinkpad = NULL;
1081   }
1082
1083   if (selpad->discont) {
1084     buf = gst_buffer_make_writable (buf);
1085
1086     GST_DEBUG_OBJECT (pad, "Marking discont buffer %p", buf);
1087     GST_BUFFER_FLAG_SET (buf, GST_BUFFER_FLAG_DISCONT);
1088     selpad->discont = FALSE;
1089   }
1090
1091   /* forward */
1092   GST_LOG_OBJECT (pad, "Forwarding buffer %p with timestamp %" GST_TIME_FORMAT,
1093       buf, GST_TIME_ARGS (GST_BUFFER_PTS (buf)));
1094
1095   /* Only make the buffer read-only when necessary */
1096   if (sel->sync_streams && sel->cache_buffers)
1097     buf = gst_buffer_ref (buf);
1098   res = gst_pad_push (sel->srcpad, buf);
1099   GST_LOG_OBJECT (pad, "Buffer %p forwarded result=%d", buf, res);
1100
1101   GST_INPUT_SELECTOR_LOCK (sel);
1102
1103   if (sel->sync_streams && sel->cache_buffers) {
1104     /* Might have changed while pushing */
1105     active_sinkpad = gst_input_selector_activate_sinkpad (sel, pad);
1106     /* only set pad to pushed if we are still the active pad */
1107     if (active_sinkpad == pad)
1108       selpad->pushed = TRUE;
1109
1110     /* cache buffer as we may need it again if we change pads */
1111     gst_selector_pad_cache_buffer (selpad, buf);
1112     gst_input_selector_cleanup_old_cached_buffers (sel, pad);
1113   } else {
1114     selpad->pushed = TRUE;
1115   }
1116   GST_INPUT_SELECTOR_UNLOCK (sel);
1117
1118 done:
1119
1120   if (prev_active_sinkpad)
1121     gst_object_unref (prev_active_sinkpad);
1122   prev_active_sinkpad = NULL;
1123
1124   return res;
1125
1126   /* dropped buffers */
1127 ignore:
1128   {
1129     gboolean active_pad_pushed = GST_SELECTOR_PAD_CAST (active_sinkpad)->pushed;
1130
1131     GST_DEBUG_OBJECT (pad, "Pad not active, discard buffer %p", buf);
1132     /* when we drop a buffer, we're creating a discont on this pad */
1133     selpad->discont = TRUE;
1134     GST_INPUT_SELECTOR_UNLOCK (sel);
1135     gst_buffer_unref (buf);
1136
1137     /* figure out what to return upstream */
1138     GST_OBJECT_LOCK (selpad);
1139     if (selpad->always_ok || !active_pad_pushed)
1140       res = GST_FLOW_OK;
1141     else
1142       res = GST_FLOW_NOT_LINKED;
1143     GST_OBJECT_UNLOCK (selpad);
1144
1145     goto done;
1146   }
1147 flushing:
1148   {
1149     GST_DEBUG_OBJECT (pad, "We are flushing, discard buffer %p", buf);
1150     gst_buffer_unref (buf);
1151     res = GST_FLOW_FLUSHING;
1152     goto done;
1153   }
1154 eos:
1155   {
1156     GST_DEBUG_OBJECT (pad, "We are eos, discard buffer %p", buf);
1157     gst_buffer_unref (buf);
1158     res = GST_FLOW_EOS;
1159     goto done;
1160   }
1161 }
1162
1163 static void gst_input_selector_dispose (GObject * object);
1164 static void gst_input_selector_finalize (GObject * object);
1165
1166 static void gst_input_selector_set_property (GObject * object,
1167     guint prop_id, const GValue * value, GParamSpec * pspec);
1168 static void gst_input_selector_get_property (GObject * object,
1169     guint prop_id, GValue * value, GParamSpec * pspec);
1170
1171 static GstPad *gst_input_selector_request_new_pad (GstElement * element,
1172     GstPadTemplate * templ, const gchar * unused, const GstCaps * caps);
1173 static void gst_input_selector_release_pad (GstElement * element, GstPad * pad);
1174
1175 static GstStateChangeReturn gst_input_selector_change_state (GstElement *
1176     element, GstStateChange transition);
1177
1178 static gboolean gst_input_selector_event (GstPad * pad, GstObject * parent,
1179     GstEvent * event);
1180 static gboolean gst_input_selector_query (GstPad * pad, GstObject * parent,
1181     GstQuery * query);
1182 static gint64 gst_input_selector_block (GstInputSelector * self);
1183
1184 #define _do_init \
1185     GST_DEBUG_CATEGORY_INIT (input_selector_debug, \
1186         "input-selector", 0, "An input stream selector element");
1187 #define gst_input_selector_parent_class parent_class
1188 G_DEFINE_TYPE_WITH_CODE (GstInputSelector, gst_input_selector, GST_TYPE_ELEMENT,
1189     _do_init);
1190
1191 static void
1192 gst_input_selector_class_init (GstInputSelectorClass * klass)
1193 {
1194   GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
1195   GstElementClass *gstelement_class = GST_ELEMENT_CLASS (klass);
1196
1197   gobject_class->dispose = gst_input_selector_dispose;
1198   gobject_class->finalize = gst_input_selector_finalize;
1199
1200   gobject_class->set_property = gst_input_selector_set_property;
1201   gobject_class->get_property = gst_input_selector_get_property;
1202
1203   g_object_class_install_property (gobject_class, PROP_N_PADS,
1204       g_param_spec_uint ("n-pads", "Number of Pads",
1205           "The number of sink pads", 0, G_MAXUINT, 0,
1206           G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
1207
1208   g_object_class_install_property (gobject_class, PROP_ACTIVE_PAD,
1209       g_param_spec_object ("active-pad", "Active pad",
1210           "The currently active sink pad", GST_TYPE_PAD,
1211           G_PARAM_READWRITE | GST_PARAM_MUTABLE_PLAYING |
1212           G_PARAM_STATIC_STRINGS));
1213
1214   /**
1215    * GstInputSelector:sync-streams
1216    *
1217    * If set to %TRUE all inactive streams will be synced to the
1218    * running time of the active stream or to the current clock.
1219    *
1220    * To make sure no buffers are dropped by input-selector
1221    * that might be needed when switching the active pad,
1222    * sync-mode should be set to "clock" and cache-buffers to TRUE.
1223    */
1224   g_object_class_install_property (gobject_class, PROP_SYNC_STREAMS,
1225       g_param_spec_boolean ("sync-streams", "Sync Streams",
1226           "Synchronize inactive streams to the running time of the active "
1227           "stream or to the current clock",
1228           DEFAULT_SYNC_STREAMS,
1229           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS |
1230           GST_PARAM_MUTABLE_READY));
1231
1232   /**
1233    * GstInputSelector:sync-mode
1234    *
1235    * Select how input-selector will sync buffers when in sync-streams mode.
1236    *
1237    * Note that when using the "active-segment" mode, the "active-segment" may
1238    * be ahead of current clock time when switching the active pad, as the current
1239    * active pad may have pushed more buffers than what was displayed/consumed,
1240    * which may cause delays and some missing buffers.
1241    */
1242   g_object_class_install_property (gobject_class, PROP_SYNC_MODE,
1243       g_param_spec_enum ("sync-mode", "Sync mode",
1244           "Behavior in sync-streams mode", GST_TYPE_INPUT_SELECTOR_SYNC_MODE,
1245           DEFAULT_SYNC_MODE,
1246           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS |
1247           GST_PARAM_MUTABLE_READY));
1248
1249   /**
1250    * GstInputSelector:cache-buffers
1251    *
1252    * If set to %TRUE and GstInputSelector:sync-streams is also set to %TRUE,
1253    * the active pad will cache the buffers still considered valid (after current
1254    * running time, see sync-mode) to avoid missing frames if/when the pad is
1255    * reactivated.
1256    *
1257    * The active pad may push more buffers than what is currently displayed/consumed
1258    * and when changing pads those buffers will be discarded and the only way to
1259    * reactivate that pad without loosing the already consumed buffers is to enable cache.
1260    */
1261   g_object_class_install_property (gobject_class, PROP_CACHE_BUFFERS,
1262       g_param_spec_boolean ("cache-buffers", "Cache Buffers",
1263           "Cache buffers for active-pad",
1264           DEFAULT_CACHE_BUFFERS,
1265           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS |
1266           GST_PARAM_MUTABLE_READY));
1267
1268   /**
1269    * GstInputSelector::block:
1270    * @inputselector: the #GstInputSelector
1271    *
1272    * Block all sink pads in preparation for a switch. Returns the stop time of
1273    * the current switch segment, as a running time, or 0 if there is no current
1274    * active pad or the current active pad never received data.
1275    */
1276   gst_input_selector_signals[SIGNAL_BLOCK] =
1277       g_signal_new ("block", G_TYPE_FROM_CLASS (klass),
1278       G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
1279       G_STRUCT_OFFSET (GstInputSelectorClass, block), NULL, NULL,
1280       g_cclosure_marshal_generic, G_TYPE_INT64, 0);
1281
1282   gst_element_class_set_static_metadata (gstelement_class, "Input selector",
1283       "Generic", "N-to-1 input stream selector",
1284       "Julien Moutte <julien@moutte.net>, "
1285       "Jan Schmidt <thaytan@mad.scientist.com>, "
1286       "Wim Taymans <wim.taymans@gmail.com>");
1287   gst_element_class_add_pad_template (gstelement_class,
1288       gst_static_pad_template_get (&gst_input_selector_sink_factory));
1289   gst_element_class_add_pad_template (gstelement_class,
1290       gst_static_pad_template_get (&gst_input_selector_src_factory));
1291
1292   gstelement_class->request_new_pad = gst_input_selector_request_new_pad;
1293   gstelement_class->release_pad = gst_input_selector_release_pad;
1294   gstelement_class->change_state = gst_input_selector_change_state;
1295
1296   klass->block = GST_DEBUG_FUNCPTR (gst_input_selector_block);
1297 }
1298
1299 static void
1300 gst_input_selector_init (GstInputSelector * sel)
1301 {
1302   sel->srcpad = gst_pad_new ("src", GST_PAD_SRC);
1303   gst_pad_set_iterate_internal_links_function (sel->srcpad,
1304       GST_DEBUG_FUNCPTR (gst_selector_pad_iterate_linked_pads));
1305   gst_pad_set_query_function (sel->srcpad,
1306       GST_DEBUG_FUNCPTR (gst_input_selector_query));
1307   gst_pad_set_event_function (sel->srcpad,
1308       GST_DEBUG_FUNCPTR (gst_input_selector_event));
1309   GST_OBJECT_FLAG_SET (sel->srcpad, GST_PAD_FLAG_PROXY_CAPS);
1310   gst_element_add_pad (GST_ELEMENT (sel), sel->srcpad);
1311   /* sinkpad management */
1312   sel->active_sinkpad = NULL;
1313   sel->padcount = 0;
1314   sel->sync_streams = DEFAULT_SYNC_STREAMS;
1315   sel->have_group_id = TRUE;
1316
1317   g_mutex_init (&sel->lock);
1318   g_cond_init (&sel->cond);
1319   sel->blocked = FALSE;
1320   sel->eos = FALSE;
1321
1322   /* lets give a change for downstream to do something on
1323    * active-pad change before we start pushing new buffers */
1324   g_signal_connect_data (sel, "notify::active-pad",
1325       (GCallback) gst_input_selector_active_pad_changed, NULL,
1326       NULL, G_CONNECT_AFTER);
1327 }
1328
1329 static void
1330 gst_input_selector_dispose (GObject * object)
1331 {
1332   GstInputSelector *sel = GST_INPUT_SELECTOR (object);
1333
1334   if (sel->active_sinkpad) {
1335     gst_object_unref (sel->active_sinkpad);
1336     sel->active_sinkpad = NULL;
1337   }
1338   G_OBJECT_CLASS (parent_class)->dispose (object);
1339 }
1340
1341 static void
1342 gst_input_selector_finalize (GObject * object)
1343 {
1344   GstInputSelector *sel = GST_INPUT_SELECTOR (object);
1345
1346   g_mutex_clear (&sel->lock);
1347   g_cond_clear (&sel->cond);
1348
1349   G_OBJECT_CLASS (parent_class)->finalize (object);
1350 }
1351
1352 /* this function must be called with the SELECTOR_LOCK. It returns TRUE when the
1353  * active pad changed. */
1354 static gboolean
1355 gst_input_selector_set_active_pad (GstInputSelector * self, GstPad * pad)
1356 {
1357   GstSelectorPad *old, *new;
1358   GstPad **active_pad_p;
1359
1360   if (pad == self->active_sinkpad)
1361     return FALSE;
1362
1363   old = GST_SELECTOR_PAD_CAST (self->active_sinkpad);
1364   new = GST_SELECTOR_PAD_CAST (pad);
1365
1366   GST_DEBUG_OBJECT (self, "setting active pad to %s:%s",
1367       GST_DEBUG_PAD_NAME (new));
1368
1369   if (old)
1370     old->pushed = FALSE;
1371   if (new)
1372     new->pushed = FALSE;
1373
1374   /* Send a new SEGMENT event on the new pad next */
1375   if (old != new && new)
1376     new->events_pending = TRUE;
1377
1378   active_pad_p = &self->active_sinkpad;
1379   gst_object_replace ((GstObject **) active_pad_p, GST_OBJECT_CAST (pad));
1380
1381   if (old && old != new)
1382     gst_pad_push_event (GST_PAD_CAST (old), gst_event_new_reconfigure ());
1383   if (new)
1384     gst_pad_push_event (GST_PAD_CAST (new), gst_event_new_reconfigure ());
1385
1386   GST_DEBUG_OBJECT (self, "New active pad is %" GST_PTR_FORMAT,
1387       self->active_sinkpad);
1388
1389   if (old != new && new && new->eos && !new->eos_sent) {
1390     self->eos = TRUE;
1391     GST_INPUT_SELECTOR_BROADCAST (self);
1392   }
1393
1394   return TRUE;
1395 }
1396
1397 static void
1398 gst_input_selector_set_property (GObject * object, guint prop_id,
1399     const GValue * value, GParamSpec * pspec)
1400 {
1401   GstInputSelector *sel = GST_INPUT_SELECTOR (object);
1402
1403   switch (prop_id) {
1404     case PROP_ACTIVE_PAD:
1405     {
1406       GstPad *pad;
1407
1408       pad = g_value_get_object (value);
1409
1410       GST_INPUT_SELECTOR_LOCK (sel);
1411
1412 #if DEBUG_CACHED_BUFFERS
1413       gst_input_selector_debug_cached_buffers (sel);
1414 #endif
1415
1416       gst_input_selector_set_active_pad (sel, pad);
1417
1418 #if DEBUG_CACHED_BUFFERS
1419       gst_input_selector_debug_cached_buffers (sel);
1420 #endif
1421
1422       GST_INPUT_SELECTOR_UNLOCK (sel);
1423       break;
1424     }
1425     case PROP_SYNC_STREAMS:
1426       GST_INPUT_SELECTOR_LOCK (sel);
1427       sel->sync_streams = g_value_get_boolean (value);
1428       GST_INPUT_SELECTOR_UNLOCK (sel);
1429       break;
1430     case PROP_SYNC_MODE:
1431       GST_INPUT_SELECTOR_LOCK (sel);
1432       sel->sync_mode = g_value_get_enum (value);
1433       GST_INPUT_SELECTOR_UNLOCK (sel);
1434       break;
1435     case PROP_CACHE_BUFFERS:
1436       GST_INPUT_SELECTOR_LOCK (object);
1437       sel->cache_buffers = g_value_get_boolean (value);
1438       GST_INPUT_SELECTOR_UNLOCK (object);
1439       break;
1440     default:
1441       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
1442       break;
1443   }
1444 }
1445
1446 static void
1447 gst_input_selector_active_pad_changed (GstInputSelector * sel,
1448     GParamSpec * pspec, gpointer user_data)
1449 {
1450   /* Wake up all non-active pads in sync mode, they might be
1451    * the active pad now */
1452   if (sel->sync_streams)
1453     GST_INPUT_SELECTOR_BROADCAST (sel);
1454 }
1455
1456 static void
1457 gst_input_selector_get_property (GObject * object, guint prop_id,
1458     GValue * value, GParamSpec * pspec)
1459 {
1460   GstInputSelector *sel = GST_INPUT_SELECTOR (object);
1461
1462   switch (prop_id) {
1463     case PROP_N_PADS:
1464       GST_INPUT_SELECTOR_LOCK (object);
1465       g_value_set_uint (value, sel->n_pads);
1466       GST_INPUT_SELECTOR_UNLOCK (object);
1467       break;
1468     case PROP_ACTIVE_PAD:
1469       GST_INPUT_SELECTOR_LOCK (object);
1470       g_value_set_object (value, sel->active_sinkpad);
1471       GST_INPUT_SELECTOR_UNLOCK (object);
1472       break;
1473     case PROP_SYNC_STREAMS:
1474       GST_INPUT_SELECTOR_LOCK (object);
1475       g_value_set_boolean (value, sel->sync_streams);
1476       GST_INPUT_SELECTOR_UNLOCK (object);
1477       break;
1478     case PROP_SYNC_MODE:
1479       GST_INPUT_SELECTOR_LOCK (object);
1480       g_value_set_enum (value, sel->sync_mode);
1481       GST_INPUT_SELECTOR_UNLOCK (object);
1482       break;
1483     case PROP_CACHE_BUFFERS:
1484       GST_INPUT_SELECTOR_LOCK (object);
1485       g_value_set_boolean (value, sel->cache_buffers);
1486       GST_INPUT_SELECTOR_UNLOCK (object);
1487       break;
1488     default:
1489       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
1490       break;
1491   }
1492 }
1493
1494 static GstPad *
1495 gst_input_selector_get_linked_pad (GstInputSelector * sel, GstPad * pad,
1496     gboolean strict)
1497 {
1498   GstPad *otherpad = NULL;
1499
1500   GST_INPUT_SELECTOR_LOCK (sel);
1501   if (pad == sel->srcpad)
1502     otherpad = sel->active_sinkpad;
1503   else if (pad == sel->active_sinkpad || !strict)
1504     otherpad = sel->srcpad;
1505   if (otherpad)
1506     gst_object_ref (otherpad);
1507   GST_INPUT_SELECTOR_UNLOCK (sel);
1508
1509   return otherpad;
1510 }
1511
1512 static gboolean
1513 gst_input_selector_event (GstPad * pad, GstObject * parent, GstEvent * event)
1514 {
1515   GstInputSelector *sel;
1516   gboolean result = FALSE;
1517   GstIterator *iter;
1518   gboolean done = FALSE;
1519   GValue item = { 0, };
1520   GstPad *eventpad;
1521   GList *pushed_pads = NULL;
1522
1523   sel = GST_INPUT_SELECTOR (parent);
1524   /* Send upstream events to all sinkpads */
1525   iter = gst_element_iterate_sink_pads (GST_ELEMENT_CAST (sel));
1526
1527   /* This is now essentially a copy of gst_pad_event_default_dispatch
1528    * with a different iterator */
1529   while (!done) {
1530     switch (gst_iterator_next (iter, &item)) {
1531       case GST_ITERATOR_OK:
1532         eventpad = g_value_get_object (&item);
1533
1534         /* if already pushed,  skip */
1535         if (g_list_find (pushed_pads, eventpad)) {
1536           g_value_reset (&item);
1537           break;
1538         }
1539
1540         gst_event_ref (event);
1541         result |= gst_pad_push_event (eventpad, event);
1542
1543         g_value_reset (&item);
1544         break;
1545       case GST_ITERATOR_RESYNC:
1546         /* We don't reset the result here because we don't push the event
1547          * again on pads that got the event already and because we need
1548          * to consider the result of the previous pushes */
1549         gst_iterator_resync (iter);
1550         break;
1551       case GST_ITERATOR_ERROR:
1552         GST_ERROR_OBJECT (pad, "Could not iterate over sinkpads");
1553         done = TRUE;
1554         break;
1555       case GST_ITERATOR_DONE:
1556         done = TRUE;
1557         break;
1558     }
1559   }
1560   g_value_unset (&item);
1561   gst_iterator_free (iter);
1562
1563   g_list_free (pushed_pads);
1564
1565   gst_event_unref (event);
1566
1567   return result;
1568 }
1569
1570 /* query on the srcpad. We override this function because by default it will
1571  * only forward the query to one random sinkpad */
1572 static gboolean
1573 gst_input_selector_query (GstPad * pad, GstObject * parent, GstQuery * query)
1574 {
1575   gboolean res = FALSE;
1576   GstInputSelector *sel;
1577
1578   sel = GST_INPUT_SELECTOR (parent);
1579
1580   switch (GST_QUERY_TYPE (query)) {
1581     case GST_QUERY_LATENCY:
1582     {
1583       GList *walk;
1584       GstClockTime resmin, resmax;
1585       gboolean reslive;
1586
1587       resmin = 0;
1588       resmax = -1;
1589       reslive = FALSE;
1590
1591       /* perform the query on all sinkpads and combine the results. We take the
1592        * max of min and the min of max for the result latency. */
1593       GST_INPUT_SELECTOR_LOCK (sel);
1594       for (walk = GST_ELEMENT_CAST (sel)->sinkpads; walk;
1595           walk = g_list_next (walk)) {
1596         GstPad *sinkpad = GST_PAD_CAST (walk->data);
1597
1598         if (gst_pad_peer_query (sinkpad, query)) {
1599           GstClockTime min, max;
1600           gboolean live;
1601
1602           /* one query succeeded, we succeed too */
1603           res = TRUE;
1604
1605           gst_query_parse_latency (query, &live, &min, &max);
1606
1607           GST_DEBUG_OBJECT (sinkpad,
1608               "peer latency min %" GST_TIME_FORMAT ", max %" GST_TIME_FORMAT
1609               ", live %d", GST_TIME_ARGS (min), GST_TIME_ARGS (max), live);
1610
1611           if (live) {
1612             if (min > resmin)
1613               resmin = min;
1614             if (resmax == -1)
1615               resmax = max;
1616             else if (max < resmax)
1617               resmax = max;
1618             if (!reslive)
1619               reslive = live;
1620           }
1621         }
1622       }
1623       GST_INPUT_SELECTOR_UNLOCK (sel);
1624       if (res) {
1625         gst_query_set_latency (query, reslive, resmin, resmax);
1626
1627         GST_DEBUG_OBJECT (sel,
1628             "total latency min %" GST_TIME_FORMAT ", max %" GST_TIME_FORMAT
1629             ", live %d", GST_TIME_ARGS (resmin), GST_TIME_ARGS (resmax),
1630             reslive);
1631       }
1632
1633       break;
1634     }
1635     default:
1636       res = gst_pad_query_default (pad, parent, query);
1637       break;
1638   }
1639
1640   return res;
1641 }
1642
1643 /* check if the pad is the active sinkpad */
1644 static inline gboolean
1645 gst_input_selector_is_active_sinkpad (GstInputSelector * sel, GstPad * pad)
1646 {
1647   gboolean res;
1648
1649   GST_INPUT_SELECTOR_LOCK (sel);
1650   res = (pad == sel->active_sinkpad);
1651   GST_INPUT_SELECTOR_UNLOCK (sel);
1652
1653   return res;
1654 }
1655
1656 /* Get or create the active sinkpad, must be called with SELECTOR_LOCK */
1657 static GstPad *
1658 gst_input_selector_activate_sinkpad (GstInputSelector * sel, GstPad * pad)
1659 {
1660   GstPad *active_sinkpad;
1661   GstSelectorPad *selpad;
1662
1663   selpad = GST_SELECTOR_PAD_CAST (pad);
1664
1665   selpad->active = TRUE;
1666   active_sinkpad = sel->active_sinkpad;
1667   if (active_sinkpad == NULL) {
1668     GValue item = G_VALUE_INIT;
1669     GstIterator *iter = gst_element_iterate_sink_pads (GST_ELEMENT_CAST (sel));
1670     GstIteratorResult ires;
1671
1672     while ((ires = gst_iterator_next (iter, &item)) == GST_ITERATOR_RESYNC)
1673       gst_iterator_resync (iter);
1674     if (ires == GST_ITERATOR_OK) {
1675       /* If no pad is currently selected, we return the first usable pad to
1676        * guarantee consistency */
1677
1678       active_sinkpad = sel->active_sinkpad = g_value_dup_object (&item);
1679       g_value_reset (&item);
1680       GST_DEBUG_OBJECT (sel, "Activating pad %s:%s",
1681           GST_DEBUG_PAD_NAME (active_sinkpad));
1682     } else
1683       GST_WARNING_OBJECT (sel, "Couldn't find a default sink pad");
1684     gst_iterator_free (iter);
1685   }
1686
1687   return active_sinkpad;
1688 }
1689
1690 static GstPad *
1691 gst_input_selector_request_new_pad (GstElement * element,
1692     GstPadTemplate * templ, const gchar * unused, const GstCaps * caps)
1693 {
1694   GstInputSelector *sel;
1695   gchar *name = NULL;
1696   GstPad *sinkpad = NULL;
1697
1698   g_return_val_if_fail (templ->direction == GST_PAD_SINK, NULL);
1699
1700   sel = GST_INPUT_SELECTOR (element);
1701
1702   GST_INPUT_SELECTOR_LOCK (sel);
1703
1704   GST_LOG_OBJECT (sel, "Creating new pad sink_%u", sel->padcount);
1705   name = g_strdup_printf ("sink_%u", sel->padcount++);
1706   sinkpad = g_object_new (GST_TYPE_SELECTOR_PAD,
1707       "name", name, "direction", templ->direction, "template", templ, NULL);
1708   g_free (name);
1709
1710   sel->n_pads++;
1711
1712   gst_pad_set_event_function (sinkpad,
1713       GST_DEBUG_FUNCPTR (gst_selector_pad_event));
1714   gst_pad_set_query_function (sinkpad,
1715       GST_DEBUG_FUNCPTR (gst_selector_pad_query));
1716   gst_pad_set_chain_function (sinkpad,
1717       GST_DEBUG_FUNCPTR (gst_selector_pad_chain));
1718   gst_pad_set_iterate_internal_links_function (sinkpad,
1719       GST_DEBUG_FUNCPTR (gst_selector_pad_iterate_linked_pads));
1720
1721   GST_OBJECT_FLAG_SET (sinkpad, GST_PAD_FLAG_PROXY_CAPS);
1722   GST_OBJECT_FLAG_SET (sinkpad, GST_PAD_FLAG_PROXY_ALLOCATION);
1723   gst_pad_set_active (sinkpad, TRUE);
1724   gst_element_add_pad (GST_ELEMENT (sel), sinkpad);
1725   GST_INPUT_SELECTOR_UNLOCK (sel);
1726
1727   return sinkpad;
1728 }
1729
1730 static void
1731 gst_input_selector_release_pad (GstElement * element, GstPad * pad)
1732 {
1733   GstInputSelector *sel;
1734
1735   sel = GST_INPUT_SELECTOR (element);
1736   GST_LOG_OBJECT (sel, "Releasing pad %s:%s", GST_DEBUG_PAD_NAME (pad));
1737
1738   GST_INPUT_SELECTOR_LOCK (sel);
1739   /* if the pad was the active pad, makes us select a new one */
1740   if (sel->active_sinkpad == pad) {
1741     GST_DEBUG_OBJECT (sel, "Deactivating pad %s:%s", GST_DEBUG_PAD_NAME (pad));
1742     gst_object_unref (sel->active_sinkpad);
1743     sel->active_sinkpad = NULL;
1744   }
1745   sel->n_pads--;
1746   GST_INPUT_SELECTOR_UNLOCK (sel);
1747
1748   gst_pad_set_active (pad, FALSE);
1749   gst_element_remove_pad (GST_ELEMENT (sel), pad);
1750 }
1751
1752 static void
1753 gst_input_selector_reset (GstInputSelector * sel)
1754 {
1755   GList *walk;
1756
1757   GST_INPUT_SELECTOR_LOCK (sel);
1758   /* clear active pad */
1759   if (sel->active_sinkpad) {
1760     gst_object_unref (sel->active_sinkpad);
1761     sel->active_sinkpad = NULL;
1762   }
1763   /* reset each of our sinkpads state */
1764   for (walk = GST_ELEMENT_CAST (sel)->sinkpads; walk; walk = g_list_next (walk)) {
1765     GstSelectorPad *selpad = GST_SELECTOR_PAD_CAST (walk->data);
1766
1767     gst_selector_pad_reset (selpad);
1768
1769     if (selpad->tags) {
1770       gst_tag_list_unref (selpad->tags);
1771       selpad->tags = NULL;
1772     }
1773   }
1774   sel->have_group_id = TRUE;
1775   GST_INPUT_SELECTOR_UNLOCK (sel);
1776 }
1777
1778 static GstStateChangeReturn
1779 gst_input_selector_change_state (GstElement * element,
1780     GstStateChange transition)
1781 {
1782   GstInputSelector *self = GST_INPUT_SELECTOR (element);
1783   GstStateChangeReturn result;
1784
1785   switch (transition) {
1786     case GST_STATE_CHANGE_READY_TO_PAUSED:
1787       GST_INPUT_SELECTOR_LOCK (self);
1788       self->eos = FALSE;
1789       self->blocked = FALSE;
1790       self->flushing = FALSE;
1791       GST_INPUT_SELECTOR_UNLOCK (self);
1792       break;
1793     case GST_STATE_CHANGE_PAUSED_TO_READY:
1794       /* first unlock before we call the parent state change function, which
1795        * tries to acquire the stream lock when going to ready. */
1796       GST_INPUT_SELECTOR_LOCK (self);
1797       self->eos = TRUE;
1798       self->blocked = FALSE;
1799       self->flushing = TRUE;
1800       GST_INPUT_SELECTOR_BROADCAST (self);
1801       GST_INPUT_SELECTOR_UNLOCK (self);
1802       break;
1803     default:
1804       break;
1805   }
1806
1807   result = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
1808
1809   switch (transition) {
1810     case GST_STATE_CHANGE_PAUSED_TO_READY:
1811       gst_input_selector_reset (self);
1812       break;
1813     default:
1814       break;
1815   }
1816
1817   return result;
1818 }
1819
1820 static gint64
1821 gst_input_selector_block (GstInputSelector * self)
1822 {
1823   gint64 ret = 0;
1824   GstSelectorPad *spad;
1825
1826   GST_INPUT_SELECTOR_LOCK (self);
1827
1828   if (self->blocked)
1829     GST_WARNING_OBJECT (self, "switch already blocked");
1830
1831   self->blocked = TRUE;
1832   spad = GST_SELECTOR_PAD_CAST (self->active_sinkpad);
1833
1834   if (spad)
1835     ret = gst_selector_pad_get_running_time (spad);
1836   else
1837     GST_DEBUG_OBJECT (self, "no active pad while blocking");
1838
1839   GST_INPUT_SELECTOR_UNLOCK (self);
1840
1841   return ret;
1842 }