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