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