inputselector: Forward all sticky events when switching pads
[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., 59 Temple Place - Suite 330,
23  * Boston, MA 02111-1307, 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  * Since: 0.10.32
52  */
53
54 #ifdef HAVE_CONFIG_H
55 #include "config.h"
56 #endif
57
58 #include <string.h>
59
60 #include "gstinputselector.h"
61
62 #include "gst/glib-compat-private.h"
63
64 GST_DEBUG_CATEGORY_STATIC (input_selector_debug);
65 #define GST_CAT_DEFAULT input_selector_debug
66
67 static GstStaticPadTemplate gst_input_selector_sink_factory =
68 GST_STATIC_PAD_TEMPLATE ("sink_%u",
69     GST_PAD_SINK,
70     GST_PAD_REQUEST,
71     GST_STATIC_CAPS_ANY);
72
73 static GstStaticPadTemplate gst_input_selector_src_factory =
74 GST_STATIC_PAD_TEMPLATE ("src",
75     GST_PAD_SRC,
76     GST_PAD_ALWAYS,
77     GST_STATIC_CAPS_ANY);
78
79 enum
80 {
81   PROP_0,
82   PROP_N_PADS,
83   PROP_ACTIVE_PAD,
84   PROP_SYNC_STREAMS
85 };
86
87 #define DEFAULT_SYNC_STREAMS TRUE
88
89 #define DEFAULT_PAD_ALWAYS_OK TRUE
90
91 enum
92 {
93   PROP_PAD_0,
94   PROP_PAD_RUNNING_TIME,
95   PROP_PAD_TAGS,
96   PROP_PAD_ACTIVE,
97   PROP_PAD_ALWAYS_OK
98 };
99
100 enum
101 {
102   /* methods */
103   SIGNAL_BLOCK,
104   SIGNAL_SWITCH,
105   LAST_SIGNAL
106 };
107 static guint gst_input_selector_signals[LAST_SIGNAL] = { 0 };
108
109 static inline gboolean gst_input_selector_is_active_sinkpad (GstInputSelector *
110     sel, GstPad * pad);
111 static GstPad *gst_input_selector_activate_sinkpad (GstInputSelector * sel,
112     GstPad * pad);
113 static GstPad *gst_input_selector_get_linked_pad (GstInputSelector * sel,
114     GstPad * pad, gboolean strict);
115
116 #define GST_TYPE_SELECTOR_PAD \
117   (gst_selector_pad_get_type())
118 #define GST_SELECTOR_PAD(obj) \
119   (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_SELECTOR_PAD, GstSelectorPad))
120 #define GST_SELECTOR_PAD_CLASS(klass) \
121   (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_SELECTOR_PAD, GstSelectorPadClass))
122 #define GST_IS_SELECTOR_PAD(obj) \
123   (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_SELECTOR_PAD))
124 #define GST_IS_SELECTOR_PAD_CLASS(klass) \
125   (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_SELECTOR_PAD))
126 #define GST_SELECTOR_PAD_CAST(obj) \
127   ((GstSelectorPad *)(obj))
128
129 typedef struct _GstSelectorPad GstSelectorPad;
130 typedef struct _GstSelectorPadClass GstSelectorPadClass;
131
132 struct _GstSelectorPad
133 {
134   GstPad parent;
135
136   gboolean active;              /* when buffer have passed the pad */
137   gboolean pushed;              /* when buffer was pushed downstream since activation */
138   gboolean eos;                 /* when EOS has been received */
139   gboolean eos_sent;            /* when EOS was sent downstream */
140   gboolean discont;             /* after switching we create a discont */
141   gboolean flushing;            /* set after flush-start and before flush-stop */
142   gboolean always_ok;
143   GstTagList *tags;             /* last tags received on the pad */
144
145   GstClockTime position;        /* the current position in the segment */
146   GstSegment segment;           /* the current segment on the pad */
147   guint32 segment_seqnum;       /* sequence number of the current segment */
148
149   gboolean events_pending;      /* TRUE if sticky events need to be updated */
150 };
151
152 struct _GstSelectorPadClass
153 {
154   GstPadClass parent;
155 };
156
157 GType gst_selector_pad_get_type (void);
158 static void gst_selector_pad_finalize (GObject * object);
159 static void gst_selector_pad_get_property (GObject * object,
160     guint prop_id, GValue * value, GParamSpec * pspec);
161 static void gst_selector_pad_set_property (GObject * object,
162     guint prop_id, const GValue * value, GParamSpec * pspec);
163
164 static gint64 gst_selector_pad_get_running_time (GstSelectorPad * pad);
165 static void gst_selector_pad_reset (GstSelectorPad * pad);
166 static gboolean gst_selector_pad_event (GstPad * pad, GstObject * parent,
167     GstEvent * event);
168 static gboolean gst_selector_pad_query (GstPad * pad, GstObject * parent,
169     GstQuery * query);
170 static GstIterator *gst_selector_pad_iterate_linked_pads (GstPad * pad,
171     GstObject * parent);
172 static GstFlowReturn gst_selector_pad_chain (GstPad * pad, GstObject * parent,
173     GstBuffer * buf);
174
175 G_DEFINE_TYPE (GstSelectorPad, gst_selector_pad, GST_TYPE_PAD);
176
177 static void
178 gst_selector_pad_class_init (GstSelectorPadClass * klass)
179 {
180   GObjectClass *gobject_class;
181
182   gobject_class = (GObjectClass *) klass;
183
184   gobject_class->finalize = gst_selector_pad_finalize;
185
186   gobject_class->get_property = gst_selector_pad_get_property;
187   gobject_class->set_property = gst_selector_pad_set_property;
188
189   g_object_class_install_property (gobject_class, PROP_PAD_RUNNING_TIME,
190       g_param_spec_int64 ("running-time", "Running time",
191           "Running time of stream on pad", 0, G_MAXINT64, 0,
192           G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
193   g_object_class_install_property (gobject_class, PROP_PAD_TAGS,
194       g_param_spec_boxed ("tags", "Tags",
195           "The currently active tags on the pad", GST_TYPE_TAG_LIST,
196           G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
197   g_object_class_install_property (gobject_class, PROP_PAD_ACTIVE,
198       g_param_spec_boolean ("active", "Active",
199           "If the pad is currently active", FALSE,
200           G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
201   /* FIXME: better property name? */
202   g_object_class_install_property (gobject_class, PROP_PAD_ALWAYS_OK,
203       g_param_spec_boolean ("always-ok", "Always OK",
204           "Make an inactive pad return OK instead of NOT_LINKED",
205           DEFAULT_PAD_ALWAYS_OK, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
206 }
207
208 static void
209 gst_selector_pad_init (GstSelectorPad * pad)
210 {
211   pad->always_ok = DEFAULT_PAD_ALWAYS_OK;
212   gst_selector_pad_reset (pad);
213 }
214
215 static void
216 gst_selector_pad_finalize (GObject * object)
217 {
218   GstSelectorPad *pad;
219
220   pad = GST_SELECTOR_PAD_CAST (object);
221
222   if (pad->tags)
223     gst_tag_list_free (pad->tags);
224
225   G_OBJECT_CLASS (gst_selector_pad_parent_class)->finalize (object);
226 }
227
228 static void
229 gst_selector_pad_set_property (GObject * object, guint prop_id,
230     const GValue * value, GParamSpec * pspec)
231 {
232   GstSelectorPad *spad = GST_SELECTOR_PAD_CAST (object);
233
234   switch (prop_id) {
235     case PROP_PAD_ALWAYS_OK:
236       GST_OBJECT_LOCK (object);
237       spad->always_ok = g_value_get_boolean (value);
238       GST_OBJECT_UNLOCK (object);
239       break;
240     default:
241       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
242       break;
243   }
244 }
245
246 static void
247 gst_selector_pad_get_property (GObject * object, guint prop_id,
248     GValue * value, GParamSpec * pspec)
249 {
250   GstSelectorPad *spad = GST_SELECTOR_PAD_CAST (object);
251
252   switch (prop_id) {
253     case PROP_PAD_RUNNING_TIME:
254       g_value_set_int64 (value, gst_selector_pad_get_running_time (spad));
255       break;
256     case PROP_PAD_TAGS:
257       GST_OBJECT_LOCK (object);
258       g_value_set_boxed (value, spad->tags);
259       GST_OBJECT_UNLOCK (object);
260       break;
261     case PROP_PAD_ACTIVE:
262     {
263       GstInputSelector *sel;
264
265       sel = GST_INPUT_SELECTOR (gst_pad_get_parent (spad));
266       g_value_set_boolean (value, gst_input_selector_is_active_sinkpad (sel,
267               GST_PAD_CAST (spad)));
268       gst_object_unref (sel);
269       break;
270     }
271     case PROP_PAD_ALWAYS_OK:
272       GST_OBJECT_LOCK (object);
273       g_value_set_boolean (value, spad->always_ok);
274       GST_OBJECT_UNLOCK (object);
275       break;
276     default:
277       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
278       break;
279   }
280 }
281
282 static gint64
283 gst_selector_pad_get_running_time (GstSelectorPad * pad)
284 {
285   gint64 ret = 0;
286
287   GST_OBJECT_LOCK (pad);
288   if (pad->active) {
289     guint64 position = pad->position;
290     GstFormat format = pad->segment.format;
291
292     ret = gst_segment_to_running_time (&pad->segment, format, position);
293   }
294   GST_OBJECT_UNLOCK (pad);
295
296   GST_DEBUG_OBJECT (pad, "running time: %" GST_TIME_FORMAT,
297       GST_TIME_ARGS (ret));
298
299   return ret;
300 }
301
302 static void
303 gst_selector_pad_reset (GstSelectorPad * pad)
304 {
305   GST_OBJECT_LOCK (pad);
306   pad->active = FALSE;
307   pad->pushed = FALSE;
308   pad->eos = FALSE;
309   pad->eos_sent = FALSE;
310   pad->events_pending = FALSE;
311   pad->discont = FALSE;
312   pad->flushing = FALSE;
313   pad->position = GST_CLOCK_TIME_NONE;
314   gst_segment_init (&pad->segment, GST_FORMAT_UNDEFINED);
315   GST_OBJECT_UNLOCK (pad);
316 }
317
318 /* strictly get the linked pad from the sinkpad. If the pad is active we return
319  * the srcpad else we return NULL */
320 static GstIterator *
321 gst_selector_pad_iterate_linked_pads (GstPad * pad, GstObject * parent)
322 {
323   GstInputSelector *sel;
324   GstPad *otherpad;
325   GstIterator *it = NULL;
326   GValue val = { 0, };
327
328   sel = GST_INPUT_SELECTOR (parent);
329
330   otherpad = gst_input_selector_get_linked_pad (sel, pad, TRUE);
331   if (otherpad) {
332     g_value_init (&val, GST_TYPE_PAD);
333     g_value_set_object (&val, otherpad);
334     it = gst_iterator_new_single (GST_TYPE_PAD, &val);
335     g_value_unset (&val);
336     gst_object_unref (otherpad);
337   }
338
339   return it;
340 }
341
342 static gboolean
343 gst_selector_pad_event (GstPad * pad, GstObject * parent, GstEvent * event)
344 {
345   gboolean res = TRUE;
346   gboolean forward;
347   GstInputSelector *sel;
348   GstSelectorPad *selpad;
349   GstPad *prev_active_sinkpad;
350   GstPad *active_sinkpad;
351
352   sel = GST_INPUT_SELECTOR (parent);
353   selpad = GST_SELECTOR_PAD_CAST (pad);
354
355   GST_INPUT_SELECTOR_LOCK (sel);
356   prev_active_sinkpad = sel->active_sinkpad;
357   active_sinkpad = gst_input_selector_activate_sinkpad (sel, pad);
358
359   /* only forward if we are dealing with the active sinkpad */
360   forward = (pad == active_sinkpad);
361   GST_INPUT_SELECTOR_UNLOCK (sel);
362
363   if (prev_active_sinkpad != active_sinkpad && pad == active_sinkpad) {
364     g_object_notify (G_OBJECT (sel), "active-pad");
365   }
366
367   switch (GST_EVENT_TYPE (event)) {
368     case GST_EVENT_FLUSH_START:
369       /* Unblock the pad if it's waiting */
370       GST_INPUT_SELECTOR_LOCK (sel);
371       selpad->flushing = TRUE;
372       GST_INPUT_SELECTOR_BROADCAST (sel);
373       GST_INPUT_SELECTOR_UNLOCK (sel);
374       break;
375     case GST_EVENT_FLUSH_STOP:
376       GST_INPUT_SELECTOR_LOCK (sel);
377       gst_selector_pad_reset (selpad);
378       GST_INPUT_SELECTOR_UNLOCK (sel);
379       break;
380     case GST_EVENT_SEGMENT:
381     {
382       GST_INPUT_SELECTOR_LOCK (sel);
383       GST_OBJECT_LOCK (selpad);
384       gst_event_copy_segment (event, &selpad->segment);
385       selpad->segment_seqnum = gst_event_get_seqnum (event);
386
387       /* Update the position */
388       if (selpad->position == GST_CLOCK_TIME_NONE
389           || selpad->segment.position > selpad->position) {
390         selpad->position = selpad->segment.position;
391       } else if (selpad->position != GST_CLOCK_TIME_NONE
392           && selpad->position > selpad->segment.position) {
393         selpad->segment.position = selpad->position;
394
395         if (forward) {
396           gst_event_unref (event);
397           event = gst_event_new_segment (&selpad->segment);
398           gst_event_set_seqnum (event, selpad->segment_seqnum);
399         }
400       }
401       GST_DEBUG_OBJECT (pad, "configured SEGMENT %" GST_SEGMENT_FORMAT,
402           &selpad->segment);
403
404       GST_OBJECT_UNLOCK (selpad);
405       GST_INPUT_SELECTOR_UNLOCK (sel);
406       break;
407     }
408     case GST_EVENT_TAG:
409     {
410       GstTagList *tags, *oldtags, *newtags;
411
412       gst_event_parse_tag (event, &tags);
413
414       GST_OBJECT_LOCK (selpad);
415       oldtags = selpad->tags;
416
417       newtags = gst_tag_list_merge (oldtags, tags, GST_TAG_MERGE_REPLACE);
418       selpad->tags = newtags;
419       if (oldtags)
420         gst_tag_list_free (oldtags);
421       GST_DEBUG_OBJECT (pad, "received tags %" GST_PTR_FORMAT, newtags);
422       GST_OBJECT_UNLOCK (selpad);
423
424       g_object_notify (G_OBJECT (selpad), "tags");
425       break;
426     }
427     case GST_EVENT_EOS:
428       selpad->eos = TRUE;
429
430       if (forward) {
431         selpad->eos_sent = TRUE;
432       } else {
433         GstSelectorPad *tmp;
434
435         /* If the active sinkpad is in EOS state but EOS
436          * was not sent downstream this means that the pad
437          * got EOS before it was set as active pad and that
438          * the previously active pad got EOS after it was
439          * active
440          */
441         GST_INPUT_SELECTOR_LOCK (sel);
442         active_sinkpad = gst_input_selector_activate_sinkpad (sel, pad);
443         tmp = GST_SELECTOR_PAD (active_sinkpad);
444         forward = (tmp->eos && !tmp->eos_sent);
445         tmp->eos_sent = TRUE;
446         GST_INPUT_SELECTOR_UNLOCK (sel);
447       }
448       GST_DEBUG_OBJECT (pad, "received EOS");
449       break;
450     default:
451       break;
452   }
453   if (forward) {
454     GST_DEBUG_OBJECT (pad, "forwarding event");
455     res = gst_pad_push_event (sel->srcpad, event);
456   } else {
457     /* If we aren't forwarding the event because the pad is not the
458      * active_sinkpad, then set the flag on the pad
459      * that says a segment needs sending if/when that pad is activated.
460      * For all other cases, we send the event immediately, which makes
461      * sparse streams and other segment updates work correctly downstream.
462      */
463     if (GST_EVENT_IS_STICKY (event))
464       selpad->events_pending = TRUE;
465     gst_event_unref (event);
466   }
467
468   return res;
469 }
470
471 static gboolean
472 gst_selector_pad_query (GstPad * pad, GstObject * parent, GstQuery * query)
473 {
474   gboolean res = FALSE;
475
476   switch (GST_QUERY_TYPE (query)) {
477     default:
478       res = gst_pad_query_default (pad, parent, query);
479       break;
480   }
481
482   return res;
483 }
484
485 /* must be called with the SELECTOR_LOCK, will block while the pad is blocked 
486  * or return TRUE when flushing */
487 static gboolean
488 gst_input_selector_wait (GstInputSelector * self, GstSelectorPad * pad)
489 {
490   while (self->blocked && !self->flushing && !pad->flushing) {
491     /* we can be unlocked here when we are shutting down (flushing) or when we
492      * get unblocked */
493     GST_INPUT_SELECTOR_WAIT (self);
494   }
495   return self->flushing;
496 }
497
498 /* must be called with the SELECTOR_LOCK, will block until the running time
499  * of the active pad is after this pad or return TRUE when flushing */
500 static gboolean
501 gst_input_selector_wait_running_time (GstInputSelector * sel,
502     GstSelectorPad * pad, GstBuffer * buf)
503 {
504   GstPad *active_sinkpad;
505   GstSelectorPad *active_selpad;
506   GstSegment *seg, *active_seg;
507   GstClockTime running_time, active_running_time = GST_CLOCK_TIME_NONE;
508
509   seg = &pad->segment;
510
511   active_sinkpad =
512       gst_input_selector_activate_sinkpad (sel, GST_PAD_CAST (pad));
513   active_selpad = GST_SELECTOR_PAD_CAST (active_sinkpad);
514   active_seg = &active_selpad->segment;
515
516   /* We can only sync if the segments are in time format or
517    * if the active pad had no newsegment event yet */
518   if (seg->format != GST_FORMAT_TIME ||
519       (active_seg->format != GST_FORMAT_TIME
520           && active_seg->format != GST_FORMAT_UNDEFINED))
521     return FALSE;
522
523   /* If we have no valid timestamp we can't sync this buffer */
524   if (!GST_BUFFER_TIMESTAMP_IS_VALID (buf))
525     return FALSE;
526
527   running_time = GST_BUFFER_TIMESTAMP (buf);
528   /* If possible try to get the running time at the end of the buffer */
529   if (GST_BUFFER_DURATION_IS_VALID (buf))
530     running_time += GST_BUFFER_DURATION (buf);
531   if (running_time > seg->stop)
532     running_time = seg->stop;
533   running_time =
534       gst_segment_to_running_time (seg, GST_FORMAT_TIME, running_time);
535   /* If this is outside the segment don't sync */
536   if (running_time == -1)
537     return FALSE;
538
539   /* Get active pad's running time, if no configured segment yet keep at -1 */
540   if (active_seg->format == GST_FORMAT_TIME)
541     active_running_time =
542         gst_segment_to_running_time (active_seg, GST_FORMAT_TIME,
543         active_selpad->position);
544
545   /* Wait until
546    *   a) this is the active pad
547    *   b) the pad or the selector is flushing
548    *   c) the selector is not blocked
549    *   d) the active pad has no running time or the active
550    *      pad's running time is before this running time
551    *   e) the active pad has a non-time segment
552    *   f) the active pad changed and has not pushed anything
553    */
554   while (pad != active_selpad && !sel->flushing && !pad->flushing
555       && active_selpad->pushed && (sel->blocked || active_running_time == -1
556           || running_time >= active_running_time)) {
557     if (!sel->blocked)
558       GST_DEBUG_OBJECT (pad,
559           "Waiting for active streams to advance. %" GST_TIME_FORMAT " >= %"
560           GST_TIME_FORMAT, GST_TIME_ARGS (running_time),
561           GST_TIME_ARGS (active_running_time));
562
563     GST_INPUT_SELECTOR_WAIT (sel);
564
565     /* Get new active pad, it might have changed */
566     active_sinkpad =
567         gst_input_selector_activate_sinkpad (sel, GST_PAD_CAST (pad));
568     active_selpad = GST_SELECTOR_PAD_CAST (active_sinkpad);
569     active_seg = &active_selpad->segment;
570
571     /* If the active segment is configured but not to time format
572      * we can't do any syncing at all */
573     if (active_seg->format != GST_FORMAT_TIME
574         && active_seg->format != GST_FORMAT_UNDEFINED)
575       break;
576
577     /* Get the new active pad running time */
578     if (active_seg->format == GST_FORMAT_TIME)
579       active_running_time =
580           gst_segment_to_running_time (active_seg, GST_FORMAT_TIME,
581           active_selpad->position);
582     else
583       active_running_time = -1;
584
585     if (!sel->blocked)
586       GST_DEBUG_OBJECT (pad,
587           "Waited for active streams to advance. %" GST_TIME_FORMAT " >= %"
588           GST_TIME_FORMAT, GST_TIME_ARGS (running_time),
589           GST_TIME_ARGS (active_running_time));
590
591   }
592
593   /* Return TRUE if the selector or the pad is flushing */
594   return (sel->flushing || pad->flushing);
595 }
596
597 static gboolean
598 forward_sticky_events (GstPad * sinkpad, GstEvent ** event, gpointer user_data)
599 {
600   GstInputSelector *sel = GST_INPUT_SELECTOR (user_data);
601
602   if (GST_EVENT_TYPE (*event) == GST_EVENT_SEGMENT) {
603     GstSegment *seg = &GST_SELECTOR_PAD (sinkpad)->segment;
604
605     gst_pad_push_event (sel->srcpad, gst_event_new_segment (seg));
606   } else {
607     gst_pad_push_event (sel->srcpad, gst_event_ref (*event));
608   }
609
610   return TRUE;
611 }
612
613 static GstFlowReturn
614 gst_selector_pad_chain (GstPad * pad, GstObject * parent, GstBuffer * buf)
615 {
616   GstInputSelector *sel;
617   GstFlowReturn res;
618   GstPad *active_sinkpad;
619   GstPad *prev_active_sinkpad;
620   GstSelectorPad *selpad;
621   GstClockTime start_time;
622
623   sel = GST_INPUT_SELECTOR (parent);
624   selpad = GST_SELECTOR_PAD_CAST (pad);
625
626   GST_INPUT_SELECTOR_LOCK (sel);
627   /* wait or check for flushing */
628   if (gst_input_selector_wait (sel, selpad))
629     goto flushing;
630
631   GST_LOG_OBJECT (pad, "getting active pad");
632
633   prev_active_sinkpad = sel->active_sinkpad;
634   active_sinkpad = gst_input_selector_activate_sinkpad (sel, pad);
635
636   /* In sync mode wait until the active pad has advanced
637    * after the running time of the current buffer */
638   if (sel->sync_streams && active_sinkpad != pad) {
639     if (gst_input_selector_wait_running_time (sel, selpad, buf))
640       goto flushing;
641   }
642
643   /* Might have changed while waiting */
644   active_sinkpad = gst_input_selector_activate_sinkpad (sel, pad);
645
646   /* update the segment on the srcpad */
647   start_time = GST_BUFFER_TIMESTAMP (buf);
648   if (GST_CLOCK_TIME_IS_VALID (start_time)) {
649     GST_LOG_OBJECT (pad, "received start time %" GST_TIME_FORMAT,
650         GST_TIME_ARGS (start_time));
651     if (GST_BUFFER_DURATION_IS_VALID (buf))
652       GST_LOG_OBJECT (pad, "received end time %" GST_TIME_FORMAT,
653           GST_TIME_ARGS (start_time + GST_BUFFER_DURATION (buf)));
654
655     GST_OBJECT_LOCK (pad);
656     selpad->position = start_time;
657     selpad->segment.position = start_time;
658     GST_OBJECT_UNLOCK (pad);
659   }
660
661   /* Ignore buffers from pads except the selected one */
662   if (pad != active_sinkpad)
663     goto ignore;
664
665   /* Tell all non-active pads that we advanced the running time */
666   if (sel->sync_streams)
667     GST_INPUT_SELECTOR_BROADCAST (sel);
668
669   GST_INPUT_SELECTOR_UNLOCK (sel);
670
671   if (prev_active_sinkpad != active_sinkpad && pad == active_sinkpad) {
672     g_object_notify (G_OBJECT (sel), "active-pad");
673   }
674
675   /* if we have a pending events, push them now */
676   if (G_UNLIKELY (prev_active_sinkpad != active_sinkpad
677           || selpad->events_pending)) {
678     gst_pad_sticky_events_foreach (GST_PAD_CAST (selpad), forward_sticky_events,
679         sel);
680     selpad->events_pending = FALSE;
681   }
682
683   if (selpad->discont) {
684     buf = gst_buffer_make_writable (buf);
685
686     GST_DEBUG_OBJECT (pad, "Marking discont buffer %p", buf);
687     GST_BUFFER_FLAG_SET (buf, GST_BUFFER_FLAG_DISCONT);
688     selpad->discont = FALSE;
689   }
690
691   /* forward */
692   GST_LOG_OBJECT (pad, "Forwarding buffer %p", buf);
693
694   res = gst_pad_push (sel->srcpad, buf);
695   selpad->pushed = TRUE;
696
697 done:
698   return res;
699
700   /* dropped buffers */
701 ignore:
702   {
703     gboolean active_pad_pushed = GST_SELECTOR_PAD_CAST (active_sinkpad)->pushed;
704
705     GST_DEBUG_OBJECT (pad, "Pad not active, discard buffer %p", buf);
706     /* when we drop a buffer, we're creating a discont on this pad */
707     selpad->discont = TRUE;
708     GST_INPUT_SELECTOR_UNLOCK (sel);
709     gst_buffer_unref (buf);
710
711     /* figure out what to return upstream */
712     GST_OBJECT_LOCK (selpad);
713     if (selpad->always_ok || !active_pad_pushed)
714       res = GST_FLOW_OK;
715     else
716       res = GST_FLOW_NOT_LINKED;
717     GST_OBJECT_UNLOCK (selpad);
718
719     goto done;
720   }
721 flushing:
722   {
723     GST_DEBUG_OBJECT (pad, "We are flushing, discard buffer %p", buf);
724     GST_INPUT_SELECTOR_UNLOCK (sel);
725     gst_buffer_unref (buf);
726     res = GST_FLOW_FLUSHING;
727     goto done;
728   }
729 }
730
731 static void gst_input_selector_dispose (GObject * object);
732 static void gst_input_selector_finalize (GObject * object);
733
734 static void gst_input_selector_set_property (GObject * object,
735     guint prop_id, const GValue * value, GParamSpec * pspec);
736 static void gst_input_selector_get_property (GObject * object,
737     guint prop_id, GValue * value, GParamSpec * pspec);
738
739 static GstPad *gst_input_selector_request_new_pad (GstElement * element,
740     GstPadTemplate * templ, const gchar * unused, const GstCaps * caps);
741 static void gst_input_selector_release_pad (GstElement * element, GstPad * pad);
742
743 static GstStateChangeReturn gst_input_selector_change_state (GstElement *
744     element, GstStateChange transition);
745
746 static gboolean gst_input_selector_event (GstPad * pad, GstObject * parent,
747     GstEvent * event);
748 static gboolean gst_input_selector_query (GstPad * pad, GstObject * parent,
749     GstQuery * query);
750 static gint64 gst_input_selector_block (GstInputSelector * self);
751
752 /* FIXME: create these marshallers using glib-genmarshal */
753 static void
754 gst_input_selector_marshal_INT64__VOID (GClosure * closure,
755     GValue * return_value G_GNUC_UNUSED,
756     guint n_param_values,
757     const GValue * param_values,
758     gpointer invocation_hint G_GNUC_UNUSED, gpointer marshal_data)
759 {
760   typedef gint64 (*GMarshalFunc_INT64__VOID) (gpointer data1, gpointer data2);
761   register GMarshalFunc_INT64__VOID callback;
762   register GCClosure *cc = (GCClosure *) closure;
763   register gpointer data1, data2;
764   gint64 v_return;
765
766   g_return_if_fail (return_value != NULL);
767   g_return_if_fail (n_param_values == 1);
768
769   if (G_CCLOSURE_SWAP_DATA (closure)) {
770     data1 = closure->data;
771     data2 = g_value_peek_pointer (param_values + 0);
772   } else {
773     data1 = g_value_peek_pointer (param_values + 0);
774     data2 = closure->data;
775   }
776   callback =
777       (GMarshalFunc_INT64__VOID) (marshal_data ? marshal_data : cc->callback);
778
779   v_return = callback (data1, data2);
780
781   g_value_set_int64 (return_value, v_return);
782 }
783
784 #define _do_init \
785     GST_DEBUG_CATEGORY_INIT (input_selector_debug, \
786         "input-selector", 0, "An input stream selector element");
787 #define gst_input_selector_parent_class parent_class
788 G_DEFINE_TYPE_WITH_CODE (GstInputSelector, gst_input_selector, GST_TYPE_ELEMENT,
789     _do_init);
790
791 static void
792 gst_input_selector_class_init (GstInputSelectorClass * klass)
793 {
794   GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
795   GstElementClass *gstelement_class = GST_ELEMENT_CLASS (klass);
796
797   gobject_class->dispose = gst_input_selector_dispose;
798   gobject_class->finalize = gst_input_selector_finalize;
799
800   gobject_class->set_property = gst_input_selector_set_property;
801   gobject_class->get_property = gst_input_selector_get_property;
802
803   g_object_class_install_property (gobject_class, PROP_N_PADS,
804       g_param_spec_uint ("n-pads", "Number of Pads",
805           "The number of sink pads", 0, G_MAXUINT, 0,
806           G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
807
808   g_object_class_install_property (gobject_class, PROP_ACTIVE_PAD,
809       g_param_spec_object ("active-pad", "Active pad",
810           "The currently active sink pad", GST_TYPE_PAD,
811           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
812
813   /**
814    * GstInputSelector:sync-streams
815    *
816    * If set to %TRUE all inactive streams will be synced to the
817    * running time of the active stream. This makes sure that no
818    * buffers are dropped by input-selector that might be needed
819    * when switching the active pad.
820    *
821    * Since: 0.10.36
822    */
823   g_object_class_install_property (gobject_class, PROP_SYNC_STREAMS,
824       g_param_spec_boolean ("sync-streams", "Sync Streams",
825           "Synchronize inactive streams to the running time of the active stream",
826           DEFAULT_SYNC_STREAMS, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
827
828   /**
829    * GstInputSelector::block:
830    * @inputselector: the #GstInputSelector
831    *
832    * Block all sink pads in preparation for a switch. Returns the stop time of
833    * the current switch segment, as a running time, or 0 if there is no current
834    * active pad or the current active pad never received data.
835    */
836   gst_input_selector_signals[SIGNAL_BLOCK] =
837       g_signal_new ("block", G_TYPE_FROM_CLASS (klass),
838       G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
839       G_STRUCT_OFFSET (GstInputSelectorClass, block), NULL, NULL,
840       gst_input_selector_marshal_INT64__VOID, G_TYPE_INT64, 0);
841
842   gst_element_class_set_static_metadata (gstelement_class, "Input selector",
843       "Generic", "N-to-1 input stream selector",
844       "Julien Moutte <julien@moutte.net>, "
845       "Jan Schmidt <thaytan@mad.scientist.com>, "
846       "Wim Taymans <wim.taymans@gmail.com>");
847   gst_element_class_add_pad_template (gstelement_class,
848       gst_static_pad_template_get (&gst_input_selector_sink_factory));
849   gst_element_class_add_pad_template (gstelement_class,
850       gst_static_pad_template_get (&gst_input_selector_src_factory));
851
852   gstelement_class->request_new_pad = gst_input_selector_request_new_pad;
853   gstelement_class->release_pad = gst_input_selector_release_pad;
854   gstelement_class->change_state = gst_input_selector_change_state;
855
856   klass->block = GST_DEBUG_FUNCPTR (gst_input_selector_block);
857 }
858
859 static void
860 gst_input_selector_init (GstInputSelector * sel)
861 {
862   sel->srcpad = gst_pad_new ("src", GST_PAD_SRC);
863   gst_pad_set_iterate_internal_links_function (sel->srcpad,
864       GST_DEBUG_FUNCPTR (gst_selector_pad_iterate_linked_pads));
865   gst_pad_set_query_function (sel->srcpad,
866       GST_DEBUG_FUNCPTR (gst_input_selector_query));
867   gst_pad_set_event_function (sel->srcpad,
868       GST_DEBUG_FUNCPTR (gst_input_selector_event));
869   GST_OBJECT_FLAG_SET (sel->srcpad, GST_PAD_FLAG_PROXY_CAPS);
870   gst_element_add_pad (GST_ELEMENT (sel), sel->srcpad);
871   /* sinkpad management */
872   sel->active_sinkpad = NULL;
873   sel->padcount = 0;
874   sel->sync_streams = DEFAULT_SYNC_STREAMS;
875
876   g_mutex_init (&sel->lock);
877   g_cond_init (&sel->cond);
878   sel->blocked = FALSE;
879 }
880
881 static void
882 gst_input_selector_dispose (GObject * object)
883 {
884   GstInputSelector *sel = GST_INPUT_SELECTOR (object);
885
886   if (sel->active_sinkpad) {
887     gst_object_unref (sel->active_sinkpad);
888     sel->active_sinkpad = NULL;
889   }
890   G_OBJECT_CLASS (parent_class)->dispose (object);
891 }
892
893 static void
894 gst_input_selector_finalize (GObject * object)
895 {
896   GstInputSelector *sel = GST_INPUT_SELECTOR (object);
897
898   g_mutex_clear (&sel->lock);
899   g_cond_clear (&sel->cond);
900
901   G_OBJECT_CLASS (parent_class)->finalize (object);
902 }
903
904 /* this function must be called with the SELECTOR_LOCK. It returns TRUE when the
905  * active pad changed. */
906 static gboolean
907 gst_input_selector_set_active_pad (GstInputSelector * self, GstPad * pad)
908 {
909   GstSelectorPad *old, *new;
910   GstPad **active_pad_p;
911
912   if (pad == self->active_sinkpad)
913     return FALSE;
914
915   old = GST_SELECTOR_PAD_CAST (self->active_sinkpad);
916   new = GST_SELECTOR_PAD_CAST (pad);
917
918   GST_DEBUG_OBJECT (self, "setting active pad to %s:%s",
919       GST_DEBUG_PAD_NAME (new));
920
921   if (old)
922     old->pushed = FALSE;
923   if (new)
924     new->pushed = FALSE;
925
926   /* Send a new SEGMENT event on the new pad next */
927   if (old != new && new)
928     new->events_pending = TRUE;
929
930   active_pad_p = &self->active_sinkpad;
931   gst_object_replace ((GstObject **) active_pad_p, GST_OBJECT_CAST (pad));
932
933   gst_pad_push_event (pad, gst_event_new_reconfigure ());
934
935   /* Wake up all non-active pads in sync mode, they might be
936    * the active pad now */
937   if (self->sync_streams)
938     GST_INPUT_SELECTOR_BROADCAST (self);
939
940   GST_DEBUG_OBJECT (self, "New active pad is %" GST_PTR_FORMAT,
941       self->active_sinkpad);
942
943   return TRUE;
944 }
945
946 static void
947 gst_input_selector_set_property (GObject * object, guint prop_id,
948     const GValue * value, GParamSpec * pspec)
949 {
950   GstInputSelector *sel = GST_INPUT_SELECTOR (object);
951
952   switch (prop_id) {
953     case PROP_ACTIVE_PAD:
954     {
955       GstPad *pad;
956
957       pad = g_value_get_object (value);
958
959       GST_INPUT_SELECTOR_LOCK (sel);
960       gst_input_selector_set_active_pad (sel, pad);
961       GST_INPUT_SELECTOR_UNLOCK (sel);
962       break;
963     }
964     case PROP_SYNC_STREAMS:
965     {
966       GST_INPUT_SELECTOR_LOCK (sel);
967       sel->sync_streams = g_value_get_boolean (value);
968       GST_INPUT_SELECTOR_UNLOCK (sel);
969       break;
970     }
971     default:
972       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
973       break;
974   }
975 }
976
977 static void
978 gst_input_selector_get_property (GObject * object, guint prop_id,
979     GValue * value, GParamSpec * pspec)
980 {
981   GstInputSelector *sel = GST_INPUT_SELECTOR (object);
982
983   switch (prop_id) {
984     case PROP_N_PADS:
985       GST_INPUT_SELECTOR_LOCK (object);
986       g_value_set_uint (value, sel->n_pads);
987       GST_INPUT_SELECTOR_UNLOCK (object);
988       break;
989     case PROP_ACTIVE_PAD:
990       GST_INPUT_SELECTOR_LOCK (object);
991       g_value_set_object (value, sel->active_sinkpad);
992       GST_INPUT_SELECTOR_UNLOCK (object);
993       break;
994     case PROP_SYNC_STREAMS:
995       GST_INPUT_SELECTOR_LOCK (object);
996       g_value_set_boolean (value, sel->sync_streams);
997       GST_INPUT_SELECTOR_UNLOCK (object);
998       break;
999     default:
1000       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
1001       break;
1002   }
1003 }
1004
1005 static GstPad *
1006 gst_input_selector_get_linked_pad (GstInputSelector * sel, GstPad * pad,
1007     gboolean strict)
1008 {
1009   GstPad *otherpad = NULL;
1010
1011   GST_INPUT_SELECTOR_LOCK (sel);
1012   if (pad == sel->srcpad)
1013     otherpad = sel->active_sinkpad;
1014   else if (pad == sel->active_sinkpad || !strict)
1015     otherpad = sel->srcpad;
1016   if (otherpad)
1017     gst_object_ref (otherpad);
1018   GST_INPUT_SELECTOR_UNLOCK (sel);
1019
1020   return otherpad;
1021 }
1022
1023 static gboolean
1024 gst_input_selector_event (GstPad * pad, GstObject * parent, GstEvent * event)
1025 {
1026   GstInputSelector *sel;
1027   gboolean result = FALSE;
1028   GstIterator *iter;
1029   gboolean done = FALSE;
1030   GValue item = { 0, };
1031   GstPad *eventpad;
1032   GList *pushed_pads = NULL;
1033
1034   sel = GST_INPUT_SELECTOR (parent);
1035   /* Send upstream events to all sinkpads */
1036   iter = gst_element_iterate_sink_pads (GST_ELEMENT_CAST (sel));
1037
1038   /* This is now essentially a copy of gst_pad_event_default_dispatch
1039    * with a different iterator */
1040   while (!done) {
1041     switch (gst_iterator_next (iter, &item)) {
1042       case GST_ITERATOR_OK:
1043         eventpad = g_value_get_object (&item);
1044
1045         /* if already pushed,  skip */
1046         if (g_list_find (pushed_pads, eventpad)) {
1047           g_value_reset (&item);
1048           break;
1049         }
1050
1051         gst_event_ref (event);
1052         result |= gst_pad_push_event (eventpad, event);
1053
1054         g_value_reset (&item);
1055         break;
1056       case GST_ITERATOR_RESYNC:
1057         /* We don't reset the result here because we don't push the event
1058          * again on pads that got the event already and because we need
1059          * to consider the result of the previous pushes */
1060         gst_iterator_resync (iter);
1061         break;
1062       case GST_ITERATOR_ERROR:
1063         GST_ERROR_OBJECT (pad, "Could not iterate over sinkpads");
1064         done = TRUE;
1065         break;
1066       case GST_ITERATOR_DONE:
1067         done = TRUE;
1068         break;
1069     }
1070   }
1071   g_value_unset (&item);
1072   gst_iterator_free (iter);
1073
1074   g_list_free (pushed_pads);
1075
1076   gst_event_unref (event);
1077
1078   return result;
1079 }
1080
1081 /* query on the srcpad. We override this function because by default it will
1082  * only forward the query to one random sinkpad */
1083 static gboolean
1084 gst_input_selector_query (GstPad * pad, GstObject * parent, GstQuery * query)
1085 {
1086   gboolean res = FALSE;
1087   GstInputSelector *sel;
1088
1089   sel = GST_INPUT_SELECTOR (parent);
1090
1091   switch (GST_QUERY_TYPE (query)) {
1092     case GST_QUERY_LATENCY:
1093     {
1094       GList *walk;
1095       GstClockTime resmin, resmax;
1096       gboolean reslive;
1097
1098       resmin = 0;
1099       resmax = -1;
1100       reslive = FALSE;
1101
1102       /* perform the query on all sinkpads and combine the results. We take the
1103        * max of min and the min of max for the result latency. */
1104       GST_INPUT_SELECTOR_LOCK (sel);
1105       for (walk = GST_ELEMENT_CAST (sel)->sinkpads; walk;
1106           walk = g_list_next (walk)) {
1107         GstPad *sinkpad = GST_PAD_CAST (walk->data);
1108
1109         if (gst_pad_peer_query (sinkpad, query)) {
1110           GstClockTime min, max;
1111           gboolean live;
1112
1113           /* one query succeeded, we succeed too */
1114           res = TRUE;
1115
1116           gst_query_parse_latency (query, &live, &min, &max);
1117
1118           GST_DEBUG_OBJECT (sinkpad,
1119               "peer latency min %" GST_TIME_FORMAT ", max %" GST_TIME_FORMAT
1120               ", live %d", GST_TIME_ARGS (min), GST_TIME_ARGS (max), live);
1121
1122           if (live) {
1123             if (min > resmin)
1124               resmin = min;
1125             if (resmax == -1)
1126               resmax = max;
1127             else if (max < resmax)
1128               resmax = max;
1129             if (reslive == FALSE)
1130               reslive = live;
1131           }
1132         }
1133       }
1134       GST_INPUT_SELECTOR_UNLOCK (sel);
1135       if (res) {
1136         gst_query_set_latency (query, reslive, resmin, resmax);
1137
1138         GST_DEBUG_OBJECT (sel,
1139             "total latency min %" GST_TIME_FORMAT ", max %" GST_TIME_FORMAT
1140             ", live %d", GST_TIME_ARGS (resmin), GST_TIME_ARGS (resmax),
1141             reslive);
1142       }
1143
1144       break;
1145     }
1146     default:
1147       res = gst_pad_query_default (pad, parent, query);
1148       break;
1149   }
1150
1151   return res;
1152 }
1153
1154 /* check if the pad is the active sinkpad */
1155 static inline gboolean
1156 gst_input_selector_is_active_sinkpad (GstInputSelector * sel, GstPad * pad)
1157 {
1158   gboolean res;
1159
1160   GST_INPUT_SELECTOR_LOCK (sel);
1161   res = (pad == sel->active_sinkpad);
1162   GST_INPUT_SELECTOR_UNLOCK (sel);
1163
1164   return res;
1165 }
1166
1167 /* Get or create the active sinkpad, must be called with SELECTOR_LOCK */
1168 static GstPad *
1169 gst_input_selector_activate_sinkpad (GstInputSelector * sel, GstPad * pad)
1170 {
1171   GstPad *active_sinkpad;
1172   GstSelectorPad *selpad;
1173
1174   selpad = GST_SELECTOR_PAD_CAST (pad);
1175
1176   selpad->active = TRUE;
1177   active_sinkpad = sel->active_sinkpad;
1178   if (active_sinkpad == NULL) {
1179     /* first pad we get activity on becomes the activated pad by default */
1180     if (sel->active_sinkpad)
1181       gst_object_unref (sel->active_sinkpad);
1182     active_sinkpad = sel->active_sinkpad = gst_object_ref (pad);
1183     GST_DEBUG_OBJECT (sel, "Activating pad %s:%s", GST_DEBUG_PAD_NAME (pad));
1184   }
1185
1186   return active_sinkpad;
1187 }
1188
1189 static GstPad *
1190 gst_input_selector_request_new_pad (GstElement * element,
1191     GstPadTemplate * templ, const gchar * unused, const GstCaps * caps)
1192 {
1193   GstInputSelector *sel;
1194   gchar *name = NULL;
1195   GstPad *sinkpad = NULL;
1196
1197   g_return_val_if_fail (templ->direction == GST_PAD_SINK, NULL);
1198
1199   sel = GST_INPUT_SELECTOR (element);
1200
1201   GST_INPUT_SELECTOR_LOCK (sel);
1202
1203   GST_LOG_OBJECT (sel, "Creating new pad %d", sel->padcount);
1204   name = g_strdup_printf ("sink_%u", sel->padcount++);
1205   sinkpad = g_object_new (GST_TYPE_SELECTOR_PAD,
1206       "name", name, "direction", templ->direction, "template", templ, NULL);
1207   g_free (name);
1208
1209   sel->n_pads++;
1210
1211   gst_pad_set_event_function (sinkpad,
1212       GST_DEBUG_FUNCPTR (gst_selector_pad_event));
1213   gst_pad_set_query_function (sinkpad,
1214       GST_DEBUG_FUNCPTR (gst_selector_pad_query));
1215   gst_pad_set_chain_function (sinkpad,
1216       GST_DEBUG_FUNCPTR (gst_selector_pad_chain));
1217   gst_pad_set_iterate_internal_links_function (sinkpad,
1218       GST_DEBUG_FUNCPTR (gst_selector_pad_iterate_linked_pads));
1219
1220   GST_OBJECT_FLAG_SET (sinkpad, GST_PAD_FLAG_PROXY_CAPS);
1221   GST_OBJECT_FLAG_SET (sinkpad, GST_PAD_FLAG_PROXY_ALLOCATION);
1222   gst_pad_set_active (sinkpad, TRUE);
1223   gst_element_add_pad (GST_ELEMENT (sel), sinkpad);
1224   GST_INPUT_SELECTOR_UNLOCK (sel);
1225
1226   return sinkpad;
1227 }
1228
1229 static void
1230 gst_input_selector_release_pad (GstElement * element, GstPad * pad)
1231 {
1232   GstInputSelector *sel;
1233
1234   sel = GST_INPUT_SELECTOR (element);
1235   GST_LOG_OBJECT (sel, "Releasing pad %s:%s", GST_DEBUG_PAD_NAME (pad));
1236
1237   GST_INPUT_SELECTOR_LOCK (sel);
1238   /* if the pad was the active pad, makes us select a new one */
1239   if (sel->active_sinkpad == pad) {
1240     GST_DEBUG_OBJECT (sel, "Deactivating pad %s:%s", GST_DEBUG_PAD_NAME (pad));
1241     gst_object_unref (sel->active_sinkpad);
1242     sel->active_sinkpad = NULL;
1243   }
1244   sel->n_pads--;
1245
1246   gst_pad_set_active (pad, FALSE);
1247   gst_element_remove_pad (GST_ELEMENT (sel), pad);
1248   GST_INPUT_SELECTOR_UNLOCK (sel);
1249 }
1250
1251 static void
1252 gst_input_selector_reset (GstInputSelector * sel)
1253 {
1254   GList *walk;
1255
1256   GST_INPUT_SELECTOR_LOCK (sel);
1257   /* clear active pad */
1258   if (sel->active_sinkpad) {
1259     gst_object_unref (sel->active_sinkpad);
1260     sel->active_sinkpad = NULL;
1261   }
1262   /* reset each of our sinkpads state */
1263   for (walk = GST_ELEMENT_CAST (sel)->sinkpads; walk; walk = g_list_next (walk)) {
1264     GstSelectorPad *selpad = GST_SELECTOR_PAD_CAST (walk->data);
1265
1266     gst_selector_pad_reset (selpad);
1267
1268     if (selpad->tags) {
1269       gst_tag_list_free (selpad->tags);
1270       selpad->tags = NULL;
1271     }
1272   }
1273   GST_INPUT_SELECTOR_UNLOCK (sel);
1274 }
1275
1276 static GstStateChangeReturn
1277 gst_input_selector_change_state (GstElement * element,
1278     GstStateChange transition)
1279 {
1280   GstInputSelector *self = GST_INPUT_SELECTOR (element);
1281   GstStateChangeReturn result;
1282
1283   switch (transition) {
1284     case GST_STATE_CHANGE_READY_TO_PAUSED:
1285       GST_INPUT_SELECTOR_LOCK (self);
1286       self->blocked = FALSE;
1287       self->flushing = FALSE;
1288       GST_INPUT_SELECTOR_UNLOCK (self);
1289       break;
1290     case GST_STATE_CHANGE_PAUSED_TO_READY:
1291       /* first unlock before we call the parent state change function, which
1292        * tries to acquire the stream lock when going to ready. */
1293       GST_INPUT_SELECTOR_LOCK (self);
1294       self->blocked = FALSE;
1295       self->flushing = TRUE;
1296       GST_INPUT_SELECTOR_BROADCAST (self);
1297       GST_INPUT_SELECTOR_UNLOCK (self);
1298       break;
1299     default:
1300       break;
1301   }
1302
1303   result = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
1304
1305   switch (transition) {
1306     case GST_STATE_CHANGE_PAUSED_TO_READY:
1307       gst_input_selector_reset (self);
1308       break;
1309     default:
1310       break;
1311   }
1312
1313   return result;
1314 }
1315
1316 static gint64
1317 gst_input_selector_block (GstInputSelector * self)
1318 {
1319   gint64 ret = 0;
1320   GstSelectorPad *spad;
1321
1322   GST_INPUT_SELECTOR_LOCK (self);
1323
1324   if (self->blocked)
1325     GST_WARNING_OBJECT (self, "switch already blocked");
1326
1327   self->blocked = TRUE;
1328   spad = GST_SELECTOR_PAD_CAST (self->active_sinkpad);
1329
1330   if (spad)
1331     ret = gst_selector_pad_get_running_time (spad);
1332   else
1333     GST_DEBUG_OBJECT (self, "no active pad while blocking");
1334
1335   GST_INPUT_SELECTOR_UNLOCK (self);
1336
1337   return ret;
1338 }