756b5edc8b8e606dc55bf6b4f02aed8f6a12f859
[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 segment_pending;
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->segment_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       /* If we aren't forwarding the event because the pad is not the
405        * active_sinkpad, then set the flag on the pad
406        * that says a segment needs sending if/when that pad is activated.
407        * For all other cases, we send the event immediately, which makes
408        * sparse streams and other segment updates work correctly downstream.
409        */
410       if (!forward)
411         selpad->segment_pending = TRUE;
412
413       GST_OBJECT_UNLOCK (selpad);
414       GST_INPUT_SELECTOR_UNLOCK (sel);
415       break;
416     }
417     case GST_EVENT_TAG:
418     {
419       GstTagList *tags, *oldtags, *newtags;
420
421       gst_event_parse_tag (event, &tags);
422
423       GST_OBJECT_LOCK (selpad);
424       oldtags = selpad->tags;
425
426       newtags = gst_tag_list_merge (oldtags, tags, GST_TAG_MERGE_REPLACE);
427       selpad->tags = newtags;
428       if (oldtags)
429         gst_tag_list_free (oldtags);
430       GST_DEBUG_OBJECT (pad, "received tags %" GST_PTR_FORMAT, newtags);
431       GST_OBJECT_UNLOCK (selpad);
432
433       g_object_notify (G_OBJECT (selpad), "tags");
434       break;
435     }
436     case GST_EVENT_EOS:
437       selpad->eos = TRUE;
438
439       if (forward) {
440         selpad->eos_sent = TRUE;
441       } else {
442         GstSelectorPad *tmp;
443
444         /* If the active sinkpad is in EOS state but EOS
445          * was not sent downstream this means that the pad
446          * got EOS before it was set as active pad and that
447          * the previously active pad got EOS after it was
448          * active
449          */
450         GST_INPUT_SELECTOR_LOCK (sel);
451         active_sinkpad = gst_input_selector_activate_sinkpad (sel, pad);
452         tmp = GST_SELECTOR_PAD (active_sinkpad);
453         forward = (tmp->eos && !tmp->eos_sent);
454         tmp->eos_sent = TRUE;
455         GST_INPUT_SELECTOR_UNLOCK (sel);
456       }
457       GST_DEBUG_OBJECT (pad, "received EOS");
458       break;
459     default:
460       break;
461   }
462   if (forward) {
463     GST_DEBUG_OBJECT (pad, "forwarding event");
464     res = gst_pad_push_event (sel->srcpad, event);
465   } else
466     gst_event_unref (event);
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
598 static GstFlowReturn
599 gst_selector_pad_chain (GstPad * pad, GstObject * parent, GstBuffer * buf)
600 {
601   GstInputSelector *sel;
602   GstFlowReturn res;
603   GstPad *active_sinkpad;
604   GstPad *prev_active_sinkpad;
605   GstSelectorPad *selpad;
606   GstClockTime start_time;
607   GstSegment *seg;
608   GstEvent *start_event = NULL;
609
610   sel = GST_INPUT_SELECTOR (parent);
611   selpad = GST_SELECTOR_PAD_CAST (pad);
612   seg = &selpad->segment;
613
614   GST_INPUT_SELECTOR_LOCK (sel);
615   /* wait or check for flushing */
616   if (gst_input_selector_wait (sel, selpad))
617     goto flushing;
618
619   GST_LOG_OBJECT (pad, "getting active pad");
620
621   prev_active_sinkpad = sel->active_sinkpad;
622   active_sinkpad = gst_input_selector_activate_sinkpad (sel, pad);
623
624   /* In sync mode wait until the active pad has advanced
625    * after the running time of the current buffer */
626   if (sel->sync_streams && active_sinkpad != pad) {
627     if (gst_input_selector_wait_running_time (sel, selpad, buf))
628       goto flushing;
629   }
630
631   /* Might have changed while waiting */
632   active_sinkpad = gst_input_selector_activate_sinkpad (sel, pad);
633
634   /* update the segment on the srcpad */
635   start_time = GST_BUFFER_TIMESTAMP (buf);
636   if (GST_CLOCK_TIME_IS_VALID (start_time)) {
637     GST_LOG_OBJECT (pad, "received start time %" GST_TIME_FORMAT,
638         GST_TIME_ARGS (start_time));
639     if (GST_BUFFER_DURATION_IS_VALID (buf))
640       GST_LOG_OBJECT (pad, "received end time %" GST_TIME_FORMAT,
641           GST_TIME_ARGS (start_time + GST_BUFFER_DURATION (buf)));
642
643     GST_OBJECT_LOCK (pad);
644     selpad->position = start_time;
645     GST_OBJECT_UNLOCK (pad);
646   }
647
648   /* Ignore buffers from pads except the selected one */
649   if (pad != active_sinkpad)
650     goto ignore;
651
652   /* Tell all non-active pads that we advanced the running time */
653   if (sel->sync_streams)
654     GST_INPUT_SELECTOR_BROADCAST (sel);
655
656   /* if we have a pending segment, push it out now */
657   if (G_UNLIKELY (prev_active_sinkpad != active_sinkpad
658           || selpad->segment_pending)) {
659     if (G_UNLIKELY (seg->format == GST_FORMAT_UNDEFINED)) {
660       GST_ERROR_OBJECT (pad, "Buffers arrived before NEWSEGMENT event");
661     } else {
662       GST_DEBUG_OBJECT (pad,
663           "pushing pending NEWSEGMENT update %d, rate %lf, applied rate %lf, "
664           "format %d, " "%" G_GINT64_FORMAT " -- %" G_GINT64_FORMAT ", time %"
665           G_GINT64_FORMAT, FALSE, seg->rate, seg->applied_rate, seg->format,
666           seg->start, seg->stop, seg->time);
667
668       start_event = gst_event_new_segment (seg);
669       gst_event_set_seqnum (start_event, selpad->segment_seqnum);
670       selpad->segment_pending = FALSE;
671     }
672   }
673   GST_INPUT_SELECTOR_UNLOCK (sel);
674
675   if (prev_active_sinkpad != active_sinkpad && pad == active_sinkpad) {
676     g_object_notify (G_OBJECT (sel), "active-pad");
677   }
678
679   if (start_event)
680     gst_pad_push_event (sel->srcpad, start_event);
681
682   if (selpad->discont) {
683     buf = gst_buffer_make_writable (buf);
684
685     GST_DEBUG_OBJECT (pad, "Marking discont buffer %p", buf);
686     GST_BUFFER_FLAG_SET (buf, GST_BUFFER_FLAG_DISCONT);
687     selpad->discont = FALSE;
688   }
689
690   /* forward */
691   GST_LOG_OBJECT (pad, "Forwarding buffer %p", buf);
692
693   res = gst_pad_push (sel->srcpad, buf);
694   selpad->pushed = TRUE;
695
696 done:
697   return res;
698
699   /* dropped buffers */
700 ignore:
701   {
702     gboolean active_pad_pushed = GST_SELECTOR_PAD_CAST (active_sinkpad)->pushed;
703
704     GST_DEBUG_OBJECT (pad, "Pad not active, discard buffer %p", buf);
705     /* when we drop a buffer, we're creating a discont on this pad */
706     selpad->discont = TRUE;
707     GST_INPUT_SELECTOR_UNLOCK (sel);
708     gst_buffer_unref (buf);
709
710     /* figure out what to return upstream */
711     GST_OBJECT_LOCK (selpad);
712     if (selpad->always_ok || !active_pad_pushed)
713       res = GST_FLOW_OK;
714     else
715       res = GST_FLOW_NOT_LINKED;
716     GST_OBJECT_UNLOCK (selpad);
717
718     goto done;
719   }
720 flushing:
721   {
722     GST_DEBUG_OBJECT (pad, "We are flushing, discard buffer %p", buf);
723     GST_INPUT_SELECTOR_UNLOCK (sel);
724     gst_buffer_unref (buf);
725     res = GST_FLOW_FLUSHING;
726     goto done;
727   }
728 }
729
730 static void gst_input_selector_dispose (GObject * object);
731 static void gst_input_selector_finalize (GObject * object);
732
733 static void gst_input_selector_set_property (GObject * object,
734     guint prop_id, const GValue * value, GParamSpec * pspec);
735 static void gst_input_selector_get_property (GObject * object,
736     guint prop_id, GValue * value, GParamSpec * pspec);
737
738 static GstPad *gst_input_selector_request_new_pad (GstElement * element,
739     GstPadTemplate * templ, const gchar * unused, const GstCaps * caps);
740 static void gst_input_selector_release_pad (GstElement * element, GstPad * pad);
741
742 static GstStateChangeReturn gst_input_selector_change_state (GstElement *
743     element, GstStateChange transition);
744
745 static gboolean gst_input_selector_event (GstPad * pad, GstObject * parent,
746     GstEvent * event);
747 static gboolean gst_input_selector_query (GstPad * pad, GstObject * parent,
748     GstQuery * query);
749 static gint64 gst_input_selector_block (GstInputSelector * self);
750
751 /* FIXME: create these marshallers using glib-genmarshal */
752 static void
753 gst_input_selector_marshal_INT64__VOID (GClosure * closure,
754     GValue * return_value G_GNUC_UNUSED,
755     guint n_param_values,
756     const GValue * param_values,
757     gpointer invocation_hint G_GNUC_UNUSED, gpointer marshal_data)
758 {
759   typedef gint64 (*GMarshalFunc_INT64__VOID) (gpointer data1, gpointer data2);
760   register GMarshalFunc_INT64__VOID callback;
761   register GCClosure *cc = (GCClosure *) closure;
762   register gpointer data1, data2;
763   gint64 v_return;
764
765   g_return_if_fail (return_value != NULL);
766   g_return_if_fail (n_param_values == 1);
767
768   if (G_CCLOSURE_SWAP_DATA (closure)) {
769     data1 = closure->data;
770     data2 = g_value_peek_pointer (param_values + 0);
771   } else {
772     data1 = g_value_peek_pointer (param_values + 0);
773     data2 = closure->data;
774   }
775   callback =
776       (GMarshalFunc_INT64__VOID) (marshal_data ? marshal_data : cc->callback);
777
778   v_return = callback (data1, data2);
779
780   g_value_set_int64 (return_value, v_return);
781 }
782
783 #define _do_init \
784     GST_DEBUG_CATEGORY_INIT (input_selector_debug, \
785         "input-selector", 0, "An input stream selector element");
786 #define gst_input_selector_parent_class parent_class
787 G_DEFINE_TYPE_WITH_CODE (GstInputSelector, gst_input_selector, GST_TYPE_ELEMENT,
788     _do_init);
789
790 static void
791 gst_input_selector_class_init (GstInputSelectorClass * klass)
792 {
793   GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
794   GstElementClass *gstelement_class = GST_ELEMENT_CLASS (klass);
795
796   gobject_class->dispose = gst_input_selector_dispose;
797   gobject_class->finalize = gst_input_selector_finalize;
798
799   gobject_class->set_property = gst_input_selector_set_property;
800   gobject_class->get_property = gst_input_selector_get_property;
801
802   g_object_class_install_property (gobject_class, PROP_N_PADS,
803       g_param_spec_uint ("n-pads", "Number of Pads",
804           "The number of sink pads", 0, G_MAXUINT, 0,
805           G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
806
807   g_object_class_install_property (gobject_class, PROP_ACTIVE_PAD,
808       g_param_spec_object ("active-pad", "Active pad",
809           "The currently active sink pad", GST_TYPE_PAD,
810           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
811
812   /**
813    * GstInputSelector:sync-streams
814    *
815    * If set to %TRUE all inactive streams will be synced to the
816    * running time of the active stream. This makes sure that no
817    * buffers are dropped by input-selector that might be needed
818    * when switching the active pad.
819    *
820    * Since: 0.10.36
821    */
822   g_object_class_install_property (gobject_class, PROP_SYNC_STREAMS,
823       g_param_spec_boolean ("sync-streams", "Sync Streams",
824           "Synchronize inactive streams to the running time of the active stream",
825           DEFAULT_SYNC_STREAMS, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
826
827   /**
828    * GstInputSelector::block:
829    * @inputselector: the #GstInputSelector
830    *
831    * Block all sink pads in preparation for a switch. Returns the stop time of
832    * the current switch segment, as a running time, or 0 if there is no current
833    * active pad or the current active pad never received data.
834    */
835   gst_input_selector_signals[SIGNAL_BLOCK] =
836       g_signal_new ("block", G_TYPE_FROM_CLASS (klass),
837       G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
838       G_STRUCT_OFFSET (GstInputSelectorClass, block), NULL, NULL,
839       gst_input_selector_marshal_INT64__VOID, G_TYPE_INT64, 0);
840
841   gst_element_class_set_details_simple (gstelement_class, "Input selector",
842       "Generic", "N-to-1 input stream selector",
843       "Julien Moutte <julien@moutte.net>, "
844       "Jan Schmidt <thaytan@mad.scientist.com>, "
845       "Wim Taymans <wim.taymans@gmail.com>");
846   gst_element_class_add_pad_template (gstelement_class,
847       gst_static_pad_template_get (&gst_input_selector_sink_factory));
848   gst_element_class_add_pad_template (gstelement_class,
849       gst_static_pad_template_get (&gst_input_selector_src_factory));
850
851   gstelement_class->request_new_pad = gst_input_selector_request_new_pad;
852   gstelement_class->release_pad = gst_input_selector_release_pad;
853   gstelement_class->change_state = gst_input_selector_change_state;
854
855   klass->block = GST_DEBUG_FUNCPTR (gst_input_selector_block);
856 }
857
858 static void
859 gst_input_selector_init (GstInputSelector * sel)
860 {
861   sel->srcpad = gst_pad_new ("src", GST_PAD_SRC);
862   gst_pad_set_iterate_internal_links_function (sel->srcpad,
863       GST_DEBUG_FUNCPTR (gst_selector_pad_iterate_linked_pads));
864   gst_pad_set_query_function (sel->srcpad,
865       GST_DEBUG_FUNCPTR (gst_input_selector_query));
866   gst_pad_set_event_function (sel->srcpad,
867       GST_DEBUG_FUNCPTR (gst_input_selector_event));
868   GST_OBJECT_FLAG_SET (sel->srcpad, GST_PAD_FLAG_PROXY_CAPS);
869   gst_element_add_pad (GST_ELEMENT (sel), sel->srcpad);
870   /* sinkpad management */
871   sel->active_sinkpad = NULL;
872   sel->padcount = 0;
873   sel->sync_streams = DEFAULT_SYNC_STREAMS;
874
875   g_mutex_init (&sel->lock);
876   g_cond_init (&sel->cond);
877   sel->blocked = FALSE;
878 }
879
880 static void
881 gst_input_selector_dispose (GObject * object)
882 {
883   GstInputSelector *sel = GST_INPUT_SELECTOR (object);
884
885   if (sel->active_sinkpad) {
886     gst_object_unref (sel->active_sinkpad);
887     sel->active_sinkpad = NULL;
888   }
889   G_OBJECT_CLASS (parent_class)->dispose (object);
890 }
891
892 static void
893 gst_input_selector_finalize (GObject * object)
894 {
895   GstInputSelector *sel = GST_INPUT_SELECTOR (object);
896
897   g_mutex_clear (&sel->lock);
898   g_cond_clear (&sel->cond);
899
900   G_OBJECT_CLASS (parent_class)->finalize (object);
901 }
902
903 /* this function must be called with the SELECTOR_LOCK. It returns TRUE when the
904  * active pad changed. */
905 static gboolean
906 gst_input_selector_set_active_pad (GstInputSelector * self, GstPad * pad)
907 {
908   GstSelectorPad *old, *new;
909   GstPad **active_pad_p;
910
911   if (pad == self->active_sinkpad)
912     return FALSE;
913
914   old = GST_SELECTOR_PAD_CAST (self->active_sinkpad);
915   new = GST_SELECTOR_PAD_CAST (pad);
916
917   GST_DEBUG_OBJECT (self, "setting active pad to %s:%s",
918       GST_DEBUG_PAD_NAME (new));
919
920   if (old)
921     old->pushed = FALSE;
922   if (new)
923     new->pushed = FALSE;
924
925   /* Send a new SEGMENT event on the new pad next */
926   if (old != new && new)
927     new->segment_pending = TRUE;
928
929   active_pad_p = &self->active_sinkpad;
930   gst_object_replace ((GstObject **) active_pad_p, GST_OBJECT_CAST (pad));
931
932   /* Wake up all non-active pads in sync mode, they might be
933    * the active pad now */
934   if (self->sync_streams)
935     GST_INPUT_SELECTOR_BROADCAST (self);
936
937   GST_DEBUG_OBJECT (self, "New active pad is %" GST_PTR_FORMAT,
938       self->active_sinkpad);
939
940   return TRUE;
941 }
942
943 static void
944 gst_input_selector_set_property (GObject * object, guint prop_id,
945     const GValue * value, GParamSpec * pspec)
946 {
947   GstInputSelector *sel = GST_INPUT_SELECTOR (object);
948
949   switch (prop_id) {
950     case PROP_ACTIVE_PAD:
951     {
952       GstPad *pad;
953
954       pad = g_value_get_object (value);
955
956       GST_INPUT_SELECTOR_LOCK (sel);
957       gst_input_selector_set_active_pad (sel, pad);
958       GST_INPUT_SELECTOR_UNLOCK (sel);
959       break;
960     }
961     case PROP_SYNC_STREAMS:
962     {
963       GST_INPUT_SELECTOR_LOCK (sel);
964       sel->sync_streams = g_value_get_boolean (value);
965       GST_INPUT_SELECTOR_UNLOCK (sel);
966       break;
967     }
968     default:
969       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
970       break;
971   }
972 }
973
974 static void
975 gst_input_selector_get_property (GObject * object, guint prop_id,
976     GValue * value, GParamSpec * pspec)
977 {
978   GstInputSelector *sel = GST_INPUT_SELECTOR (object);
979
980   switch (prop_id) {
981     case PROP_N_PADS:
982       GST_INPUT_SELECTOR_LOCK (object);
983       g_value_set_uint (value, sel->n_pads);
984       GST_INPUT_SELECTOR_UNLOCK (object);
985       break;
986     case PROP_ACTIVE_PAD:
987       GST_INPUT_SELECTOR_LOCK (object);
988       g_value_set_object (value, sel->active_sinkpad);
989       GST_INPUT_SELECTOR_UNLOCK (object);
990       break;
991     case PROP_SYNC_STREAMS:
992       GST_INPUT_SELECTOR_LOCK (object);
993       g_value_set_boolean (value, sel->sync_streams);
994       GST_INPUT_SELECTOR_UNLOCK (object);
995       break;
996     default:
997       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
998       break;
999   }
1000 }
1001
1002 static GstPad *
1003 gst_input_selector_get_linked_pad (GstInputSelector * sel, GstPad * pad,
1004     gboolean strict)
1005 {
1006   GstPad *otherpad = NULL;
1007
1008   GST_INPUT_SELECTOR_LOCK (sel);
1009   if (pad == sel->srcpad)
1010     otherpad = sel->active_sinkpad;
1011   else if (pad == sel->active_sinkpad || !strict)
1012     otherpad = sel->srcpad;
1013   if (otherpad)
1014     gst_object_ref (otherpad);
1015   GST_INPUT_SELECTOR_UNLOCK (sel);
1016
1017   return otherpad;
1018 }
1019
1020 static gboolean
1021 gst_input_selector_event (GstPad * pad, GstObject * parent, GstEvent * event)
1022 {
1023   GstInputSelector *sel;
1024   gboolean result = FALSE;
1025   GstIterator *iter;
1026   gboolean done = FALSE;
1027   GValue item = { 0, };
1028   GstPad *eventpad;
1029   GList *pushed_pads = NULL;
1030
1031   sel = GST_INPUT_SELECTOR (parent);
1032   /* Send upstream events to all sinkpads */
1033   iter = gst_element_iterate_sink_pads (GST_ELEMENT_CAST (sel));
1034
1035   /* This is now essentially a copy of gst_pad_event_default_dispatch
1036    * with a different iterator */
1037   while (!done) {
1038     switch (gst_iterator_next (iter, &item)) {
1039       case GST_ITERATOR_OK:
1040         eventpad = g_value_get_object (&item);
1041
1042         /* if already pushed,  skip */
1043         if (g_list_find (pushed_pads, eventpad)) {
1044           g_value_reset (&item);
1045           break;
1046         }
1047
1048         gst_event_ref (event);
1049         result |= gst_pad_push_event (eventpad, event);
1050
1051         g_value_reset (&item);
1052         break;
1053       case GST_ITERATOR_RESYNC:
1054         /* We don't reset the result here because we don't push the event
1055          * again on pads that got the event already and because we need
1056          * to consider the result of the previous pushes */
1057         gst_iterator_resync (iter);
1058         break;
1059       case GST_ITERATOR_ERROR:
1060         GST_ERROR_OBJECT (pad, "Could not iterate over sinkpads");
1061         done = TRUE;
1062         break;
1063       case GST_ITERATOR_DONE:
1064         done = TRUE;
1065         break;
1066     }
1067   }
1068   g_value_unset (&item);
1069   gst_iterator_free (iter);
1070
1071   g_list_free (pushed_pads);
1072
1073   gst_event_unref (event);
1074
1075   return result;
1076 }
1077
1078 /* query on the srcpad. We override this function because by default it will
1079  * only forward the query to one random sinkpad */
1080 static gboolean
1081 gst_input_selector_query (GstPad * pad, GstObject * parent, GstQuery * query)
1082 {
1083   gboolean res = FALSE;
1084   GstInputSelector *sel;
1085
1086   sel = GST_INPUT_SELECTOR (parent);
1087
1088   switch (GST_QUERY_TYPE (query)) {
1089     case GST_QUERY_LATENCY:
1090     {
1091       GList *walk;
1092       GstClockTime resmin, resmax;
1093       gboolean reslive;
1094
1095       resmin = 0;
1096       resmax = -1;
1097       reslive = FALSE;
1098
1099       /* perform the query on all sinkpads and combine the results. We take the
1100        * max of min and the min of max for the result latency. */
1101       GST_INPUT_SELECTOR_LOCK (sel);
1102       for (walk = GST_ELEMENT_CAST (sel)->sinkpads; walk;
1103           walk = g_list_next (walk)) {
1104         GstPad *sinkpad = GST_PAD_CAST (walk->data);
1105
1106         if (gst_pad_peer_query (sinkpad, query)) {
1107           GstClockTime min, max;
1108           gboolean live;
1109
1110           /* one query succeeded, we succeed too */
1111           res = TRUE;
1112
1113           gst_query_parse_latency (query, &live, &min, &max);
1114
1115           GST_DEBUG_OBJECT (sinkpad,
1116               "peer latency min %" GST_TIME_FORMAT ", max %" GST_TIME_FORMAT
1117               ", live %d", GST_TIME_ARGS (min), GST_TIME_ARGS (max), live);
1118
1119           if (live) {
1120             if (min > resmin)
1121               resmin = min;
1122             if (resmax == -1)
1123               resmax = max;
1124             else if (max < resmax)
1125               resmax = max;
1126             if (reslive == FALSE)
1127               reslive = live;
1128           }
1129         }
1130       }
1131       GST_INPUT_SELECTOR_UNLOCK (sel);
1132       if (res) {
1133         gst_query_set_latency (query, reslive, resmin, resmax);
1134
1135         GST_DEBUG_OBJECT (sel,
1136             "total latency min %" GST_TIME_FORMAT ", max %" GST_TIME_FORMAT
1137             ", live %d", GST_TIME_ARGS (resmin), GST_TIME_ARGS (resmax),
1138             reslive);
1139       }
1140
1141       break;
1142     }
1143     default:
1144       res = gst_pad_query_default (pad, parent, query);
1145       break;
1146   }
1147
1148   return res;
1149 }
1150
1151 /* check if the pad is the active sinkpad */
1152 static inline gboolean
1153 gst_input_selector_is_active_sinkpad (GstInputSelector * sel, GstPad * pad)
1154 {
1155   gboolean res;
1156
1157   GST_INPUT_SELECTOR_LOCK (sel);
1158   res = (pad == sel->active_sinkpad);
1159   GST_INPUT_SELECTOR_UNLOCK (sel);
1160
1161   return res;
1162 }
1163
1164 /* Get or create the active sinkpad, must be called with SELECTOR_LOCK */
1165 static GstPad *
1166 gst_input_selector_activate_sinkpad (GstInputSelector * sel, GstPad * pad)
1167 {
1168   GstPad *active_sinkpad;
1169   GstSelectorPad *selpad;
1170
1171   selpad = GST_SELECTOR_PAD_CAST (pad);
1172
1173   selpad->active = TRUE;
1174   active_sinkpad = sel->active_sinkpad;
1175   if (active_sinkpad == NULL) {
1176     /* first pad we get activity on becomes the activated pad by default */
1177     if (sel->active_sinkpad)
1178       gst_object_unref (sel->active_sinkpad);
1179     active_sinkpad = sel->active_sinkpad = gst_object_ref (pad);
1180     GST_DEBUG_OBJECT (sel, "Activating pad %s:%s", GST_DEBUG_PAD_NAME (pad));
1181   }
1182
1183   return active_sinkpad;
1184 }
1185
1186 static GstPad *
1187 gst_input_selector_request_new_pad (GstElement * element,
1188     GstPadTemplate * templ, const gchar * unused, const GstCaps * caps)
1189 {
1190   GstInputSelector *sel;
1191   gchar *name = NULL;
1192   GstPad *sinkpad = NULL;
1193
1194   g_return_val_if_fail (templ->direction == GST_PAD_SINK, NULL);
1195
1196   sel = GST_INPUT_SELECTOR (element);
1197
1198   GST_INPUT_SELECTOR_LOCK (sel);
1199
1200   GST_LOG_OBJECT (sel, "Creating new pad %d", sel->padcount);
1201   name = g_strdup_printf ("sink_%u", sel->padcount++);
1202   sinkpad = g_object_new (GST_TYPE_SELECTOR_PAD,
1203       "name", name, "direction", templ->direction, "template", templ, NULL);
1204   g_free (name);
1205
1206   sel->n_pads++;
1207
1208   gst_pad_set_event_function (sinkpad,
1209       GST_DEBUG_FUNCPTR (gst_selector_pad_event));
1210   gst_pad_set_query_function (sinkpad,
1211       GST_DEBUG_FUNCPTR (gst_selector_pad_query));
1212   gst_pad_set_chain_function (sinkpad,
1213       GST_DEBUG_FUNCPTR (gst_selector_pad_chain));
1214   gst_pad_set_iterate_internal_links_function (sinkpad,
1215       GST_DEBUG_FUNCPTR (gst_selector_pad_iterate_linked_pads));
1216
1217   GST_OBJECT_FLAG_SET (sinkpad, GST_PAD_FLAG_PROXY_CAPS);
1218   GST_OBJECT_FLAG_SET (sinkpad, GST_PAD_FLAG_PROXY_ALLOCATION);
1219   gst_pad_set_active (sinkpad, TRUE);
1220   gst_element_add_pad (GST_ELEMENT (sel), sinkpad);
1221   GST_INPUT_SELECTOR_UNLOCK (sel);
1222
1223   return sinkpad;
1224 }
1225
1226 static void
1227 gst_input_selector_release_pad (GstElement * element, GstPad * pad)
1228 {
1229   GstInputSelector *sel;
1230
1231   sel = GST_INPUT_SELECTOR (element);
1232   GST_LOG_OBJECT (sel, "Releasing pad %s:%s", GST_DEBUG_PAD_NAME (pad));
1233
1234   GST_INPUT_SELECTOR_LOCK (sel);
1235   /* if the pad was the active pad, makes us select a new one */
1236   if (sel->active_sinkpad == pad) {
1237     GST_DEBUG_OBJECT (sel, "Deactivating pad %s:%s", GST_DEBUG_PAD_NAME (pad));
1238     gst_object_unref (sel->active_sinkpad);
1239     sel->active_sinkpad = NULL;
1240   }
1241   sel->n_pads--;
1242
1243   gst_pad_set_active (pad, FALSE);
1244   gst_element_remove_pad (GST_ELEMENT (sel), pad);
1245   GST_INPUT_SELECTOR_UNLOCK (sel);
1246 }
1247
1248 static void
1249 gst_input_selector_reset (GstInputSelector * sel)
1250 {
1251   GList *walk;
1252
1253   GST_INPUT_SELECTOR_LOCK (sel);
1254   /* clear active pad */
1255   if (sel->active_sinkpad) {
1256     gst_object_unref (sel->active_sinkpad);
1257     sel->active_sinkpad = NULL;
1258   }
1259   /* reset each of our sinkpads state */
1260   for (walk = GST_ELEMENT_CAST (sel)->sinkpads; walk; walk = g_list_next (walk)) {
1261     GstSelectorPad *selpad = GST_SELECTOR_PAD_CAST (walk->data);
1262
1263     gst_selector_pad_reset (selpad);
1264
1265     if (selpad->tags) {
1266       gst_tag_list_free (selpad->tags);
1267       selpad->tags = NULL;
1268     }
1269   }
1270   GST_INPUT_SELECTOR_UNLOCK (sel);
1271 }
1272
1273 static GstStateChangeReturn
1274 gst_input_selector_change_state (GstElement * element,
1275     GstStateChange transition)
1276 {
1277   GstInputSelector *self = GST_INPUT_SELECTOR (element);
1278   GstStateChangeReturn result;
1279
1280   switch (transition) {
1281     case GST_STATE_CHANGE_READY_TO_PAUSED:
1282       GST_INPUT_SELECTOR_LOCK (self);
1283       self->blocked = FALSE;
1284       self->flushing = FALSE;
1285       GST_INPUT_SELECTOR_UNLOCK (self);
1286       break;
1287     case GST_STATE_CHANGE_PAUSED_TO_READY:
1288       /* first unlock before we call the parent state change function, which
1289        * tries to acquire the stream lock when going to ready. */
1290       GST_INPUT_SELECTOR_LOCK (self);
1291       self->blocked = FALSE;
1292       self->flushing = TRUE;
1293       GST_INPUT_SELECTOR_BROADCAST (self);
1294       GST_INPUT_SELECTOR_UNLOCK (self);
1295       break;
1296     default:
1297       break;
1298   }
1299
1300   result = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
1301
1302   switch (transition) {
1303     case GST_STATE_CHANGE_PAUSED_TO_READY:
1304       gst_input_selector_reset (self);
1305       break;
1306     default:
1307       break;
1308   }
1309
1310   return result;
1311 }
1312
1313 static gint64
1314 gst_input_selector_block (GstInputSelector * self)
1315 {
1316   gint64 ret = 0;
1317   GstSelectorPad *spad;
1318
1319   GST_INPUT_SELECTOR_LOCK (self);
1320
1321   if (self->blocked)
1322     GST_WARNING_OBJECT (self, "switch already blocked");
1323
1324   self->blocked = TRUE;
1325   spad = GST_SELECTOR_PAD_CAST (self->active_sinkpad);
1326
1327   if (spad)
1328     ret = gst_selector_pad_get_running_time (spad);
1329   else
1330     GST_DEBUG_OBJECT (self, "no active pad while blocking");
1331
1332   GST_INPUT_SELECTOR_UNLOCK (self);
1333
1334   return ret;
1335 }