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>)
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Library General Public
11 * License as published by the Free Software Foundation; either
12 * version 2 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Library General Public License for more details.
19 * You should have received a copy of the GNU Library General Public
20 * License along with this library; if not, write to the
21 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22 * Boston, MA 02111-1307, USA.
26 * SECTION:element-input-selector
27 * @see_also: #GstOutputSelector
29 * Direct one out of N input streams to the output pad.
38 #include "gstinputselector.h"
39 #include "gstselector-marshal.h"
41 GST_DEBUG_CATEGORY_STATIC (input_selector_debug);
42 #define GST_CAT_DEFAULT input_selector_debug
44 static const GstElementDetails gst_input_selector_details =
45 GST_ELEMENT_DETAILS ("Input selector",
47 "N-to-1 input stream selectoring",
48 "Julien Moutte <julien@moutte.net>\n"
49 "Ronald S. Bultje <rbultje@ronald.bitfreak.net>\n"
50 "Jan Schmidt <thaytan@mad.scientist.com>\n"
51 "Wim Taymans <wim.taymans@gmail.com>");
53 static GstStaticPadTemplate gst_input_selector_sink_factory =
54 GST_STATIC_PAD_TEMPLATE ("sink%d",
59 static GstStaticPadTemplate gst_input_selector_src_factory =
60 GST_STATIC_PAD_TEMPLATE ("src",
74 #define DEFAULT_PAD_ALWAYS_OK TRUE
79 PROP_PAD_RUNNING_TIME,
93 static guint gst_input_selector_signals[LAST_SIGNAL] = { 0 };
95 static gboolean gst_input_selector_is_active_sinkpad (GstInputSelector * sel,
97 static GstPad *gst_input_selector_activate_sinkpad (GstInputSelector * sel,
99 static GstPad *gst_input_selector_get_linked_pad (GstPad * pad,
101 static gboolean gst_input_selector_check_eos (GstElement * selector);
103 #define GST_TYPE_SELECTOR_PAD \
104 (gst_selector_pad_get_type())
105 #define GST_SELECTOR_PAD(obj) \
106 (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_SELECTOR_PAD, GstSelectorPad))
107 #define GST_SELECTOR_PAD_CLASS(klass) \
108 (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_SELECTOR_PAD, GstSelectorPadClass))
109 #define GST_IS_SELECTOR_PAD(obj) \
110 (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_SELECTOR_PAD))
111 #define GST_IS_SELECTOR_PAD_CLASS(klass) \
112 (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_SELECTOR_PAD))
113 #define GST_SELECTOR_PAD_CAST(obj) \
114 ((GstSelectorPad *)(obj))
116 typedef struct _GstSelectorPad GstSelectorPad;
117 typedef struct _GstSelectorPadClass GstSelectorPadClass;
119 struct _GstSelectorPad
123 gboolean active; /* when buffer have passed the pad */
124 gboolean eos; /* when EOS has been received */
125 gboolean discont; /* after switching we create a discont */
127 GstSegment segment; /* the current segment on the pad */
128 GstTagList *tags; /* last tags received on the pad */
130 gboolean segment_pending;
133 struct _GstSelectorPadClass
138 static void gst_selector_pad_class_init (GstSelectorPadClass * klass);
139 static void gst_selector_pad_init (GstSelectorPad * pad);
140 static void gst_selector_pad_finalize (GObject * object);
141 static void gst_selector_pad_get_property (GObject * object,
142 guint prop_id, GValue * value, GParamSpec * pspec);
143 static void gst_selector_pad_set_property (GObject * object,
144 guint prop_id, const GValue * value, GParamSpec * pspec);
146 static GstPadClass *selector_pad_parent_class = NULL;
148 static gint64 gst_selector_pad_get_running_time (GstSelectorPad * pad);
149 static void gst_selector_pad_reset (GstSelectorPad * pad);
150 static gboolean gst_selector_pad_event (GstPad * pad, GstEvent * event);
151 static GstCaps *gst_selector_pad_getcaps (GstPad * pad);
152 static GList *gst_selector_pad_get_linked_pads (GstPad * pad);
153 static GstFlowReturn gst_selector_pad_chain (GstPad * pad, GstBuffer * buf);
154 static GstFlowReturn gst_selector_pad_bufferalloc (GstPad * pad,
155 guint64 offset, guint size, GstCaps * caps, GstBuffer ** buf);
158 gst_selector_pad_get_type (void)
160 static GType selector_pad_type = 0;
162 if (!selector_pad_type) {
163 static const GTypeInfo selector_pad_info = {
164 sizeof (GstSelectorPadClass),
167 (GClassInitFunc) gst_selector_pad_class_init,
170 sizeof (GstSelectorPad),
172 (GInstanceInitFunc) gst_selector_pad_init,
176 g_type_register_static (GST_TYPE_PAD, "GstSelectorPad",
177 &selector_pad_info, 0);
179 return selector_pad_type;
183 gst_selector_pad_class_init (GstSelectorPadClass * klass)
185 GObjectClass *gobject_class;
187 gobject_class = (GObjectClass *) klass;
189 selector_pad_parent_class = g_type_class_peek_parent (klass);
191 gobject_class->finalize = gst_selector_pad_finalize;
193 gobject_class->get_property =
194 GST_DEBUG_FUNCPTR (gst_selector_pad_get_property);
195 gobject_class->set_property =
196 GST_DEBUG_FUNCPTR (gst_selector_pad_set_property);
198 g_object_class_install_property (gobject_class, PROP_PAD_RUNNING_TIME,
199 g_param_spec_int64 ("running-time", "Running time",
200 "Running time of stream on pad", 0, G_MAXINT64, 0, G_PARAM_READABLE));
201 g_object_class_install_property (gobject_class, PROP_PAD_TAGS,
202 g_param_spec_boxed ("tags", "Tags",
203 "The currently active tags on the pad", GST_TYPE_TAG_LIST,
205 g_object_class_install_property (gobject_class, PROP_PAD_ACTIVE,
206 g_param_spec_boolean ("active", "Active",
207 "If the pad is currently active", FALSE, G_PARAM_READABLE));
208 g_object_class_install_property (gobject_class, PROP_PAD_ALWAYS_OK,
209 g_param_spec_boolean ("always-ok", "Always OK",
210 "Make an inactive pad return OK instead of NOT_LINKED",
211 DEFAULT_PAD_ALWAYS_OK, G_PARAM_READWRITE));
215 gst_selector_pad_init (GstSelectorPad * pad)
217 pad->always_ok = DEFAULT_PAD_ALWAYS_OK;
218 gst_selector_pad_reset (pad);
222 gst_selector_pad_finalize (GObject * object)
226 pad = GST_SELECTOR_PAD_CAST (object);
229 gst_tag_list_free (pad->tags);
231 G_OBJECT_CLASS (selector_pad_parent_class)->finalize (object);
235 gst_selector_pad_set_property (GObject * object, guint prop_id,
236 const GValue * value, GParamSpec * pspec)
238 GstSelectorPad *spad = GST_SELECTOR_PAD_CAST (object);
241 case PROP_PAD_ALWAYS_OK:
242 GST_OBJECT_LOCK (object);
243 spad->always_ok = g_value_get_boolean (value);
244 GST_OBJECT_UNLOCK (object);
247 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
253 gst_selector_pad_get_property (GObject * object, guint prop_id,
254 GValue * value, GParamSpec * pspec)
256 GstSelectorPad *spad = GST_SELECTOR_PAD_CAST (object);
259 case PROP_PAD_RUNNING_TIME:
260 g_value_set_int64 (value, gst_selector_pad_get_running_time (spad));
263 GST_OBJECT_LOCK (object);
264 g_value_set_boxed (value, spad->tags);
265 GST_OBJECT_UNLOCK (object);
267 case PROP_PAD_ACTIVE:
269 GstInputSelector *sel;
271 sel = GST_INPUT_SELECTOR (gst_pad_get_parent (spad));
272 g_value_set_boolean (value, gst_input_selector_is_active_sinkpad (sel,
273 GST_PAD_CAST (spad)));
274 gst_object_unref (sel);
277 case PROP_PAD_ALWAYS_OK:
278 GST_OBJECT_LOCK (object);
279 g_value_set_boolean (value, spad->always_ok);
280 GST_OBJECT_UNLOCK (object);
283 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
289 gst_selector_pad_get_running_time (GstSelectorPad * pad)
293 GST_OBJECT_LOCK (pad);
295 gint64 last_stop = pad->segment.last_stop;
298 ret = gst_segment_to_running_time (&pad->segment, GST_FORMAT_TIME,
301 GST_OBJECT_UNLOCK (pad);
303 GST_DEBUG_OBJECT (pad, "running time: %" GST_TIME_FORMAT,
304 GST_TIME_ARGS (ret));
310 gst_selector_pad_reset (GstSelectorPad * pad)
312 GST_OBJECT_LOCK (pad);
315 pad->segment_pending = FALSE;
316 pad->discont = FALSE;
317 gst_segment_init (&pad->segment, GST_FORMAT_UNDEFINED);
318 GST_OBJECT_UNLOCK (pad);
321 /* strictly get the linked pad from the sinkpad. If the pad is active we return
322 * the srcpad else we return NULL */
324 gst_selector_pad_get_linked_pads (GstPad * pad)
328 otherpad = gst_input_selector_get_linked_pad (pad, TRUE);
332 /* need to drop the ref, internal linked pads is not MT safe */
333 gst_object_unref (otherpad);
335 return g_list_append (NULL, otherpad);
339 gst_selector_pad_event (GstPad * pad, GstEvent * event)
342 gboolean forward = TRUE;
343 GstInputSelector *sel;
344 GstSelectorPad *selpad;
346 sel = GST_INPUT_SELECTOR (gst_pad_get_parent (pad));
347 selpad = GST_SELECTOR_PAD_CAST (pad);
349 /* only forward if we are dealing with the active sinkpad */
350 forward = gst_input_selector_is_active_sinkpad (sel, pad);
352 /* forward all events in select_all mode by default */
353 if (sel->select_all) {
357 switch (GST_EVENT_TYPE (event)) {
358 case GST_EVENT_FLUSH_START:
359 /* FIXME, flush out the waiter */
361 case GST_EVENT_FLUSH_STOP:
362 GST_INPUT_SELECTOR_LOCK (sel);
363 gst_selector_pad_reset (selpad);
364 sel->pending_close = FALSE;
365 GST_INPUT_SELECTOR_UNLOCK (sel);
367 case GST_EVENT_NEWSEGMENT:
372 gint64 start, stop, time;
374 gst_event_parse_new_segment_full (event, &update, &rate, &arate, &format,
375 &start, &stop, &time);
377 GST_DEBUG_OBJECT (pad,
378 "configured NEWSEGMENT update %d, rate %lf, applied rate %lf, "
380 "%" G_GINT64_FORMAT " -- %" G_GINT64_FORMAT ", time %"
381 G_GINT64_FORMAT, update, rate, arate, format, start, stop, time);
383 GST_INPUT_SELECTOR_LOCK (sel);
384 GST_OBJECT_LOCK (selpad);
385 gst_segment_set_newsegment_full (&selpad->segment, update,
386 rate, arate, format, start, stop, time);
387 GST_OBJECT_UNLOCK (selpad);
388 /* we are not going to forward the segment, mark the segment as
391 selpad->segment_pending = TRUE;
392 GST_INPUT_SELECTOR_UNLOCK (sel);
400 GST_OBJECT_LOCK (selpad);
402 gst_tag_list_free (selpad->tags);
403 gst_event_parse_tag (event, &tags);
405 tags = gst_tag_list_copy (tags);
407 GST_DEBUG_OBJECT (pad, "received tags %" GST_PTR_FORMAT, selpad->tags);
408 GST_OBJECT_UNLOCK (selpad);
413 GST_DEBUG_OBJECT (pad, "received EOS");
414 /* don't forward eos in select_all mode until all sink pads have eos */
415 if (sel->select_all && !gst_input_selector_check_eos (GST_ELEMENT (sel))) {
423 GST_DEBUG_OBJECT (pad, "forwarding event");
424 res = gst_pad_push_event (sel->srcpad, event);
426 gst_event_unref (event);
428 gst_object_unref (sel);
434 gst_selector_pad_getcaps (GstPad * pad)
436 GstInputSelector *sel;
439 sel = GST_INPUT_SELECTOR (gst_pad_get_parent (pad));
441 GST_DEBUG_OBJECT (sel, "Getting caps of srcpad peer");
442 caps = gst_pad_peer_get_caps (sel->srcpad);
444 caps = gst_caps_new_any ();
446 gst_object_unref (sel);
452 gst_selector_pad_bufferalloc (GstPad * pad, guint64 offset,
453 guint size, GstCaps * caps, GstBuffer ** buf)
455 GstInputSelector *sel;
456 GstFlowReturn result;
457 GstPad *active_sinkpad;
458 GstSelectorPad *selpad;
460 sel = GST_INPUT_SELECTOR (gst_pad_get_parent (pad));
461 selpad = GST_SELECTOR_PAD_CAST (pad);
463 GST_DEBUG_OBJECT (pad, "received alloc");
465 GST_INPUT_SELECTOR_LOCK (sel);
466 active_sinkpad = gst_input_selector_activate_sinkpad (sel, pad);
468 if (pad != active_sinkpad)
471 GST_INPUT_SELECTOR_UNLOCK (sel);
473 result = gst_pad_alloc_buffer (sel->srcpad, offset, size, caps, buf);
476 gst_object_unref (sel);
483 GST_INPUT_SELECTOR_UNLOCK (sel);
485 /* unselected pad, perform fallback alloc or return unlinked when
487 GST_OBJECT_LOCK (selpad);
488 if (selpad->always_ok) {
489 GST_DEBUG_OBJECT (pad, "Not selected, performing fallback allocation");
491 result = GST_FLOW_OK;
493 GST_DEBUG_OBJECT (pad, "Not selected, return NOT_LINKED");
494 result = GST_FLOW_NOT_LINKED;
496 GST_OBJECT_UNLOCK (selpad);
502 /* must be called with the SELECTOR_LOCK, will block while the pad is blocked
503 * or return TRUE when flushing */
505 gst_input_selector_wait (GstInputSelector * self, GstPad * pad)
507 while (self->blocked && !self->flushing) {
508 /* we can be unlocked here when we are shutting down (flushing) or when we
510 GST_INPUT_SELECTOR_WAIT (self);
512 return self->flushing;
516 gst_selector_pad_chain (GstPad * pad, GstBuffer * buf)
518 GstInputSelector *sel;
520 GstPad *active_sinkpad;
521 GstSelectorPad *selpad;
522 GstClockTime end_time, duration;
524 GstEvent *close_event = NULL, *start_event = NULL;
526 sel = GST_INPUT_SELECTOR (gst_pad_get_parent (pad));
527 selpad = GST_SELECTOR_PAD_CAST (pad);
528 seg = &selpad->segment;
530 GST_INPUT_SELECTOR_LOCK (sel);
531 /* wait or check for flushing */
532 if (gst_input_selector_wait (sel, pad))
535 GST_DEBUG_OBJECT (pad, "getting active pad");
537 active_sinkpad = gst_input_selector_activate_sinkpad (sel, pad);
539 /* update the segment on the srcpad */
540 end_time = GST_BUFFER_TIMESTAMP (buf);
541 if (GST_CLOCK_TIME_IS_VALID (end_time)) {
542 duration = GST_BUFFER_DURATION (buf);
543 if (GST_CLOCK_TIME_IS_VALID (duration))
544 end_time += duration;
545 GST_DEBUG_OBJECT (pad, "received end time %" GST_TIME_FORMAT,
546 GST_TIME_ARGS (end_time));
548 GST_OBJECT_LOCK (pad);
549 gst_segment_set_last_stop (seg, seg->format, end_time);
550 GST_OBJECT_UNLOCK (pad);
553 /* Ignore buffers from pads except the selected one */
554 if (pad != active_sinkpad)
557 if (G_UNLIKELY (sel->pending_close)) {
558 GstSegment *cseg = &sel->segment;
560 GST_DEBUG_OBJECT (sel,
561 "pushing NEWSEGMENT update %d, rate %lf, applied rate %lf, "
563 "%" G_GINT64_FORMAT " -- %" G_GINT64_FORMAT ", time %"
564 G_GINT64_FORMAT, TRUE, cseg->rate, cseg->applied_rate, cseg->format,
565 cseg->start, cseg->stop, cseg->time);
567 /* create update segment */
568 close_event = gst_event_new_new_segment_full (TRUE, cseg->rate,
569 cseg->applied_rate, cseg->format, cseg->start, cseg->stop, cseg->time);
571 sel->pending_close = FALSE;
573 /* if we have a pending segment, push it out now */
574 if (G_UNLIKELY (selpad->segment_pending)) {
575 GST_DEBUG_OBJECT (pad,
576 "pushing NEWSEGMENT update %d, rate %lf, applied rate %lf, "
578 "%" G_GINT64_FORMAT " -- %" G_GINT64_FORMAT ", time %"
579 G_GINT64_FORMAT, FALSE, seg->rate, seg->applied_rate, seg->format,
580 seg->start, seg->stop, seg->time);
582 start_event = gst_event_new_new_segment_full (FALSE, seg->rate,
583 seg->applied_rate, seg->format, seg->start, seg->stop, seg->time);
585 selpad->segment_pending = FALSE;
587 GST_INPUT_SELECTOR_UNLOCK (sel);
590 gst_pad_push_event (sel->srcpad, close_event);
593 gst_pad_push_event (sel->srcpad, start_event);
595 if (selpad->discont) {
596 buf = gst_buffer_make_metadata_writable (buf);
598 GST_DEBUG_OBJECT (pad, "Marking discont buffer %p", buf);
599 GST_BUFFER_FLAG_SET (buf, GST_BUFFER_FLAG_DISCONT);
600 selpad->discont = FALSE;
604 GST_DEBUG_OBJECT (pad, "Forwarding buffer %p from pad %s:%s", buf,
605 GST_DEBUG_PAD_NAME (pad));
607 res = gst_pad_push (sel->srcpad, buf);
610 gst_object_unref (sel);
613 /* dropped buffers */
616 GST_DEBUG_OBJECT (pad, "Pad not active, discard buffer %p", buf);
617 /* when we drop a buffer, we're creating a discont on this pad */
618 selpad->discont = TRUE;
619 GST_INPUT_SELECTOR_UNLOCK (sel);
620 gst_buffer_unref (buf);
622 /* figure out what to return upstream */
623 GST_OBJECT_LOCK (selpad);
624 if (selpad->always_ok)
627 res = GST_FLOW_NOT_LINKED;
628 GST_OBJECT_UNLOCK (selpad);
634 GST_DEBUG_OBJECT (pad, "We are flushing, discard buffer %p", buf);
635 GST_INPUT_SELECTOR_UNLOCK (sel);
636 gst_buffer_unref (buf);
637 res = GST_FLOW_WRONG_STATE;
642 static void gst_input_selector_init (GstInputSelector * sel);
643 static void gst_input_selector_base_init (GstInputSelectorClass * klass);
644 static void gst_input_selector_class_init (GstInputSelectorClass * klass);
646 static void gst_input_selector_dispose (GObject * object);
648 static void gst_input_selector_set_property (GObject * object,
649 guint prop_id, const GValue * value, GParamSpec * pspec);
650 static void gst_input_selector_get_property (GObject * object,
651 guint prop_id, GValue * value, GParamSpec * pspec);
653 static GstPad *gst_input_selector_request_new_pad (GstElement * element,
654 GstPadTemplate * templ, const gchar * unused);
655 static void gst_input_selector_release_pad (GstElement * element, GstPad * pad);
657 static GstStateChangeReturn gst_input_selector_change_state (GstElement *
658 element, GstStateChange transition);
660 static GstCaps *gst_input_selector_getcaps (GstPad * pad);
661 static gboolean gst_input_selector_event (GstPad * pad, GstEvent * event);
662 static gboolean gst_input_selector_query (GstPad * pad, GstQuery * query);
663 static gint64 gst_input_selector_block (GstInputSelector * self);
664 static void gst_input_selector_switch (GstInputSelector * self,
665 GstPad * pad, gint64 stop_time, gint64 start_time);
667 static GstElementClass *parent_class = NULL;
670 gst_input_selector_get_type (void)
672 static GType input_selector_type = 0;
674 if (!input_selector_type) {
675 static const GTypeInfo input_selector_info = {
676 sizeof (GstInputSelectorClass),
677 (GBaseInitFunc) gst_input_selector_base_init,
679 (GClassInitFunc) gst_input_selector_class_init,
682 sizeof (GstInputSelector),
684 (GInstanceInitFunc) gst_input_selector_init,
686 input_selector_type =
687 g_type_register_static (GST_TYPE_ELEMENT,
688 "GstInputSelector", &input_selector_info, 0);
689 GST_DEBUG_CATEGORY_INIT (input_selector_debug,
690 "input-selector", 0, "An input stream selector element");
693 return input_selector_type;
697 gst_input_selector_base_init (GstInputSelectorClass * klass)
699 GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
701 gst_element_class_set_details (element_class, &gst_input_selector_details);
702 gst_element_class_add_pad_template (element_class,
703 gst_static_pad_template_get (&gst_input_selector_sink_factory));
704 gst_element_class_add_pad_template (element_class,
705 gst_static_pad_template_get (&gst_input_selector_src_factory));
709 gst_input_selector_class_init (GstInputSelectorClass * klass)
711 GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
712 GstElementClass *gstelement_class = GST_ELEMENT_CLASS (klass);
714 parent_class = g_type_class_peek_parent (klass);
716 gobject_class->dispose = gst_input_selector_dispose;
718 gobject_class->set_property =
719 GST_DEBUG_FUNCPTR (gst_input_selector_set_property);
720 gobject_class->get_property =
721 GST_DEBUG_FUNCPTR (gst_input_selector_get_property);
723 g_object_class_install_property (gobject_class, PROP_N_PADS,
724 g_param_spec_uint ("n-pads", "Number of Pads",
725 "The number of sink pads", 0, G_MAXUINT, 0, G_PARAM_READABLE));
727 g_object_class_install_property (gobject_class, PROP_ACTIVE_PAD,
728 g_param_spec_object ("active-pad", "Active pad",
729 "The currently active sink pad", GST_TYPE_PAD, G_PARAM_READWRITE));
731 g_object_class_install_property (gobject_class, PROP_SELECT_ALL,
732 g_param_spec_boolean ("select-all", "Select all mode",
733 "Forwards data from all input pads", FALSE, G_PARAM_READWRITE));
736 * GstInputSelector::block:
737 * @inputselector: the #GstInputSelector
739 * Block all sink pads in preparation for a switch. Returns the stop time of
740 * the current switch segment, as a running time, or 0 if there is no current
741 * active pad or the current active pad never received data.
743 gst_input_selector_signals[SIGNAL_BLOCK] =
744 g_signal_new ("block", G_TYPE_FROM_CLASS (klass),
745 G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
746 G_STRUCT_OFFSET (GstInputSelectorClass, block), NULL, NULL,
747 gst_selector_marshal_INT64__VOID, G_TYPE_INT64, 0);
749 * GstInputSelector::switch:
750 * @inputselector: the #GstInputSelector
751 * @pad: the pad to switch to
752 * @stop_time: running time at which to close the previous segment, or -1
753 * to use the running time of the previously active sink pad
754 * @start_time: running time at which to start the new segment, or -1 to
755 * use the running time of the newly active sink pad
757 * Switch to a new feed. The segment opened by the previously active pad, if
758 * any, will be closed, and a new segment opened before data flows again.
760 * This signal must be emitted when the element has been blocked via the <link
761 * linkend="GstInputSelector-block">block</link> signal.
763 * If you have a stream with only one switch element, such as an audio-only
764 * stream, a stream switch should be performed by first emitting the block
765 * signal, and then emitting the switch signal with -1 for the stop and start
768 * The intention of the @stop_time and @start_time arguments is to allow
769 * multiple switch elements to switch and maintain stream synchronization.
770 * When switching a stream with multiple feeds, you will need as many switch
771 * elements as you have feeds. For example, a feed with audio and video will
772 * have one switch element between the audio feeds and one for video.
774 * A switch over multiple switch elements should be performed as follows:
775 * First, emit the <link linkend="GstInputSelector-block">block</link>
776 * signal, collecting the returned values. The maximum running time returned
777 * by block should then be used as the time at which to close the previous
780 * Then, query the running times of the new audio and video pads that you will
781 * switch to. Naturally, these pads are on separate switch elements. Take the
782 * minimum running time for those streams and use it for the time at which to
783 * open the new segment.
785 * If @pad is the same as the current active pad, the element will cancel any
786 * previous block without adjusting segments.
788 * Since: 0.10.7 the signal changed from accepting the pad name to the pad
791 gst_input_selector_signals[SIGNAL_SWITCH] =
792 g_signal_new ("switch", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
793 G_STRUCT_OFFSET (GstInputSelectorClass, switch_),
794 NULL, NULL, gst_selector_marshal_VOID__OBJECT_INT64_INT64,
795 G_TYPE_NONE, 3, GST_TYPE_PAD, G_TYPE_INT64, G_TYPE_INT64);
797 gstelement_class->request_new_pad = gst_input_selector_request_new_pad;
798 gstelement_class->release_pad = gst_input_selector_release_pad;
799 gstelement_class->change_state = gst_input_selector_change_state;
801 klass->block = GST_DEBUG_FUNCPTR (gst_input_selector_block);
802 /* note the underscore because switch is a keyword otherwise */
803 klass->switch_ = GST_DEBUG_FUNCPTR (gst_input_selector_switch);
807 gst_input_selector_init (GstInputSelector * sel)
809 sel->srcpad = gst_pad_new ("src", GST_PAD_SRC);
810 gst_pad_set_internal_link_function (sel->srcpad,
811 GST_DEBUG_FUNCPTR (gst_selector_pad_get_linked_pads));
812 gst_pad_set_getcaps_function (sel->srcpad,
813 GST_DEBUG_FUNCPTR (gst_input_selector_getcaps));
814 gst_pad_set_query_function (sel->srcpad,
815 GST_DEBUG_FUNCPTR (gst_input_selector_query));
816 gst_pad_set_event_function (sel->srcpad,
817 GST_DEBUG_FUNCPTR (gst_input_selector_event));
818 gst_element_add_pad (GST_ELEMENT (sel), sel->srcpad);
819 /* sinkpad management */
820 sel->active_sinkpad = NULL;
822 gst_segment_init (&sel->segment, GST_FORMAT_UNDEFINED);
824 sel->lock = g_mutex_new ();
825 sel->cond = g_cond_new ();
826 sel->blocked = FALSE;
828 sel->select_all = FALSE;
832 gst_input_selector_dispose (GObject * object)
834 GstInputSelector *sel = GST_INPUT_SELECTOR (object);
836 if (sel->active_sinkpad) {
837 gst_object_unref (sel->active_sinkpad);
838 sel->active_sinkpad = NULL;
841 g_mutex_free (sel->lock);
845 g_cond_free (sel->cond);
849 G_OBJECT_CLASS (parent_class)->dispose (object);
852 /* Solve the following equation for B.timestamp, and set that as the segment
854 * B.running_time = (B.timestamp - NS.start) / NS.abs_rate + NS.accum
857 gst_segment_get_timestamp (GstSegment * segment, gint64 running_time)
859 return (running_time - segment->accum) * segment->abs_rate + segment->start;
863 gst_segment_set_stop (GstSegment * segment, gint64 running_time)
865 segment->stop = gst_segment_get_timestamp (segment, running_time);
866 segment->last_stop = -1;
870 gst_segment_set_start (GstSegment * segment, gint64 running_time)
872 gint64 new_start, duration;
874 new_start = gst_segment_get_timestamp (segment, running_time);
876 /* this is the duration we skipped */
877 duration = new_start - segment->start;
878 /* add the duration to the accumulated segment time */
879 segment->accum += duration;
880 /* move position in the segment */
881 segment->time += duration;
882 segment->start += duration;
885 /* this function must be called with the SELECTOR_LOCK. It returns TRUE when the
886 * active pad changed. */
888 gst_input_selector_set_active_pad (GstInputSelector * self,
889 GstPad * pad, gint64 stop_time, gint64 start_time)
891 GstSelectorPad *old, *new;
892 GstPad **active_pad_p;
894 if (pad == self->active_sinkpad)
897 old = GST_SELECTOR_PAD_CAST (self->active_sinkpad);
898 new = GST_SELECTOR_PAD_CAST (pad);
900 GST_DEBUG_OBJECT (self, "setting active pad to %s:%s",
901 GST_DEBUG_PAD_NAME (new));
903 if (stop_time == -1 && old) {
904 /* no stop time given, get the latest running_time on the active pad to
905 * close and open the new segment */
906 stop_time = start_time = gst_selector_pad_get_running_time (old);
907 GST_DEBUG_OBJECT (self, "using start/stop of %" G_GINT64_FORMAT,
911 if (old && old->active && !self->pending_close && stop_time >= 0) {
912 /* schedule a last_stop update if one isn't already scheduled, and a
913 segment has been pushed before. */
914 memcpy (&self->segment, &old->segment, sizeof (self->segment));
915 GST_DEBUG_OBJECT (self, "setting stop_time to %" G_GINT64_FORMAT,
917 gst_segment_set_stop (&self->segment, stop_time);
918 self->pending_close = TRUE;
921 if (new && new->active && start_time >= 0) {
922 GST_DEBUG_OBJECT (self, "setting start_time to %" G_GINT64_FORMAT,
924 /* schedule a new segment push */
925 gst_segment_set_start (&new->segment, start_time);
926 new->segment_pending = TRUE;
929 active_pad_p = &self->active_sinkpad;
930 gst_object_replace ((GstObject **) active_pad_p, GST_OBJECT_CAST (pad));
931 GST_DEBUG_OBJECT (self, "New active pad is %" GST_PTR_FORMAT,
932 self->active_sinkpad);
938 gst_input_selector_set_property (GObject * object, guint prop_id,
939 const GValue * value, GParamSpec * pspec)
941 GstInputSelector *sel = GST_INPUT_SELECTOR (object);
944 case PROP_ACTIVE_PAD:
948 pad = g_value_get_object (value);
950 GST_INPUT_SELECTOR_LOCK (sel);
951 gst_input_selector_set_active_pad (sel, pad,
952 GST_CLOCK_TIME_NONE, GST_CLOCK_TIME_NONE);
953 GST_INPUT_SELECTOR_UNLOCK (sel);
956 case PROP_SELECT_ALL:
957 GST_INPUT_SELECTOR_LOCK (object);
958 sel->select_all = g_value_get_boolean (value);
959 GST_INPUT_SELECTOR_UNLOCK (object);
962 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
968 gst_input_selector_get_property (GObject * object, guint prop_id,
969 GValue * value, GParamSpec * pspec)
971 GstInputSelector *sel = GST_INPUT_SELECTOR (object);
975 GST_INPUT_SELECTOR_LOCK (object);
976 g_value_set_uint (value, sel->n_pads);
977 GST_INPUT_SELECTOR_UNLOCK (object);
979 case PROP_ACTIVE_PAD:
980 GST_INPUT_SELECTOR_LOCK (object);
981 g_value_set_object (value, sel->active_sinkpad);
982 GST_INPUT_SELECTOR_UNLOCK (object);
984 case PROP_SELECT_ALL:
985 GST_INPUT_SELECTOR_LOCK (object);
986 g_value_set_boolean (value, sel->select_all);
987 GST_INPUT_SELECTOR_UNLOCK (object);
990 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
996 gst_input_selector_get_linked_pad (GstPad * pad, gboolean strict)
998 GstInputSelector *sel;
999 GstPad *otherpad = NULL;
1001 sel = GST_INPUT_SELECTOR (gst_pad_get_parent (pad));
1003 GST_INPUT_SELECTOR_LOCK (sel);
1004 if (pad == sel->srcpad)
1005 otherpad = sel->active_sinkpad;
1006 else if (pad == sel->active_sinkpad || !strict)
1007 otherpad = sel->srcpad;
1009 gst_object_ref (otherpad);
1010 GST_INPUT_SELECTOR_UNLOCK (sel);
1012 gst_object_unref (sel);
1018 gst_input_selector_event (GstPad * pad, GstEvent * event)
1023 otherpad = gst_input_selector_get_linked_pad (pad, TRUE);
1025 res = gst_pad_push_event (otherpad, event);
1027 gst_object_unref (otherpad);
1032 /* query on the srcpad. We override this function because by default it will
1033 * only forward the query to one random sinkpad */
1035 gst_input_selector_query (GstPad * pad, GstQuery * query)
1038 GstInputSelector *sel;
1041 sel = GST_INPUT_SELECTOR (gst_pad_get_parent (pad));
1043 otherpad = gst_input_selector_get_linked_pad (pad, TRUE);
1045 switch (GST_QUERY_TYPE (query)) {
1046 case GST_QUERY_LATENCY:
1049 GstClockTime resmin, resmax;
1056 /* assume FALSE, we become TRUE if one query succeeds */
1059 /* perform the query on all sinkpads and combine the results. We take the
1060 * max of min and the min of max for the result latency. */
1061 GST_INPUT_SELECTOR_LOCK (sel);
1062 for (walk = GST_ELEMENT_CAST (sel)->sinkpads; walk;
1063 walk = g_list_next (walk)) {
1064 GstPad *sinkpad = GST_PAD_CAST (walk->data);
1066 if (gst_pad_peer_query (sinkpad, query)) {
1067 GstClockTime min, max;
1070 /* one query succeeded, we succeed too */
1073 gst_query_parse_latency (query, &live, &min, &max);
1075 GST_DEBUG_OBJECT (sinkpad,
1076 "peer latency min %" GST_TIME_FORMAT ", max %" GST_TIME_FORMAT
1077 ", live %d", GST_TIME_ARGS (min), GST_TIME_ARGS (max), live);
1084 else if (max < resmax)
1086 if (reslive == FALSE)
1091 GST_INPUT_SELECTOR_UNLOCK (sel);
1093 gst_query_set_latency (query, reslive, resmin, resmax);
1095 GST_DEBUG_OBJECT (sel,
1096 "total latency min %" GST_TIME_FORMAT ", max %" GST_TIME_FORMAT
1097 ", live %d", GST_TIME_ARGS (resmin), GST_TIME_ARGS (resmax),
1104 res = gst_pad_peer_query (otherpad, query);
1107 gst_object_unref (otherpad);
1108 gst_object_unref (sel);
1114 gst_input_selector_getcaps (GstPad * pad)
1120 parent = gst_object_get_parent (GST_OBJECT (pad));
1122 otherpad = gst_input_selector_get_linked_pad (pad, FALSE);
1125 if (GST_INPUT_SELECTOR (parent)->select_all) {
1126 GST_DEBUG_OBJECT (parent,
1127 "Pad %s:%s not linked, returning merge of caps",
1128 GST_DEBUG_PAD_NAME (pad));
1129 caps = gst_pad_proxy_getcaps (pad);
1131 GST_DEBUG_OBJECT (parent,
1132 "Pad %s:%s not linked, returning ANY", GST_DEBUG_PAD_NAME (pad));
1133 caps = gst_caps_new_any ();
1136 GST_DEBUG_OBJECT (parent,
1137 "Pad %s:%s is linked (to %s:%s), returning peer caps",
1138 GST_DEBUG_PAD_NAME (pad), GST_DEBUG_PAD_NAME (otherpad));
1139 /* if the peer has caps, use those. If the pad is not linked, this function
1140 * returns NULL and we return ANY */
1141 if (!(caps = gst_pad_peer_get_caps (otherpad)))
1142 caps = gst_caps_new_any ();
1143 gst_object_unref (otherpad);
1146 gst_object_unref (parent);
1150 /* check if the pad is the active sinkpad */
1152 gst_input_selector_is_active_sinkpad (GstInputSelector * sel, GstPad * pad)
1154 GstSelectorPad *selpad;
1157 selpad = GST_SELECTOR_PAD_CAST (pad);
1159 GST_INPUT_SELECTOR_LOCK (sel);
1160 res = (pad == sel->active_sinkpad);
1161 GST_INPUT_SELECTOR_UNLOCK (sel);
1166 /* Get or create the active sinkpad, must be called with SELECTOR_LOCK */
1168 gst_input_selector_activate_sinkpad (GstInputSelector * sel, GstPad * pad)
1170 GstPad *active_sinkpad;
1171 GstSelectorPad *selpad;
1173 selpad = GST_SELECTOR_PAD_CAST (pad);
1175 selpad->active = TRUE;
1176 active_sinkpad = sel->active_sinkpad;
1177 if (active_sinkpad == NULL || sel->select_all) {
1178 /* first pad we get activity on becomes the activated pad by default, if we
1179 * select all, we also remember the last used pad. */
1180 active_sinkpad = sel->active_sinkpad = gst_object_ref (pad);
1181 GST_DEBUG_OBJECT (sel, "Activating pad %s:%s", GST_DEBUG_PAD_NAME (pad));
1184 return active_sinkpad;
1188 gst_input_selector_request_new_pad (GstElement * element,
1189 GstPadTemplate * templ, const gchar * unused)
1191 GstInputSelector *sel;
1193 GstPad *sinkpad = NULL;
1195 g_return_val_if_fail (templ->direction == GST_PAD_SINK, NULL);
1197 sel = GST_INPUT_SELECTOR (element);
1199 GST_INPUT_SELECTOR_LOCK (sel);
1201 GST_LOG_OBJECT (sel, "Creating new pad %d", sel->padcount);
1202 name = g_strdup_printf ("sink%d", sel->padcount++);
1203 sinkpad = g_object_new (GST_TYPE_SELECTOR_PAD,
1204 "name", name, "direction", templ->direction, "template", templ, NULL);
1209 gst_pad_set_event_function (sinkpad,
1210 GST_DEBUG_FUNCPTR (gst_selector_pad_event));
1211 gst_pad_set_getcaps_function (sinkpad,
1212 GST_DEBUG_FUNCPTR (gst_selector_pad_getcaps));
1213 gst_pad_set_chain_function (sinkpad,
1214 GST_DEBUG_FUNCPTR (gst_selector_pad_chain));
1215 gst_pad_set_internal_link_function (sinkpad,
1216 GST_DEBUG_FUNCPTR (gst_selector_pad_get_linked_pads));
1217 gst_pad_set_bufferalloc_function (sinkpad,
1218 GST_DEBUG_FUNCPTR (gst_selector_pad_bufferalloc));
1220 gst_pad_set_active (sinkpad, TRUE);
1221 gst_element_add_pad (GST_ELEMENT (sel), sinkpad);
1222 GST_INPUT_SELECTOR_UNLOCK (sel);
1228 gst_input_selector_release_pad (GstElement * element, GstPad * pad)
1230 GstInputSelector *sel;
1232 sel = GST_INPUT_SELECTOR (element);
1233 GST_LOG_OBJECT (sel, "Releasing pad %s:%s", GST_DEBUG_PAD_NAME (pad));
1235 GST_INPUT_SELECTOR_LOCK (sel);
1236 /* if the pad was the active pad, makes us select a new one */
1237 if (sel->active_sinkpad == pad) {
1238 GST_DEBUG_OBJECT (sel, "Deactivating pad %s:%s", GST_DEBUG_PAD_NAME (pad));
1239 sel->active_sinkpad = NULL;
1243 gst_pad_set_active (pad, FALSE);
1244 gst_element_remove_pad (GST_ELEMENT (sel), pad);
1245 GST_INPUT_SELECTOR_UNLOCK (sel);
1249 gst_input_selector_reset (GstInputSelector * sel)
1253 GST_INPUT_SELECTOR_LOCK (sel);
1254 /* clear active pad */
1255 if (sel->active_sinkpad) {
1256 gst_object_unref (sel->active_sinkpad);
1257 sel->active_sinkpad = NULL;
1260 gst_segment_init (&sel->segment, GST_FORMAT_UNDEFINED);
1261 sel->pending_close = FALSE;
1262 /* reset each of our sinkpads state */
1263 for (walk = GST_ELEMENT_CAST (sel)->sinkpads; walk; walk = g_list_next (walk)) {
1264 GstSelectorPad *selpad = GST_SELECTOR_PAD_CAST (walk->data);
1266 gst_selector_pad_reset (selpad);
1269 gst_tag_list_free (selpad->tags);
1270 selpad->tags = NULL;
1273 GST_INPUT_SELECTOR_UNLOCK (sel);
1276 static GstStateChangeReturn
1277 gst_input_selector_change_state (GstElement * element,
1278 GstStateChange transition)
1280 GstInputSelector *self = GST_INPUT_SELECTOR (element);
1281 GstStateChangeReturn result;
1283 switch (transition) {
1284 case GST_STATE_CHANGE_READY_TO_PAUSED:
1285 GST_INPUT_SELECTOR_LOCK (self);
1286 self->blocked = FALSE;
1287 self->flushing = FALSE;
1288 GST_INPUT_SELECTOR_UNLOCK (self);
1290 case GST_STATE_CHANGE_PAUSED_TO_READY:
1291 /* first unlock before we call the parent state change function, which
1292 * tries to acquire the stream lock when going to ready. */
1293 GST_INPUT_SELECTOR_LOCK (self);
1294 self->blocked = FALSE;
1295 self->flushing = TRUE;
1296 GST_INPUT_SELECTOR_BROADCAST (self);
1297 GST_INPUT_SELECTOR_UNLOCK (self);
1303 result = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
1305 switch (transition) {
1306 case GST_STATE_CHANGE_PAUSED_TO_READY:
1307 gst_input_selector_reset (self);
1317 gst_input_selector_block (GstInputSelector * self)
1320 GstSelectorPad *spad;
1322 GST_INPUT_SELECTOR_LOCK (self);
1325 GST_WARNING_OBJECT (self, "switch already blocked");
1327 self->blocked = TRUE;
1328 spad = GST_SELECTOR_PAD_CAST (self->active_sinkpad);
1331 ret = gst_selector_pad_get_running_time (spad);
1333 GST_DEBUG_OBJECT (self, "no active pad while blocking");
1335 GST_INPUT_SELECTOR_UNLOCK (self);
1340 /* stop_time and start_time are running times */
1342 gst_input_selector_switch (GstInputSelector * self, GstPad * pad,
1343 gint64 stop_time, gint64 start_time)
1347 g_return_if_fail (self->blocked == TRUE);
1349 GST_INPUT_SELECTOR_LOCK (self);
1351 gst_input_selector_set_active_pad (self, pad, stop_time, start_time);
1353 self->blocked = FALSE;
1354 GST_INPUT_SELECTOR_BROADCAST (self);
1355 GST_INPUT_SELECTOR_UNLOCK (self);
1358 g_object_notify (G_OBJECT (self), "active-pad");
1362 gst_input_selector_check_eos (GstElement * selector)
1364 GstIterator *it = gst_element_iterate_sink_pads (selector);
1365 GstIteratorResult ires;
1367 gboolean done = FALSE, is_eos = FALSE;
1368 GstSelectorPad *pad;
1371 ires = gst_iterator_next (it, &item);
1373 case GST_ITERATOR_DONE:
1374 GST_INFO_OBJECT (selector, "all sink pads have eos");
1378 case GST_ITERATOR_OK:
1379 pad = GST_SELECTOR_PAD_CAST (item);
1384 case GST_ITERATOR_RESYNC:
1385 gst_iterator_resync (it);
1392 gst_iterator_free (it);