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