2010-12-31 00:43:37 +00:00
|
|
|
/* GStreamer input selector
|
2008-01-29 07:38:31 +00:00
|
|
|
* Copyright (C) 2003 Julien Moutte <julien@moutte.net>
|
|
|
|
* Copyright (C) 2005 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
|
|
|
* Copyright (C) 2005 Jan Schmidt <thaytan@mad.scientist.com>
|
|
|
|
* Copyright (C) 2007 Wim Taymans <wim.taymans@gmail.com>
|
|
|
|
* Copyright (C) 2007 Andy Wingo <wingo@pobox.com>
|
|
|
|
* Copyright (C) 2008 Nokia Corporation. (contact <stefan.kost@nokia.com>)
|
2011-03-19 07:55:57 +00:00
|
|
|
* Copyright (C) 2011 Sebastian Dröge <sebastian.droege@collabora.co.uk>
|
2008-01-29 07:38:31 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
2012-11-03 20:44:48 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2008-01-29 07:38:31 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* SECTION:element-input-selector
|
2017-01-16 14:26:16 +00:00
|
|
|
* @title: input-selector
|
2008-01-29 07:38:31 +00:00
|
|
|
* @see_also: #GstOutputSelector
|
|
|
|
*
|
|
|
|
* Direct one out of N input streams to the output pad.
|
2010-12-31 00:43:37 +00:00
|
|
|
*
|
2011-01-06 18:18:29 +00:00
|
|
|
* The input pads are from a GstPad subclass and have additional
|
|
|
|
* properties, which users may find useful, namely:
|
|
|
|
*
|
2017-01-16 14:26:16 +00:00
|
|
|
* * "running-time": Running time of stream on pad (#gint64)
|
|
|
|
* * "tags": The currently active tags on the pad (#GstTagList, boxed type)
|
|
|
|
* * "active": If the pad is currently active (#gboolean)
|
|
|
|
* * "always-ok" : Make an inactive pads return #GST_FLOW_OK instead of
|
2011-01-06 18:18:29 +00:00
|
|
|
* #GST_FLOW_NOT_LINKED
|
2017-01-16 14:26:16 +00:00
|
|
|
*
|
2008-01-29 07:38:31 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "gstinputselector.h"
|
|
|
|
|
2012-05-28 17:29:00 +00:00
|
|
|
#define DEBUG_CACHED_BUFFERS 0
|
|
|
|
|
2008-01-29 07:38:31 +00:00
|
|
|
GST_DEBUG_CATEGORY_STATIC (input_selector_debug);
|
|
|
|
#define GST_CAT_DEFAULT input_selector_debug
|
|
|
|
|
2012-05-28 17:29:00 +00:00
|
|
|
#define GST_TYPE_INPUT_SELECTOR_SYNC_MODE (gst_input_selector_sync_mode_get_type())
|
|
|
|
static GType
|
|
|
|
gst_input_selector_sync_mode_get_type (void)
|
|
|
|
{
|
|
|
|
static GType type = 0;
|
|
|
|
static const GEnumValue data[] = {
|
|
|
|
{GST_INPUT_SELECTOR_SYNC_MODE_ACTIVE_SEGMENT,
|
|
|
|
"Sync using the current active segment",
|
|
|
|
"active-segment"},
|
|
|
|
{GST_INPUT_SELECTOR_SYNC_MODE_CLOCK, "Sync using the clock", "clock"},
|
|
|
|
{0, NULL, NULL},
|
|
|
|
};
|
|
|
|
|
|
|
|
if (!type) {
|
|
|
|
type = g_enum_register_static ("GstInputSelectorSyncMode", data);
|
|
|
|
}
|
|
|
|
return type;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define GST_INPUT_SELECTOR_GET_LOCK(sel) (&((GstInputSelector*)(sel))->lock)
|
|
|
|
#define GST_INPUT_SELECTOR_GET_COND(sel) (&((GstInputSelector*)(sel))->cond)
|
|
|
|
#define GST_INPUT_SELECTOR_LOCK(sel) (g_mutex_lock (GST_INPUT_SELECTOR_GET_LOCK(sel)))
|
|
|
|
#define GST_INPUT_SELECTOR_UNLOCK(sel) (g_mutex_unlock (GST_INPUT_SELECTOR_GET_LOCK(sel)))
|
|
|
|
#define GST_INPUT_SELECTOR_WAIT(sel) (g_cond_wait (GST_INPUT_SELECTOR_GET_COND(sel), \
|
|
|
|
GST_INPUT_SELECTOR_GET_LOCK(sel)))
|
|
|
|
#define GST_INPUT_SELECTOR_BROADCAST(sel) (g_cond_broadcast (GST_INPUT_SELECTOR_GET_COND(sel)))
|
|
|
|
|
2008-01-29 07:38:31 +00:00
|
|
|
static GstStaticPadTemplate gst_input_selector_sink_factory =
|
2011-11-03 16:49:45 +00:00
|
|
|
GST_STATIC_PAD_TEMPLATE ("sink_%u",
|
2008-01-29 07:38:31 +00:00
|
|
|
GST_PAD_SINK,
|
|
|
|
GST_PAD_REQUEST,
|
|
|
|
GST_STATIC_CAPS_ANY);
|
|
|
|
|
|
|
|
static GstStaticPadTemplate gst_input_selector_src_factory =
|
|
|
|
GST_STATIC_PAD_TEMPLATE ("src",
|
|
|
|
GST_PAD_SRC,
|
|
|
|
GST_PAD_ALWAYS,
|
|
|
|
GST_STATIC_CAPS_ANY);
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
plugins/elements/gstinputselector.*: Various cleanups.
Original commit message from CVS:
* plugins/elements/gstinputselector.c: (gst_selector_pad_class_init),
(gst_selector_pad_finalize), (gst_selector_pad_get_property),
(gst_selector_pad_event), (gst_input_selector_class_init),
(gst_input_selector_init), (gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_push_pending_stop),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Various cleanups.
Added tags to the pads.
Select active pad based on the pad object instead of its name.
Fix refcount in set_active_pad.
Add property to get the number of pads.
* plugins/elements/gstoutputselector.c:
(gst_output_selector_class_init),
(gst_output_selector_set_property),
(gst_output_selector_get_property):
Various cleanups.
Select the active pad based on the pad object instead of its name.
Fix locking when setting the active pad.
* plugins/elements/gstselector-marshal.list:
* tests/check/elements/selector.c: (cleanup_pad),
(selector_set_active_pad), (run_input_selector_buffer_count):
Fixes for pad instead of padname for pad selection.
2008-03-13 16:46:04 +00:00
|
|
|
PROP_0,
|
|
|
|
PROP_N_PADS,
|
2011-03-19 09:28:49 +00:00
|
|
|
PROP_ACTIVE_PAD,
|
2012-05-28 17:29:00 +00:00
|
|
|
PROP_SYNC_STREAMS,
|
|
|
|
PROP_SYNC_MODE,
|
|
|
|
PROP_CACHE_BUFFERS
|
2008-01-29 07:38:31 +00:00
|
|
|
};
|
|
|
|
|
2012-02-21 21:06:17 +00:00
|
|
|
#define DEFAULT_SYNC_STREAMS TRUE
|
2012-05-28 17:29:00 +00:00
|
|
|
#define DEFAULT_SYNC_MODE GST_INPUT_SELECTOR_SYNC_MODE_ACTIVE_SEGMENT
|
|
|
|
#define DEFAULT_CACHE_BUFFERS FALSE
|
2010-12-31 00:43:37 +00:00
|
|
|
#define DEFAULT_PAD_ALWAYS_OK TRUE
|
plugins/elements/gstinputselector.c: Add pad property to configure behaviour of the unselected pad, it can return OK or N...
Original commit message from CVS:
* plugins/elements/gstinputselector.c: (gst_selector_pad_class_init),
(gst_selector_pad_init), (gst_selector_pad_set_property),
(gst_selector_pad_get_property), (gst_selector_pad_event),
(gst_selector_pad_bufferalloc), (gst_selector_pad_chain),
(gst_input_selector_set_active_pad):
Add pad property to configure behaviour of the unselected pad, it can
return OK or NOT_LINKED, based on the use case.
2008-03-20 17:07:07 +00:00
|
|
|
|
2008-01-29 07:38:31 +00:00
|
|
|
enum
|
|
|
|
{
|
plugins/elements/gstinputselector.*: Various cleanups.
Original commit message from CVS:
* plugins/elements/gstinputselector.c: (gst_selector_pad_class_init),
(gst_selector_pad_finalize), (gst_selector_pad_get_property),
(gst_selector_pad_event), (gst_input_selector_class_init),
(gst_input_selector_init), (gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_push_pending_stop),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Various cleanups.
Added tags to the pads.
Select active pad based on the pad object instead of its name.
Fix refcount in set_active_pad.
Add property to get the number of pads.
* plugins/elements/gstoutputselector.c:
(gst_output_selector_class_init),
(gst_output_selector_set_property),
(gst_output_selector_get_property):
Various cleanups.
Select the active pad based on the pad object instead of its name.
Fix locking when setting the active pad.
* plugins/elements/gstselector-marshal.list:
* tests/check/elements/selector.c: (cleanup_pad),
(selector_set_active_pad), (run_input_selector_buffer_count):
Fixes for pad instead of padname for pad selection.
2008-03-13 16:46:04 +00:00
|
|
|
PROP_PAD_0,
|
|
|
|
PROP_PAD_RUNNING_TIME,
|
|
|
|
PROP_PAD_TAGS,
|
|
|
|
PROP_PAD_ACTIVE,
|
2010-12-31 00:43:37 +00:00
|
|
|
PROP_PAD_ALWAYS_OK
|
2008-01-29 07:38:31 +00:00
|
|
|
};
|
|
|
|
|
2012-05-28 17:29:00 +00:00
|
|
|
static void gst_input_selector_active_pad_changed (GstInputSelector * sel,
|
|
|
|
GParamSpec * pspec, gpointer user_data);
|
2009-11-03 22:21:19 +00:00
|
|
|
static inline gboolean gst_input_selector_is_active_sinkpad (GstInputSelector *
|
|
|
|
sel, GstPad * pad);
|
2014-11-19 12:08:45 +00:00
|
|
|
static GstPad *gst_input_selector_get_active_sinkpad (GstInputSelector * sel);
|
2011-04-01 06:46:14 +00:00
|
|
|
static GstPad *gst_input_selector_get_linked_pad (GstInputSelector * sel,
|
|
|
|
GstPad * pad, gboolean strict);
|
2008-01-29 07:38:31 +00:00
|
|
|
|
|
|
|
#define GST_TYPE_SELECTOR_PAD \
|
|
|
|
(gst_selector_pad_get_type())
|
|
|
|
#define GST_SELECTOR_PAD(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_SELECTOR_PAD, GstSelectorPad))
|
|
|
|
#define GST_SELECTOR_PAD_CLASS(klass) \
|
|
|
|
(G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_SELECTOR_PAD, GstSelectorPadClass))
|
|
|
|
#define GST_IS_SELECTOR_PAD(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_SELECTOR_PAD))
|
|
|
|
#define GST_IS_SELECTOR_PAD_CLASS(klass) \
|
|
|
|
(G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_SELECTOR_PAD))
|
|
|
|
#define GST_SELECTOR_PAD_CAST(obj) \
|
|
|
|
((GstSelectorPad *)(obj))
|
|
|
|
|
|
|
|
typedef struct _GstSelectorPad GstSelectorPad;
|
|
|
|
typedef struct _GstSelectorPadClass GstSelectorPadClass;
|
2012-05-28 17:29:00 +00:00
|
|
|
typedef struct _GstSelectorPadCachedBuffer GstSelectorPadCachedBuffer;
|
2008-01-29 07:38:31 +00:00
|
|
|
|
|
|
|
struct _GstSelectorPad
|
|
|
|
{
|
|
|
|
GstPad parent;
|
|
|
|
|
2011-03-16 17:19:11 +00:00
|
|
|
gboolean pushed; /* when buffer was pushed downstream since activation */
|
2016-03-16 07:00:15 +00:00
|
|
|
guint group_id; /* Group ID from the last stream-start */
|
|
|
|
gboolean group_done; /* when Stream Group Done has been
|
|
|
|
received */
|
plugins/elements/gstinputselector.*: Various cleanups.
Original commit message from CVS:
* plugins/elements/gstinputselector.c: (gst_selector_pad_class_init),
(gst_selector_pad_finalize), (gst_selector_pad_get_property),
(gst_selector_pad_event), (gst_input_selector_class_init),
(gst_input_selector_init), (gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_push_pending_stop),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Various cleanups.
Added tags to the pads.
Select active pad based on the pad object instead of its name.
Fix refcount in set_active_pad.
Add property to get the number of pads.
* plugins/elements/gstoutputselector.c:
(gst_output_selector_class_init),
(gst_output_selector_set_property),
(gst_output_selector_get_property):
Various cleanups.
Select the active pad based on the pad object instead of its name.
Fix locking when setting the active pad.
* plugins/elements/gstselector-marshal.list:
* tests/check/elements/selector.c: (cleanup_pad),
(selector_set_active_pad), (run_input_selector_buffer_count):
Fixes for pad instead of padname for pad selection.
2008-03-13 16:46:04 +00:00
|
|
|
gboolean eos; /* when EOS has been received */
|
2011-03-17 13:10:49 +00:00
|
|
|
gboolean eos_sent; /* when EOS was sent downstream */
|
plugins/elements/gstinputselector.*: Figure out the locking a bit more.
Original commit message from CVS:
* plugins/elements/gstinputselector.c:
(gst_selector_pad_get_running_time), (gst_selector_pad_reset),
(gst_selector_pad_event), (gst_selector_pad_bufferalloc),
(gst_input_selector_wait), (gst_selector_pad_chain),
(gst_input_selector_class_init), (gst_input_selector_init),
(gst_input_selector_dispose), (gst_segment_set_start),
(gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_get_linked_pad),
(gst_input_selector_is_active_sinkpad),
(gst_input_selector_activate_sinkpad),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_change_state), (gst_input_selector_block),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Figure out the locking a bit more.
Mark buffers with discont after switching.
Fix initial segment forwarding, make sure to only forward one segment
regardless of what the sequence of buffers/segments is. See #522203.
Improve flushing when blocked.
Return NOT_LINKED when a stream is not selected.
Not API change for the switch signal in the docs.
Fix start/time/accum values of the new segment.
Correctly unlock and flush a blocking selector when going to READY.
2008-03-20 16:48:46 +00:00
|
|
|
gboolean discont; /* after switching we create a discont */
|
2011-03-19 07:55:57 +00:00
|
|
|
gboolean flushing; /* set after flush-start and before flush-stop */
|
plugins/elements/gstinputselector.c: Add pad property to configure behaviour of the unselected pad, it can return OK or N...
Original commit message from CVS:
* plugins/elements/gstinputselector.c: (gst_selector_pad_class_init),
(gst_selector_pad_init), (gst_selector_pad_set_property),
(gst_selector_pad_get_property), (gst_selector_pad_event),
(gst_selector_pad_bufferalloc), (gst_selector_pad_chain),
(gst_input_selector_set_active_pad):
Add pad property to configure behaviour of the unselected pad, it can
return OK or NOT_LINKED, based on the use case.
2008-03-20 17:07:07 +00:00
|
|
|
gboolean always_ok;
|
plugins/elements/gstinputselector.*: Various cleanups.
Original commit message from CVS:
* plugins/elements/gstinputselector.c: (gst_selector_pad_class_init),
(gst_selector_pad_finalize), (gst_selector_pad_get_property),
(gst_selector_pad_event), (gst_input_selector_class_init),
(gst_input_selector_init), (gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_push_pending_stop),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Various cleanups.
Added tags to the pads.
Select active pad based on the pad object instead of its name.
Fix refcount in set_active_pad.
Add property to get the number of pads.
* plugins/elements/gstoutputselector.c:
(gst_output_selector_class_init),
(gst_output_selector_set_property),
(gst_output_selector_get_property):
Various cleanups.
Select the active pad based on the pad object instead of its name.
Fix locking when setting the active pad.
* plugins/elements/gstselector-marshal.list:
* tests/check/elements/selector.c: (cleanup_pad),
(selector_set_active_pad), (run_input_selector_buffer_count):
Fixes for pad instead of padname for pad selection.
2008-03-13 16:46:04 +00:00
|
|
|
GstTagList *tags; /* last tags received on the pad */
|
|
|
|
|
2011-05-19 10:11:43 +00:00
|
|
|
GstSegment segment; /* the current segment on the pad */
|
|
|
|
guint32 segment_seqnum; /* sequence number of the current segment */
|
|
|
|
|
2012-04-16 08:22:53 +00:00
|
|
|
gboolean events_pending; /* TRUE if sticky events need to be updated */
|
2012-05-28 17:29:00 +00:00
|
|
|
|
|
|
|
gboolean sending_cached_buffers;
|
|
|
|
GQueue *cached_buffers;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct _GstSelectorPadCachedBuffer
|
|
|
|
{
|
|
|
|
GstBuffer *buffer;
|
|
|
|
GstSegment segment;
|
2008-01-29 07:38:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GstSelectorPadClass
|
|
|
|
{
|
|
|
|
GstPadClass parent;
|
|
|
|
};
|
|
|
|
|
2011-04-18 16:07:06 +00:00
|
|
|
GType gst_selector_pad_get_type (void);
|
2008-01-29 07:38:31 +00:00
|
|
|
static void gst_selector_pad_finalize (GObject * object);
|
|
|
|
static void gst_selector_pad_get_property (GObject * object,
|
|
|
|
guint prop_id, GValue * value, GParamSpec * pspec);
|
plugins/elements/gstinputselector.c: Add pad property to configure behaviour of the unselected pad, it can return OK or N...
Original commit message from CVS:
* plugins/elements/gstinputselector.c: (gst_selector_pad_class_init),
(gst_selector_pad_init), (gst_selector_pad_set_property),
(gst_selector_pad_get_property), (gst_selector_pad_event),
(gst_selector_pad_bufferalloc), (gst_selector_pad_chain),
(gst_input_selector_set_active_pad):
Add pad property to configure behaviour of the unselected pad, it can
return OK or NOT_LINKED, based on the use case.
2008-03-20 17:07:07 +00:00
|
|
|
static void gst_selector_pad_set_property (GObject * object,
|
|
|
|
guint prop_id, const GValue * value, GParamSpec * pspec);
|
2008-01-29 07:38:31 +00:00
|
|
|
|
|
|
|
static gint64 gst_selector_pad_get_running_time (GstSelectorPad * pad);
|
|
|
|
static void gst_selector_pad_reset (GstSelectorPad * pad);
|
2011-11-17 11:40:45 +00:00
|
|
|
static gboolean gst_selector_pad_event (GstPad * pad, GstObject * parent,
|
|
|
|
GstEvent * event);
|
2011-11-16 16:22:56 +00:00
|
|
|
static gboolean gst_selector_pad_query (GstPad * pad, GstObject * parent,
|
|
|
|
GstQuery * query);
|
2011-11-16 16:49:46 +00:00
|
|
|
static GstIterator *gst_selector_pad_iterate_linked_pads (GstPad * pad,
|
|
|
|
GstObject * parent);
|
2011-11-17 11:40:45 +00:00
|
|
|
static GstFlowReturn gst_selector_pad_chain (GstPad * pad, GstObject * parent,
|
|
|
|
GstBuffer * buf);
|
2012-05-28 17:29:00 +00:00
|
|
|
static void gst_selector_pad_cache_buffer (GstSelectorPad * selpad,
|
|
|
|
GstBuffer * buffer);
|
|
|
|
static void gst_selector_pad_free_cached_buffers (GstSelectorPad * selpad);
|
2008-01-29 07:38:31 +00:00
|
|
|
|
2011-04-18 16:07:06 +00:00
|
|
|
G_DEFINE_TYPE (GstSelectorPad, gst_selector_pad, GST_TYPE_PAD);
|
2008-01-29 07:38:31 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
gst_selector_pad_class_init (GstSelectorPadClass * klass)
|
|
|
|
{
|
|
|
|
GObjectClass *gobject_class;
|
|
|
|
|
|
|
|
gobject_class = (GObjectClass *) klass;
|
|
|
|
|
plugins/elements/gstinputselector.*: Various cleanups.
Original commit message from CVS:
* plugins/elements/gstinputselector.c: (gst_selector_pad_class_init),
(gst_selector_pad_finalize), (gst_selector_pad_get_property),
(gst_selector_pad_event), (gst_input_selector_class_init),
(gst_input_selector_init), (gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_push_pending_stop),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Various cleanups.
Added tags to the pads.
Select active pad based on the pad object instead of its name.
Fix refcount in set_active_pad.
Add property to get the number of pads.
* plugins/elements/gstoutputselector.c:
(gst_output_selector_class_init),
(gst_output_selector_set_property),
(gst_output_selector_get_property):
Various cleanups.
Select the active pad based on the pad object instead of its name.
Fix locking when setting the active pad.
* plugins/elements/gstselector-marshal.list:
* tests/check/elements/selector.c: (cleanup_pad),
(selector_set_active_pad), (run_input_selector_buffer_count):
Fixes for pad instead of padname for pad selection.
2008-03-13 16:46:04 +00:00
|
|
|
gobject_class->finalize = gst_selector_pad_finalize;
|
|
|
|
|
2009-11-03 17:11:13 +00:00
|
|
|
gobject_class->get_property = gst_selector_pad_get_property;
|
|
|
|
gobject_class->set_property = gst_selector_pad_set_property;
|
plugins/elements/gstinputselector.*: Various cleanups.
Original commit message from CVS:
* plugins/elements/gstinputselector.c: (gst_selector_pad_class_init),
(gst_selector_pad_finalize), (gst_selector_pad_get_property),
(gst_selector_pad_event), (gst_input_selector_class_init),
(gst_input_selector_init), (gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_push_pending_stop),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Various cleanups.
Added tags to the pads.
Select active pad based on the pad object instead of its name.
Fix refcount in set_active_pad.
Add property to get the number of pads.
* plugins/elements/gstoutputselector.c:
(gst_output_selector_class_init),
(gst_output_selector_set_property),
(gst_output_selector_get_property):
Various cleanups.
Select the active pad based on the pad object instead of its name.
Fix locking when setting the active pad.
* plugins/elements/gstselector-marshal.list:
* tests/check/elements/selector.c: (cleanup_pad),
(selector_set_active_pad), (run_input_selector_buffer_count):
Fixes for pad instead of padname for pad selection.
2008-03-13 16:46:04 +00:00
|
|
|
|
|
|
|
g_object_class_install_property (gobject_class, PROP_PAD_RUNNING_TIME,
|
2008-01-29 07:38:31 +00:00
|
|
|
g_param_spec_int64 ("running-time", "Running time",
|
2010-10-19 10:43:14 +00:00
|
|
|
"Running time of stream on pad", 0, G_MAXINT64, 0,
|
|
|
|
G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
|
plugins/elements/gstinputselector.*: Various cleanups.
Original commit message from CVS:
* plugins/elements/gstinputselector.c: (gst_selector_pad_class_init),
(gst_selector_pad_finalize), (gst_selector_pad_get_property),
(gst_selector_pad_event), (gst_input_selector_class_init),
(gst_input_selector_init), (gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_push_pending_stop),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Various cleanups.
Added tags to the pads.
Select active pad based on the pad object instead of its name.
Fix refcount in set_active_pad.
Add property to get the number of pads.
* plugins/elements/gstoutputselector.c:
(gst_output_selector_class_init),
(gst_output_selector_set_property),
(gst_output_selector_get_property):
Various cleanups.
Select the active pad based on the pad object instead of its name.
Fix locking when setting the active pad.
* plugins/elements/gstselector-marshal.list:
* tests/check/elements/selector.c: (cleanup_pad),
(selector_set_active_pad), (run_input_selector_buffer_count):
Fixes for pad instead of padname for pad selection.
2008-03-13 16:46:04 +00:00
|
|
|
g_object_class_install_property (gobject_class, PROP_PAD_TAGS,
|
|
|
|
g_param_spec_boxed ("tags", "Tags",
|
|
|
|
"The currently active tags on the pad", GST_TYPE_TAG_LIST,
|
2010-10-19 10:43:14 +00:00
|
|
|
G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
|
plugins/elements/gstinputselector.*: Various cleanups.
Original commit message from CVS:
* plugins/elements/gstinputselector.c: (gst_selector_pad_class_init),
(gst_selector_pad_finalize), (gst_selector_pad_get_property),
(gst_selector_pad_event), (gst_input_selector_class_init),
(gst_input_selector_init), (gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_push_pending_stop),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Various cleanups.
Added tags to the pads.
Select active pad based on the pad object instead of its name.
Fix refcount in set_active_pad.
Add property to get the number of pads.
* plugins/elements/gstoutputselector.c:
(gst_output_selector_class_init),
(gst_output_selector_set_property),
(gst_output_selector_get_property):
Various cleanups.
Select the active pad based on the pad object instead of its name.
Fix locking when setting the active pad.
* plugins/elements/gstselector-marshal.list:
* tests/check/elements/selector.c: (cleanup_pad),
(selector_set_active_pad), (run_input_selector_buffer_count):
Fixes for pad instead of padname for pad selection.
2008-03-13 16:46:04 +00:00
|
|
|
g_object_class_install_property (gobject_class, PROP_PAD_ACTIVE,
|
|
|
|
g_param_spec_boolean ("active", "Active",
|
2010-10-19 10:43:14 +00:00
|
|
|
"If the pad is currently active", FALSE,
|
|
|
|
G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
|
2010-12-31 00:43:37 +00:00
|
|
|
/* FIXME: better property name? */
|
plugins/elements/gstinputselector.c: Add pad property to configure behaviour of the unselected pad, it can return OK or N...
Original commit message from CVS:
* plugins/elements/gstinputselector.c: (gst_selector_pad_class_init),
(gst_selector_pad_init), (gst_selector_pad_set_property),
(gst_selector_pad_get_property), (gst_selector_pad_event),
(gst_selector_pad_bufferalloc), (gst_selector_pad_chain),
(gst_input_selector_set_active_pad):
Add pad property to configure behaviour of the unselected pad, it can
return OK or NOT_LINKED, based on the use case.
2008-03-20 17:07:07 +00:00
|
|
|
g_object_class_install_property (gobject_class, PROP_PAD_ALWAYS_OK,
|
|
|
|
g_param_spec_boolean ("always-ok", "Always OK",
|
|
|
|
"Make an inactive pad return OK instead of NOT_LINKED",
|
2010-10-19 10:43:14 +00:00
|
|
|
DEFAULT_PAD_ALWAYS_OK, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2008-01-29 07:38:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_selector_pad_init (GstSelectorPad * pad)
|
|
|
|
{
|
plugins/elements/gstinputselector.c: Add pad property to configure behaviour of the unselected pad, it can return OK or N...
Original commit message from CVS:
* plugins/elements/gstinputselector.c: (gst_selector_pad_class_init),
(gst_selector_pad_init), (gst_selector_pad_set_property),
(gst_selector_pad_get_property), (gst_selector_pad_event),
(gst_selector_pad_bufferalloc), (gst_selector_pad_chain),
(gst_input_selector_set_active_pad):
Add pad property to configure behaviour of the unselected pad, it can
return OK or NOT_LINKED, based on the use case.
2008-03-20 17:07:07 +00:00
|
|
|
pad->always_ok = DEFAULT_PAD_ALWAYS_OK;
|
2008-01-29 07:38:31 +00:00
|
|
|
gst_selector_pad_reset (pad);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_selector_pad_finalize (GObject * object)
|
|
|
|
{
|
|
|
|
GstSelectorPad *pad;
|
|
|
|
|
|
|
|
pad = GST_SELECTOR_PAD_CAST (object);
|
|
|
|
|
plugins/elements/gstinputselector.*: Various cleanups.
Original commit message from CVS:
* plugins/elements/gstinputselector.c: (gst_selector_pad_class_init),
(gst_selector_pad_finalize), (gst_selector_pad_get_property),
(gst_selector_pad_event), (gst_input_selector_class_init),
(gst_input_selector_init), (gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_push_pending_stop),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Various cleanups.
Added tags to the pads.
Select active pad based on the pad object instead of its name.
Fix refcount in set_active_pad.
Add property to get the number of pads.
* plugins/elements/gstoutputselector.c:
(gst_output_selector_class_init),
(gst_output_selector_set_property),
(gst_output_selector_get_property):
Various cleanups.
Select the active pad based on the pad object instead of its name.
Fix locking when setting the active pad.
* plugins/elements/gstselector-marshal.list:
* tests/check/elements/selector.c: (cleanup_pad),
(selector_set_active_pad), (run_input_selector_buffer_count):
Fixes for pad instead of padname for pad selection.
2008-03-13 16:46:04 +00:00
|
|
|
if (pad->tags)
|
2012-05-27 23:08:18 +00:00
|
|
|
gst_tag_list_unref (pad->tags);
|
2012-05-28 17:29:00 +00:00
|
|
|
gst_selector_pad_free_cached_buffers (pad);
|
plugins/elements/gstinputselector.*: Various cleanups.
Original commit message from CVS:
* plugins/elements/gstinputselector.c: (gst_selector_pad_class_init),
(gst_selector_pad_finalize), (gst_selector_pad_get_property),
(gst_selector_pad_event), (gst_input_selector_class_init),
(gst_input_selector_init), (gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_push_pending_stop),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Various cleanups.
Added tags to the pads.
Select active pad based on the pad object instead of its name.
Fix refcount in set_active_pad.
Add property to get the number of pads.
* plugins/elements/gstoutputselector.c:
(gst_output_selector_class_init),
(gst_output_selector_set_property),
(gst_output_selector_get_property):
Various cleanups.
Select the active pad based on the pad object instead of its name.
Fix locking when setting the active pad.
* plugins/elements/gstselector-marshal.list:
* tests/check/elements/selector.c: (cleanup_pad),
(selector_set_active_pad), (run_input_selector_buffer_count):
Fixes for pad instead of padname for pad selection.
2008-03-13 16:46:04 +00:00
|
|
|
|
2011-04-18 16:07:06 +00:00
|
|
|
G_OBJECT_CLASS (gst_selector_pad_parent_class)->finalize (object);
|
2008-01-29 07:38:31 +00:00
|
|
|
}
|
|
|
|
|
plugins/elements/gstinputselector.c: Add pad property to configure behaviour of the unselected pad, it can return OK or N...
Original commit message from CVS:
* plugins/elements/gstinputselector.c: (gst_selector_pad_class_init),
(gst_selector_pad_init), (gst_selector_pad_set_property),
(gst_selector_pad_get_property), (gst_selector_pad_event),
(gst_selector_pad_bufferalloc), (gst_selector_pad_chain),
(gst_input_selector_set_active_pad):
Add pad property to configure behaviour of the unselected pad, it can
return OK or NOT_LINKED, based on the use case.
2008-03-20 17:07:07 +00:00
|
|
|
static void
|
|
|
|
gst_selector_pad_set_property (GObject * object, guint prop_id,
|
|
|
|
const GValue * value, GParamSpec * pspec)
|
|
|
|
{
|
|
|
|
GstSelectorPad *spad = GST_SELECTOR_PAD_CAST (object);
|
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
case PROP_PAD_ALWAYS_OK:
|
|
|
|
GST_OBJECT_LOCK (object);
|
|
|
|
spad->always_ok = g_value_get_boolean (value);
|
|
|
|
GST_OBJECT_UNLOCK (object);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-01-29 07:38:31 +00:00
|
|
|
static void
|
|
|
|
gst_selector_pad_get_property (GObject * object, guint prop_id,
|
|
|
|
GValue * value, GParamSpec * pspec)
|
|
|
|
{
|
|
|
|
GstSelectorPad *spad = GST_SELECTOR_PAD_CAST (object);
|
|
|
|
|
|
|
|
switch (prop_id) {
|
plugins/elements/gstinputselector.*: Various cleanups.
Original commit message from CVS:
* plugins/elements/gstinputselector.c: (gst_selector_pad_class_init),
(gst_selector_pad_finalize), (gst_selector_pad_get_property),
(gst_selector_pad_event), (gst_input_selector_class_init),
(gst_input_selector_init), (gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_push_pending_stop),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Various cleanups.
Added tags to the pads.
Select active pad based on the pad object instead of its name.
Fix refcount in set_active_pad.
Add property to get the number of pads.
* plugins/elements/gstoutputselector.c:
(gst_output_selector_class_init),
(gst_output_selector_set_property),
(gst_output_selector_get_property):
Various cleanups.
Select the active pad based on the pad object instead of its name.
Fix locking when setting the active pad.
* plugins/elements/gstselector-marshal.list:
* tests/check/elements/selector.c: (cleanup_pad),
(selector_set_active_pad), (run_input_selector_buffer_count):
Fixes for pad instead of padname for pad selection.
2008-03-13 16:46:04 +00:00
|
|
|
case PROP_PAD_RUNNING_TIME:
|
2008-01-29 07:38:31 +00:00
|
|
|
g_value_set_int64 (value, gst_selector_pad_get_running_time (spad));
|
|
|
|
break;
|
plugins/elements/gstinputselector.*: Various cleanups.
Original commit message from CVS:
* plugins/elements/gstinputselector.c: (gst_selector_pad_class_init),
(gst_selector_pad_finalize), (gst_selector_pad_get_property),
(gst_selector_pad_event), (gst_input_selector_class_init),
(gst_input_selector_init), (gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_push_pending_stop),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Various cleanups.
Added tags to the pads.
Select active pad based on the pad object instead of its name.
Fix refcount in set_active_pad.
Add property to get the number of pads.
* plugins/elements/gstoutputselector.c:
(gst_output_selector_class_init),
(gst_output_selector_set_property),
(gst_output_selector_get_property):
Various cleanups.
Select the active pad based on the pad object instead of its name.
Fix locking when setting the active pad.
* plugins/elements/gstselector-marshal.list:
* tests/check/elements/selector.c: (cleanup_pad),
(selector_set_active_pad), (run_input_selector_buffer_count):
Fixes for pad instead of padname for pad selection.
2008-03-13 16:46:04 +00:00
|
|
|
case PROP_PAD_TAGS:
|
|
|
|
GST_OBJECT_LOCK (object);
|
|
|
|
g_value_set_boxed (value, spad->tags);
|
|
|
|
GST_OBJECT_UNLOCK (object);
|
|
|
|
break;
|
|
|
|
case PROP_PAD_ACTIVE:
|
|
|
|
{
|
|
|
|
GstInputSelector *sel;
|
2008-01-29 07:38:31 +00:00
|
|
|
|
plugins/elements/gstinputselector.*: Various cleanups.
Original commit message from CVS:
* plugins/elements/gstinputselector.c: (gst_selector_pad_class_init),
(gst_selector_pad_finalize), (gst_selector_pad_get_property),
(gst_selector_pad_event), (gst_input_selector_class_init),
(gst_input_selector_init), (gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_push_pending_stop),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Various cleanups.
Added tags to the pads.
Select active pad based on the pad object instead of its name.
Fix refcount in set_active_pad.
Add property to get the number of pads.
* plugins/elements/gstoutputselector.c:
(gst_output_selector_class_init),
(gst_output_selector_set_property),
(gst_output_selector_get_property):
Various cleanups.
Select the active pad based on the pad object instead of its name.
Fix locking when setting the active pad.
* plugins/elements/gstselector-marshal.list:
* tests/check/elements/selector.c: (cleanup_pad),
(selector_set_active_pad), (run_input_selector_buffer_count):
Fixes for pad instead of padname for pad selection.
2008-03-13 16:46:04 +00:00
|
|
|
sel = GST_INPUT_SELECTOR (gst_pad_get_parent (spad));
|
2013-05-31 04:57:49 +00:00
|
|
|
if (sel) {
|
|
|
|
g_value_set_boolean (value, gst_input_selector_is_active_sinkpad (sel,
|
|
|
|
GST_PAD_CAST (spad)));
|
|
|
|
gst_object_unref (sel);
|
|
|
|
} else {
|
|
|
|
g_value_set_boolean (value, FALSE);
|
|
|
|
}
|
plugins/elements/gstinputselector.*: Various cleanups.
Original commit message from CVS:
* plugins/elements/gstinputselector.c: (gst_selector_pad_class_init),
(gst_selector_pad_finalize), (gst_selector_pad_get_property),
(gst_selector_pad_event), (gst_input_selector_class_init),
(gst_input_selector_init), (gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_push_pending_stop),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Various cleanups.
Added tags to the pads.
Select active pad based on the pad object instead of its name.
Fix refcount in set_active_pad.
Add property to get the number of pads.
* plugins/elements/gstoutputselector.c:
(gst_output_selector_class_init),
(gst_output_selector_set_property),
(gst_output_selector_get_property):
Various cleanups.
Select the active pad based on the pad object instead of its name.
Fix locking when setting the active pad.
* plugins/elements/gstselector-marshal.list:
* tests/check/elements/selector.c: (cleanup_pad),
(selector_set_active_pad), (run_input_selector_buffer_count):
Fixes for pad instead of padname for pad selection.
2008-03-13 16:46:04 +00:00
|
|
|
break;
|
|
|
|
}
|
plugins/elements/gstinputselector.c: Add pad property to configure behaviour of the unselected pad, it can return OK or N...
Original commit message from CVS:
* plugins/elements/gstinputselector.c: (gst_selector_pad_class_init),
(gst_selector_pad_init), (gst_selector_pad_set_property),
(gst_selector_pad_get_property), (gst_selector_pad_event),
(gst_selector_pad_bufferalloc), (gst_selector_pad_chain),
(gst_input_selector_set_active_pad):
Add pad property to configure behaviour of the unselected pad, it can
return OK or NOT_LINKED, based on the use case.
2008-03-20 17:07:07 +00:00
|
|
|
case PROP_PAD_ALWAYS_OK:
|
|
|
|
GST_OBJECT_LOCK (object);
|
|
|
|
g_value_set_boolean (value, spad->always_ok);
|
|
|
|
GST_OBJECT_UNLOCK (object);
|
|
|
|
break;
|
2008-01-29 07:38:31 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static gint64
|
|
|
|
gst_selector_pad_get_running_time (GstSelectorPad * pad)
|
|
|
|
{
|
|
|
|
gint64 ret = 0;
|
|
|
|
|
|
|
|
GST_OBJECT_LOCK (pad);
|
2014-11-19 11:59:12 +00:00
|
|
|
if (pad->segment.format == GST_FORMAT_TIME) {
|
2014-01-15 22:28:01 +00:00
|
|
|
ret =
|
2014-10-03 12:01:59 +00:00
|
|
|
gst_segment_to_running_time (&pad->segment, pad->segment.format,
|
2014-01-15 22:28:01 +00:00
|
|
|
pad->segment.position);
|
2008-01-29 07:38:31 +00:00
|
|
|
}
|
|
|
|
GST_OBJECT_UNLOCK (pad);
|
|
|
|
|
2012-05-28 17:29:00 +00:00
|
|
|
GST_DEBUG_OBJECT (pad, "running time: %" GST_TIME_FORMAT
|
|
|
|
" segment: %" GST_SEGMENT_FORMAT, GST_TIME_ARGS (ret), &pad->segment);
|
2008-01-29 07:38:31 +00:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2012-05-28 17:29:00 +00:00
|
|
|
/* must be called with the SELECTOR_LOCK */
|
2008-01-29 07:38:31 +00:00
|
|
|
static void
|
|
|
|
gst_selector_pad_reset (GstSelectorPad * pad)
|
|
|
|
{
|
plugins/elements/gstinputselector.*: Figure out the locking a bit more.
Original commit message from CVS:
* plugins/elements/gstinputselector.c:
(gst_selector_pad_get_running_time), (gst_selector_pad_reset),
(gst_selector_pad_event), (gst_selector_pad_bufferalloc),
(gst_input_selector_wait), (gst_selector_pad_chain),
(gst_input_selector_class_init), (gst_input_selector_init),
(gst_input_selector_dispose), (gst_segment_set_start),
(gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_get_linked_pad),
(gst_input_selector_is_active_sinkpad),
(gst_input_selector_activate_sinkpad),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_change_state), (gst_input_selector_block),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Figure out the locking a bit more.
Mark buffers with discont after switching.
Fix initial segment forwarding, make sure to only forward one segment
regardless of what the sequence of buffers/segments is. See #522203.
Improve flushing when blocked.
Return NOT_LINKED when a stream is not selected.
Not API change for the switch signal in the docs.
Fix start/time/accum values of the new segment.
Correctly unlock and flush a blocking selector when going to READY.
2008-03-20 16:48:46 +00:00
|
|
|
GST_OBJECT_LOCK (pad);
|
2011-03-16 17:19:11 +00:00
|
|
|
pad->pushed = FALSE;
|
2016-03-16 07:00:15 +00:00
|
|
|
pad->group_done = FALSE;
|
2008-01-29 07:38:31 +00:00
|
|
|
pad->eos = FALSE;
|
2011-03-17 13:10:49 +00:00
|
|
|
pad->eos_sent = FALSE;
|
2012-04-16 08:22:53 +00:00
|
|
|
pad->events_pending = FALSE;
|
2008-09-08 20:27:23 +00:00
|
|
|
pad->discont = FALSE;
|
2011-03-19 07:55:57 +00:00
|
|
|
pad->flushing = FALSE;
|
2008-01-29 07:38:31 +00:00
|
|
|
gst_segment_init (&pad->segment, GST_FORMAT_UNDEFINED);
|
2012-05-28 17:29:00 +00:00
|
|
|
pad->sending_cached_buffers = FALSE;
|
|
|
|
gst_selector_pad_free_cached_buffers (pad);
|
plugins/elements/gstinputselector.*: Figure out the locking a bit more.
Original commit message from CVS:
* plugins/elements/gstinputselector.c:
(gst_selector_pad_get_running_time), (gst_selector_pad_reset),
(gst_selector_pad_event), (gst_selector_pad_bufferalloc),
(gst_input_selector_wait), (gst_selector_pad_chain),
(gst_input_selector_class_init), (gst_input_selector_init),
(gst_input_selector_dispose), (gst_segment_set_start),
(gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_get_linked_pad),
(gst_input_selector_is_active_sinkpad),
(gst_input_selector_activate_sinkpad),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_change_state), (gst_input_selector_block),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Figure out the locking a bit more.
Mark buffers with discont after switching.
Fix initial segment forwarding, make sure to only forward one segment
regardless of what the sequence of buffers/segments is. See #522203.
Improve flushing when blocked.
Return NOT_LINKED when a stream is not selected.
Not API change for the switch signal in the docs.
Fix start/time/accum values of the new segment.
Correctly unlock and flush a blocking selector when going to READY.
2008-03-20 16:48:46 +00:00
|
|
|
GST_OBJECT_UNLOCK (pad);
|
2008-01-29 07:38:31 +00:00
|
|
|
}
|
|
|
|
|
2012-05-28 17:29:00 +00:00
|
|
|
static GstSelectorPadCachedBuffer *
|
|
|
|
gst_selector_pad_new_cached_buffer (GstSelectorPad * selpad, GstBuffer * buffer)
|
|
|
|
{
|
|
|
|
GstSelectorPadCachedBuffer *cached_buffer =
|
|
|
|
g_slice_new (GstSelectorPadCachedBuffer);
|
|
|
|
cached_buffer->buffer = buffer;
|
|
|
|
cached_buffer->segment = selpad->segment;
|
|
|
|
return cached_buffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_selector_pad_free_cached_buffer (GstSelectorPadCachedBuffer * cached_buffer)
|
|
|
|
{
|
2015-04-10 10:32:27 +00:00
|
|
|
if (cached_buffer->buffer)
|
|
|
|
gst_buffer_unref (cached_buffer->buffer);
|
2012-05-28 17:29:00 +00:00
|
|
|
g_slice_free (GstSelectorPadCachedBuffer, cached_buffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* must be called with the SELECTOR_LOCK */
|
|
|
|
static void
|
|
|
|
gst_selector_pad_cache_buffer (GstSelectorPad * selpad, GstBuffer * buffer)
|
|
|
|
{
|
2012-06-01 14:34:16 +00:00
|
|
|
if (selpad->segment.format != GST_FORMAT_TIME) {
|
|
|
|
GST_DEBUG_OBJECT (selpad, "Buffer %p with segment not in time format, "
|
|
|
|
"not caching", buffer);
|
2015-09-21 05:58:46 +00:00
|
|
|
gst_buffer_unref (buffer);
|
2012-06-01 14:34:16 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-05-28 17:29:00 +00:00
|
|
|
GST_DEBUG_OBJECT (selpad, "Caching buffer %p", buffer);
|
|
|
|
if (!selpad->cached_buffers)
|
|
|
|
selpad->cached_buffers = g_queue_new ();
|
|
|
|
g_queue_push_tail (selpad->cached_buffers,
|
|
|
|
gst_selector_pad_new_cached_buffer (selpad, buffer));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* must be called with the SELECTOR_LOCK */
|
|
|
|
static void
|
|
|
|
gst_selector_pad_free_cached_buffers (GstSelectorPad * selpad)
|
|
|
|
{
|
|
|
|
if (!selpad->cached_buffers)
|
|
|
|
return;
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (selpad, "Freeing cached buffers");
|
2014-10-03 12:01:59 +00:00
|
|
|
g_queue_free_full (selpad->cached_buffers,
|
|
|
|
(GDestroyNotify) gst_selector_pad_free_cached_buffer);
|
2012-05-28 17:29:00 +00:00
|
|
|
selpad->cached_buffers = NULL;
|
|
|
|
}
|
|
|
|
|
2008-01-29 07:38:31 +00:00
|
|
|
/* strictly get the linked pad from the sinkpad. If the pad is active we return
|
|
|
|
* the srcpad else we return NULL */
|
2009-08-19 15:05:32 +00:00
|
|
|
static GstIterator *
|
2011-11-16 16:49:46 +00:00
|
|
|
gst_selector_pad_iterate_linked_pads (GstPad * pad, GstObject * parent)
|
2009-08-19 15:05:32 +00:00
|
|
|
{
|
2011-04-01 06:46:14 +00:00
|
|
|
GstInputSelector *sel;
|
2009-11-03 17:12:21 +00:00
|
|
|
GstPad *otherpad;
|
2011-06-28 17:01:57 +00:00
|
|
|
GstIterator *it = NULL;
|
2011-03-17 10:32:11 +00:00
|
|
|
GValue val = { 0, };
|
2009-11-03 17:12:21 +00:00
|
|
|
|
2011-11-16 16:49:46 +00:00
|
|
|
sel = GST_INPUT_SELECTOR (parent);
|
2011-04-01 06:46:14 +00:00
|
|
|
|
|
|
|
otherpad = gst_input_selector_get_linked_pad (sel, pad, TRUE);
|
2011-06-28 17:01:57 +00:00
|
|
|
if (otherpad) {
|
|
|
|
g_value_init (&val, GST_TYPE_PAD);
|
|
|
|
g_value_set_object (&val, otherpad);
|
|
|
|
it = gst_iterator_new_single (GST_TYPE_PAD, &val);
|
|
|
|
g_value_unset (&val);
|
2009-11-03 17:12:21 +00:00
|
|
|
gst_object_unref (otherpad);
|
2011-06-28 17:01:57 +00:00
|
|
|
}
|
2008-01-29 07:38:31 +00:00
|
|
|
|
2009-09-25 09:07:02 +00:00
|
|
|
return it;
|
2008-01-29 07:38:31 +00:00
|
|
|
}
|
|
|
|
|
2015-06-12 08:54:32 +00:00
|
|
|
static gboolean
|
|
|
|
forward_sticky_events (GstPad * sinkpad, GstEvent ** event, gpointer user_data)
|
|
|
|
{
|
|
|
|
GstInputSelector *sel = GST_INPUT_SELECTOR (user_data);
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (sinkpad, "forward sticky event %" GST_PTR_FORMAT, *event);
|
|
|
|
|
|
|
|
if (GST_EVENT_TYPE (*event) == GST_EVENT_SEGMENT) {
|
|
|
|
GstSegment *seg = &GST_SELECTOR_PAD (sinkpad)->segment;
|
|
|
|
GstEvent *e;
|
|
|
|
|
|
|
|
e = gst_event_new_segment (seg);
|
|
|
|
gst_event_set_seqnum (e, GST_SELECTOR_PAD_CAST (sinkpad)->segment_seqnum);
|
|
|
|
|
|
|
|
gst_pad_push_event (sel->srcpad, e);
|
|
|
|
} else if (GST_EVENT_TYPE (*event) == GST_EVENT_STREAM_START
|
|
|
|
&& !sel->have_group_id) {
|
|
|
|
GstEvent *tmp =
|
|
|
|
gst_pad_get_sticky_event (sel->srcpad, GST_EVENT_STREAM_START, 0);
|
|
|
|
|
|
|
|
/* Only push stream-start once if not all our streams have a stream-id */
|
|
|
|
if (!tmp) {
|
|
|
|
gst_pad_push_event (sel->srcpad, gst_event_ref (*event));
|
|
|
|
} else {
|
|
|
|
gst_event_unref (tmp);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
gst_pad_push_event (sel->srcpad, gst_event_ref (*event));
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_input_selector_eos_wait (GstInputSelector * self, GstSelectorPad * pad,
|
|
|
|
GstEvent * eos_event)
|
|
|
|
{
|
|
|
|
while (!self->eos && !self->flushing && !pad->flushing) {
|
|
|
|
GstPad *active_sinkpad;
|
|
|
|
active_sinkpad = gst_input_selector_get_active_sinkpad (self);
|
|
|
|
if (pad == GST_SELECTOR_PAD_CAST (active_sinkpad) && pad->eos
|
|
|
|
&& !pad->eos_sent) {
|
|
|
|
GST_DEBUG_OBJECT (pad, "send EOS event");
|
|
|
|
GST_INPUT_SELECTOR_UNLOCK (self);
|
|
|
|
/* if we have a pending events, push them now */
|
|
|
|
if (pad->events_pending) {
|
|
|
|
gst_pad_sticky_events_foreach (GST_PAD_CAST (pad),
|
|
|
|
forward_sticky_events, self);
|
|
|
|
pad->events_pending = FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
gst_pad_push_event (self->srcpad, gst_event_ref (eos_event));
|
|
|
|
GST_INPUT_SELECTOR_LOCK (self);
|
2016-07-25 09:15:15 +00:00
|
|
|
/* Wake up other pads so they can continue when syncing to
|
|
|
|
* running time, as this pad just switched to EOS and
|
|
|
|
* may enable others to progress */
|
|
|
|
GST_INPUT_SELECTOR_BROADCAST (self);
|
2015-06-12 08:54:32 +00:00
|
|
|
pad->eos_sent = TRUE;
|
|
|
|
} else {
|
|
|
|
/* we can be unlocked here when we are shutting down (flushing) or when we
|
|
|
|
* get unblocked */
|
|
|
|
GST_INPUT_SELECTOR_WAIT (self);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return self->flushing;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_input_selector_all_eos (GstInputSelector * sel)
|
|
|
|
{
|
|
|
|
GList *walk;
|
|
|
|
|
|
|
|
for (walk = GST_ELEMENT_CAST (sel)->sinkpads; walk; walk = walk->next) {
|
|
|
|
GstSelectorPad *selpad;
|
|
|
|
|
|
|
|
selpad = GST_SELECTOR_PAD_CAST (walk->data);
|
|
|
|
if (!selpad->eos) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2008-01-29 07:38:31 +00:00
|
|
|
static gboolean
|
2011-11-17 11:40:45 +00:00
|
|
|
gst_selector_pad_event (GstPad * pad, GstObject * parent, GstEvent * event)
|
2008-01-29 07:38:31 +00:00
|
|
|
{
|
|
|
|
gboolean res = TRUE;
|
2011-01-05 15:53:28 +00:00
|
|
|
gboolean forward;
|
2012-06-21 04:28:43 +00:00
|
|
|
gboolean new_tags = FALSE;
|
2008-01-29 07:38:31 +00:00
|
|
|
GstInputSelector *sel;
|
|
|
|
GstSelectorPad *selpad;
|
2009-02-11 16:21:20 +00:00
|
|
|
GstPad *prev_active_sinkpad;
|
2009-02-11 00:22:54 +00:00
|
|
|
GstPad *active_sinkpad;
|
2008-01-29 07:38:31 +00:00
|
|
|
|
2011-11-17 11:40:45 +00:00
|
|
|
sel = GST_INPUT_SELECTOR (parent);
|
2008-01-29 07:38:31 +00:00
|
|
|
selpad = GST_SELECTOR_PAD_CAST (pad);
|
2012-05-28 17:29:00 +00:00
|
|
|
GST_DEBUG_OBJECT (selpad, "received event %" GST_PTR_FORMAT, event);
|
2008-01-29 07:38:31 +00:00
|
|
|
|
2009-02-11 00:22:54 +00:00
|
|
|
GST_INPUT_SELECTOR_LOCK (sel);
|
2013-05-31 15:39:55 +00:00
|
|
|
prev_active_sinkpad =
|
|
|
|
sel->active_sinkpad ? gst_object_ref (sel->active_sinkpad) : NULL;
|
2014-11-19 12:08:45 +00:00
|
|
|
active_sinkpad = gst_input_selector_get_active_sinkpad (sel);
|
2014-12-23 11:54:50 +00:00
|
|
|
gst_object_ref (active_sinkpad);
|
2010-01-25 11:21:34 +00:00
|
|
|
GST_INPUT_SELECTOR_UNLOCK (sel);
|
2009-02-11 00:22:54 +00:00
|
|
|
|
2013-07-22 16:03:01 +00:00
|
|
|
if (prev_active_sinkpad != active_sinkpad) {
|
2013-05-31 15:39:55 +00:00
|
|
|
if (prev_active_sinkpad)
|
|
|
|
g_object_notify (G_OBJECT (prev_active_sinkpad), "active");
|
|
|
|
g_object_notify (G_OBJECT (active_sinkpad), "active");
|
2009-02-11 00:22:54 +00:00
|
|
|
g_object_notify (G_OBJECT (sel), "active-pad");
|
2010-12-31 11:27:45 +00:00
|
|
|
}
|
2013-05-31 15:39:55 +00:00
|
|
|
if (prev_active_sinkpad)
|
|
|
|
gst_object_unref (prev_active_sinkpad);
|
2014-12-23 11:54:50 +00:00
|
|
|
gst_object_unref (active_sinkpad);
|
2008-02-25 08:53:51 +00:00
|
|
|
|
2012-05-28 17:29:00 +00:00
|
|
|
GST_INPUT_SELECTOR_LOCK (sel);
|
2014-11-19 12:08:45 +00:00
|
|
|
active_sinkpad = gst_input_selector_get_active_sinkpad (sel);
|
2012-05-28 17:29:00 +00:00
|
|
|
|
|
|
|
/* only forward if we are dealing with the active sinkpad */
|
|
|
|
forward = (pad == active_sinkpad);
|
|
|
|
|
2008-01-29 07:38:31 +00:00
|
|
|
switch (GST_EVENT_TYPE (event)) {
|
2013-07-22 12:12:18 +00:00
|
|
|
case GST_EVENT_STREAM_START:{
|
2016-03-16 07:00:15 +00:00
|
|
|
if (!gst_event_parse_group_id (event, &selpad->group_id)) {
|
2013-07-22 12:12:18 +00:00
|
|
|
sel->have_group_id = FALSE;
|
2016-03-16 07:00:15 +00:00
|
|
|
selpad->group_id = 0;
|
|
|
|
}
|
2013-07-22 12:12:18 +00:00
|
|
|
break;
|
|
|
|
}
|
plugins/elements/gstinputselector.*: Figure out the locking a bit more.
Original commit message from CVS:
* plugins/elements/gstinputselector.c:
(gst_selector_pad_get_running_time), (gst_selector_pad_reset),
(gst_selector_pad_event), (gst_selector_pad_bufferalloc),
(gst_input_selector_wait), (gst_selector_pad_chain),
(gst_input_selector_class_init), (gst_input_selector_init),
(gst_input_selector_dispose), (gst_segment_set_start),
(gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_get_linked_pad),
(gst_input_selector_is_active_sinkpad),
(gst_input_selector_activate_sinkpad),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_change_state), (gst_input_selector_block),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Figure out the locking a bit more.
Mark buffers with discont after switching.
Fix initial segment forwarding, make sure to only forward one segment
regardless of what the sequence of buffers/segments is. See #522203.
Improve flushing when blocked.
Return NOT_LINKED when a stream is not selected.
Not API change for the switch signal in the docs.
Fix start/time/accum values of the new segment.
Correctly unlock and flush a blocking selector when going to READY.
2008-03-20 16:48:46 +00:00
|
|
|
case GST_EVENT_FLUSH_START:
|
2011-03-19 07:55:57 +00:00
|
|
|
/* Unblock the pad if it's waiting */
|
|
|
|
selpad->flushing = TRUE;
|
2014-12-24 02:13:51 +00:00
|
|
|
sel->eos = FALSE;
|
2016-03-16 07:00:15 +00:00
|
|
|
selpad->group_done = FALSE;
|
2011-03-19 07:55:57 +00:00
|
|
|
GST_INPUT_SELECTOR_BROADCAST (sel);
|
plugins/elements/gstinputselector.*: Figure out the locking a bit more.
Original commit message from CVS:
* plugins/elements/gstinputselector.c:
(gst_selector_pad_get_running_time), (gst_selector_pad_reset),
(gst_selector_pad_event), (gst_selector_pad_bufferalloc),
(gst_input_selector_wait), (gst_selector_pad_chain),
(gst_input_selector_class_init), (gst_input_selector_init),
(gst_input_selector_dispose), (gst_segment_set_start),
(gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_get_linked_pad),
(gst_input_selector_is_active_sinkpad),
(gst_input_selector_activate_sinkpad),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_change_state), (gst_input_selector_block),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Figure out the locking a bit more.
Mark buffers with discont after switching.
Fix initial segment forwarding, make sure to only forward one segment
regardless of what the sequence of buffers/segments is. See #522203.
Improve flushing when blocked.
Return NOT_LINKED when a stream is not selected.
Not API change for the switch signal in the docs.
Fix start/time/accum values of the new segment.
Correctly unlock and flush a blocking selector when going to READY.
2008-03-20 16:48:46 +00:00
|
|
|
break;
|
2008-01-29 07:38:31 +00:00
|
|
|
case GST_EVENT_FLUSH_STOP:
|
|
|
|
gst_selector_pad_reset (selpad);
|
|
|
|
break;
|
2011-05-13 16:07:24 +00:00
|
|
|
case GST_EVENT_SEGMENT:
|
2008-01-29 07:38:31 +00:00
|
|
|
{
|
2011-05-18 14:56:13 +00:00
|
|
|
gst_event_copy_segment (event, &selpad->segment);
|
2011-05-19 10:11:43 +00:00
|
|
|
selpad->segment_seqnum = gst_event_get_seqnum (event);
|
|
|
|
|
2011-05-13 16:07:24 +00:00
|
|
|
GST_DEBUG_OBJECT (pad, "configured SEGMENT %" GST_SEGMENT_FORMAT,
|
|
|
|
&selpad->segment);
|
2008-01-29 07:38:31 +00:00
|
|
|
break;
|
|
|
|
}
|
plugins/elements/gstinputselector.*: Various cleanups.
Original commit message from CVS:
* plugins/elements/gstinputselector.c: (gst_selector_pad_class_init),
(gst_selector_pad_finalize), (gst_selector_pad_get_property),
(gst_selector_pad_event), (gst_input_selector_class_init),
(gst_input_selector_init), (gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_push_pending_stop),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Various cleanups.
Added tags to the pads.
Select active pad based on the pad object instead of its name.
Fix refcount in set_active_pad.
Add property to get the number of pads.
* plugins/elements/gstoutputselector.c:
(gst_output_selector_class_init),
(gst_output_selector_set_property),
(gst_output_selector_get_property):
Various cleanups.
Select the active pad based on the pad object instead of its name.
Fix locking when setting the active pad.
* plugins/elements/gstselector-marshal.list:
* tests/check/elements/selector.c: (cleanup_pad),
(selector_set_active_pad), (run_input_selector_buffer_count):
Fixes for pad instead of padname for pad selection.
2008-03-13 16:46:04 +00:00
|
|
|
case GST_EVENT_TAG:
|
|
|
|
{
|
2009-03-24 14:23:03 +00:00
|
|
|
GstTagList *tags, *oldtags, *newtags;
|
plugins/elements/gstinputselector.*: Various cleanups.
Original commit message from CVS:
* plugins/elements/gstinputselector.c: (gst_selector_pad_class_init),
(gst_selector_pad_finalize), (gst_selector_pad_get_property),
(gst_selector_pad_event), (gst_input_selector_class_init),
(gst_input_selector_init), (gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_push_pending_stop),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Various cleanups.
Added tags to the pads.
Select active pad based on the pad object instead of its name.
Fix refcount in set_active_pad.
Add property to get the number of pads.
* plugins/elements/gstoutputselector.c:
(gst_output_selector_class_init),
(gst_output_selector_set_property),
(gst_output_selector_get_property):
Various cleanups.
Select the active pad based on the pad object instead of its name.
Fix locking when setting the active pad.
* plugins/elements/gstselector-marshal.list:
* tests/check/elements/selector.c: (cleanup_pad),
(selector_set_active_pad), (run_input_selector_buffer_count):
Fixes for pad instead of padname for pad selection.
2008-03-13 16:46:04 +00:00
|
|
|
|
|
|
|
gst_event_parse_tag (event, &tags);
|
2009-03-24 14:23:03 +00:00
|
|
|
|
2014-04-11 12:38:25 +00:00
|
|
|
GST_OBJECT_LOCK (selpad);
|
2009-03-24 14:23:03 +00:00
|
|
|
oldtags = selpad->tags;
|
|
|
|
|
|
|
|
newtags = gst_tag_list_merge (oldtags, tags, GST_TAG_MERGE_REPLACE);
|
|
|
|
selpad->tags = newtags;
|
2014-04-11 12:38:25 +00:00
|
|
|
GST_OBJECT_UNLOCK (selpad);
|
|
|
|
|
2009-03-24 14:23:03 +00:00
|
|
|
if (oldtags)
|
2012-05-27 23:08:18 +00:00
|
|
|
gst_tag_list_unref (oldtags);
|
2009-03-24 14:23:03 +00:00
|
|
|
GST_DEBUG_OBJECT (pad, "received tags %" GST_PTR_FORMAT, newtags);
|
2009-06-04 06:56:29 +00:00
|
|
|
|
2012-06-21 04:28:43 +00:00
|
|
|
new_tags = TRUE;
|
plugins/elements/gstinputselector.*: Various cleanups.
Original commit message from CVS:
* plugins/elements/gstinputselector.c: (gst_selector_pad_class_init),
(gst_selector_pad_finalize), (gst_selector_pad_get_property),
(gst_selector_pad_event), (gst_input_selector_class_init),
(gst_input_selector_init), (gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_push_pending_stop),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Various cleanups.
Added tags to the pads.
Select active pad based on the pad object instead of its name.
Fix refcount in set_active_pad.
Add property to get the number of pads.
* plugins/elements/gstoutputselector.c:
(gst_output_selector_class_init),
(gst_output_selector_set_property),
(gst_output_selector_get_property):
Various cleanups.
Select the active pad based on the pad object instead of its name.
Fix locking when setting the active pad.
* plugins/elements/gstselector-marshal.list:
* tests/check/elements/selector.c: (cleanup_pad),
(selector_set_active_pad), (run_input_selector_buffer_count):
Fixes for pad instead of padname for pad selection.
2008-03-13 16:46:04 +00:00
|
|
|
break;
|
|
|
|
}
|
2008-01-29 07:38:31 +00:00
|
|
|
case GST_EVENT_EOS:
|
|
|
|
selpad->eos = TRUE;
|
2015-06-12 08:54:32 +00:00
|
|
|
GST_DEBUG_OBJECT (pad, "received EOS");
|
|
|
|
if (gst_input_selector_all_eos (sel)) {
|
|
|
|
GST_DEBUG_OBJECT (pad, "All sink pad received EOS");
|
2014-12-24 12:44:09 +00:00
|
|
|
sel->eos = TRUE;
|
|
|
|
GST_INPUT_SELECTOR_BROADCAST (sel);
|
2015-04-24 19:51:24 +00:00
|
|
|
} else {
|
2015-06-12 08:54:32 +00:00
|
|
|
gst_input_selector_eos_wait (sel, selpad, event);
|
|
|
|
forward = FALSE;
|
2015-04-24 19:51:24 +00:00
|
|
|
}
|
2008-01-29 07:38:31 +00:00
|
|
|
break;
|
2013-11-18 21:11:56 +00:00
|
|
|
case GST_EVENT_GAP:{
|
|
|
|
GstClockTime ts, dur;
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (pad, "Received gap event: %" GST_PTR_FORMAT, event);
|
|
|
|
|
|
|
|
gst_event_parse_gap (event, &ts, &dur);
|
|
|
|
if (GST_CLOCK_TIME_IS_VALID (ts)) {
|
|
|
|
if (GST_CLOCK_TIME_IS_VALID (dur))
|
|
|
|
ts += dur;
|
|
|
|
|
|
|
|
/* update the segment position */
|
|
|
|
GST_OBJECT_LOCK (pad);
|
|
|
|
selpad->segment.position = ts;
|
|
|
|
GST_OBJECT_UNLOCK (pad);
|
|
|
|
if (sel->sync_streams && active_sinkpad == pad)
|
|
|
|
GST_INPUT_SELECTOR_BROADCAST (sel);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
break;
|
2016-03-16 07:00:15 +00:00
|
|
|
case GST_EVENT_STREAM_GROUP_DONE:{
|
|
|
|
GST_DEBUG_OBJECT (sel, "Stream group-done in inputselector pad %s",
|
|
|
|
GST_OBJECT_NAME (selpad));
|
|
|
|
gst_event_parse_stream_group_done (event, &selpad->group_id);
|
|
|
|
selpad->group_done = TRUE;
|
|
|
|
if (sel->sync_streams && active_sinkpad == pad)
|
|
|
|
GST_INPUT_SELECTOR_BROADCAST (sel);
|
|
|
|
break;
|
|
|
|
}
|
2008-01-29 07:38:31 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2012-05-28 17:29:00 +00:00
|
|
|
GST_INPUT_SELECTOR_UNLOCK (sel);
|
2012-06-21 04:28:43 +00:00
|
|
|
if (new_tags)
|
|
|
|
g_object_notify (G_OBJECT (selpad), "tags");
|
2015-07-02 14:10:43 +00:00
|
|
|
if (forward) {
|
|
|
|
GST_DEBUG_OBJECT (pad, "forwarding event");
|
|
|
|
res = gst_pad_push_event (sel->srcpad, event);
|
|
|
|
} else {
|
|
|
|
/* If we aren't forwarding the event because the pad is not the
|
|
|
|
* active_sinkpad, then set the flag on the pad
|
|
|
|
* that says a segment needs sending if/when that pad is activated.
|
|
|
|
* For all other cases, we send the event immediately, which makes
|
|
|
|
* sparse streams and other segment updates work correctly downstream.
|
|
|
|
*/
|
|
|
|
if (GST_EVENT_IS_STICKY (event))
|
|
|
|
selpad->events_pending = TRUE;
|
|
|
|
gst_event_unref (event);
|
2012-04-16 08:22:53 +00:00
|
|
|
}
|
2008-01-29 07:38:31 +00:00
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2011-11-09 10:22:36 +00:00
|
|
|
static gboolean
|
2011-11-16 16:22:56 +00:00
|
|
|
gst_selector_pad_query (GstPad * pad, GstObject * parent, GstQuery * query)
|
2011-11-09 10:22:36 +00:00
|
|
|
{
|
|
|
|
gboolean res = FALSE;
|
2014-08-14 21:53:40 +00:00
|
|
|
GstInputSelector *self = (GstInputSelector *) parent;
|
2011-11-09 10:22:36 +00:00
|
|
|
|
|
|
|
switch (GST_QUERY_TYPE (query)) {
|
2014-08-14 21:53:40 +00:00
|
|
|
case GST_QUERY_CAPS:
|
2017-03-06 23:21:48 +00:00
|
|
|
case GST_QUERY_POSITION:
|
|
|
|
case GST_QUERY_DURATION:
|
|
|
|
/* always proxy caps/position/duration query, regardless of active pad or not
|
|
|
|
* See https://bugzilla.gnome.org/show_bug.cgi?id=775445 */
|
2014-08-14 21:53:40 +00:00
|
|
|
res = gst_pad_peer_query (self->srcpad, query);
|
|
|
|
break;
|
2012-06-19 09:32:10 +00:00
|
|
|
case GST_QUERY_ALLOCATION:{
|
|
|
|
GstPad *active_sinkpad;
|
|
|
|
GstInputSelector *sel = GST_INPUT_SELECTOR (parent);
|
|
|
|
|
|
|
|
/* Only do the allocation query for the active sinkpad,
|
|
|
|
* after switching a reconfigure event is sent and upstream
|
|
|
|
* should reconfigure and do a new allocation query
|
|
|
|
*/
|
|
|
|
if (GST_PAD_DIRECTION (pad) == GST_PAD_SINK) {
|
|
|
|
GST_INPUT_SELECTOR_LOCK (sel);
|
2014-11-19 12:08:45 +00:00
|
|
|
active_sinkpad = gst_input_selector_get_active_sinkpad (sel);
|
2012-06-19 09:32:10 +00:00
|
|
|
GST_INPUT_SELECTOR_UNLOCK (sel);
|
|
|
|
|
|
|
|
if (pad != active_sinkpad) {
|
|
|
|
res = FALSE;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* fall through */
|
2011-11-09 10:22:36 +00:00
|
|
|
default:
|
2011-11-16 16:22:56 +00:00
|
|
|
res = gst_pad_query_default (pad, parent, query);
|
2011-11-09 10:22:36 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2012-06-19 09:32:10 +00:00
|
|
|
done:
|
2011-11-09 10:22:36 +00:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2014-10-03 12:44:48 +00:00
|
|
|
static GstClockTime
|
2014-10-03 13:04:58 +00:00
|
|
|
gst_input_selector_get_clipped_running_time (GstSegment * seg, GstBuffer * buf)
|
2014-10-03 12:44:48 +00:00
|
|
|
{
|
2014-10-03 13:04:58 +00:00
|
|
|
GstClockTime running_time;
|
2014-10-03 12:44:48 +00:00
|
|
|
|
|
|
|
running_time = GST_BUFFER_PTS (buf);
|
|
|
|
/* If possible try to get the running time at the end of the buffer */
|
|
|
|
if (GST_BUFFER_DURATION_IS_VALID (buf))
|
|
|
|
running_time += GST_BUFFER_DURATION (buf);
|
|
|
|
/* Only use the segment to convert to running time if the segment is
|
|
|
|
* in TIME format, otherwise do our best to try to sync */
|
|
|
|
if (GST_CLOCK_TIME_IS_VALID (seg->stop)) {
|
|
|
|
if (running_time > seg->stop) {
|
|
|
|
running_time = seg->stop;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return gst_segment_to_running_time (seg, GST_FORMAT_TIME, running_time);
|
|
|
|
}
|
|
|
|
|
2012-05-28 17:29:00 +00:00
|
|
|
/* must be called without the SELECTOR_LOCK, will wait until the running time
|
2011-03-19 09:28:49 +00:00
|
|
|
* of the active pad is after this pad or return TRUE when flushing */
|
|
|
|
static gboolean
|
|
|
|
gst_input_selector_wait_running_time (GstInputSelector * sel,
|
2012-05-28 17:29:00 +00:00
|
|
|
GstSelectorPad * selpad, GstBuffer * buf)
|
2011-03-19 09:28:49 +00:00
|
|
|
{
|
2012-05-28 17:29:00 +00:00
|
|
|
GstSegment *seg;
|
2011-03-19 09:28:49 +00:00
|
|
|
|
2012-05-28 17:29:00 +00:00
|
|
|
GST_DEBUG_OBJECT (selpad, "entering wait for buffer %p", buf);
|
2011-03-19 09:28:49 +00:00
|
|
|
|
2012-05-28 17:29:00 +00:00
|
|
|
/* If we have no valid timestamp we can't sync this buffer */
|
2014-10-03 12:01:59 +00:00
|
|
|
if (!GST_BUFFER_PTS_IS_VALID (buf)) {
|
2012-05-28 17:29:00 +00:00
|
|
|
GST_DEBUG_OBJECT (selpad, "leaving wait for buffer with "
|
|
|
|
"invalid timestamp");
|
2011-03-19 09:28:49 +00:00
|
|
|
return FALSE;
|
2012-05-28 17:29:00 +00:00
|
|
|
}
|
2011-03-19 09:28:49 +00:00
|
|
|
|
2012-05-28 17:29:00 +00:00
|
|
|
seg = &selpad->segment;
|
2011-03-19 09:28:49 +00:00
|
|
|
|
|
|
|
/* Wait until
|
|
|
|
* a) this is the active pad
|
|
|
|
* b) the pad or the selector is flushing
|
2015-03-23 12:20:34 +00:00
|
|
|
* c) the buffer running time is before the current running time
|
2012-05-28 17:29:00 +00:00
|
|
|
* (either active-seg or clock, depending on sync-mode)
|
2011-03-19 09:28:49 +00:00
|
|
|
*/
|
2012-05-28 17:29:00 +00:00
|
|
|
|
|
|
|
GST_INPUT_SELECTOR_LOCK (sel);
|
|
|
|
while (TRUE) {
|
|
|
|
GstPad *active_sinkpad;
|
|
|
|
GstSelectorPad *active_selpad;
|
|
|
|
GstClock *clock;
|
|
|
|
gint64 cur_running_time;
|
|
|
|
GstClockTime running_time;
|
|
|
|
|
2014-11-19 12:08:45 +00:00
|
|
|
active_sinkpad = gst_input_selector_get_active_sinkpad (sel);
|
2011-03-19 09:28:49 +00:00
|
|
|
active_selpad = GST_SELECTOR_PAD_CAST (active_sinkpad);
|
|
|
|
|
2012-05-31 15:45:29 +00:00
|
|
|
if (seg->format != GST_FORMAT_TIME) {
|
2012-08-14 16:43:54 +00:00
|
|
|
GST_DEBUG_OBJECT (selpad,
|
|
|
|
"Not waiting because we don't have a TIME segment");
|
2012-05-31 15:45:29 +00:00
|
|
|
GST_INPUT_SELECTOR_UNLOCK (sel);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2014-10-03 12:44:48 +00:00
|
|
|
running_time = gst_input_selector_get_clipped_running_time (seg, buf);
|
2012-06-01 14:34:16 +00:00
|
|
|
/* If this is outside the segment don't sync */
|
|
|
|
if (running_time == -1) {
|
2012-08-14 16:43:54 +00:00
|
|
|
GST_DEBUG_OBJECT (selpad,
|
|
|
|
"Not waiting because buffer is outside segment");
|
2012-06-01 14:34:16 +00:00
|
|
|
GST_INPUT_SELECTOR_UNLOCK (sel);
|
|
|
|
return FALSE;
|
2012-05-28 17:29:00 +00:00
|
|
|
}
|
2011-03-19 09:28:49 +00:00
|
|
|
|
2012-05-28 17:29:00 +00:00
|
|
|
cur_running_time = GST_CLOCK_TIME_NONE;
|
|
|
|
if (sel->sync_mode == GST_INPUT_SELECTOR_SYNC_MODE_CLOCK) {
|
|
|
|
clock = gst_element_get_clock (GST_ELEMENT_CAST (sel));
|
|
|
|
if (clock) {
|
|
|
|
GstClockTime base_time;
|
|
|
|
|
|
|
|
cur_running_time = gst_clock_get_time (clock);
|
|
|
|
base_time = gst_element_get_base_time (GST_ELEMENT_CAST (sel));
|
|
|
|
if (base_time <= cur_running_time)
|
|
|
|
cur_running_time -= base_time;
|
|
|
|
else
|
|
|
|
cur_running_time = 0;
|
2012-11-13 20:13:00 +00:00
|
|
|
|
|
|
|
gst_object_unref (clock);
|
2012-05-28 17:29:00 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
GstSegment *active_seg;
|
|
|
|
|
|
|
|
active_seg = &active_selpad->segment;
|
2011-03-19 09:28:49 +00:00
|
|
|
|
2012-05-31 15:45:29 +00:00
|
|
|
/* If the active segment is configured but not to time format
|
|
|
|
* we can't do any syncing at all */
|
2015-06-12 08:54:32 +00:00
|
|
|
if ((active_seg->format != GST_FORMAT_TIME
|
|
|
|
&& active_seg->format != GST_FORMAT_UNDEFINED)) {
|
2012-08-14 16:43:54 +00:00
|
|
|
GST_DEBUG_OBJECT (selpad,
|
|
|
|
"Not waiting because active segment isn't in TIME format");
|
2012-05-31 15:45:29 +00:00
|
|
|
GST_INPUT_SELECTOR_UNLOCK (sel);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2012-05-28 17:29:00 +00:00
|
|
|
/* Get active pad's running time, if no configured segment yet keep at -1 */
|
|
|
|
if (active_seg->format == GST_FORMAT_TIME)
|
|
|
|
cur_running_time = gst_segment_to_running_time (active_seg,
|
|
|
|
GST_FORMAT_TIME, active_seg->position);
|
|
|
|
}
|
2011-03-19 09:28:49 +00:00
|
|
|
|
2016-03-16 07:00:15 +00:00
|
|
|
/* Don't wait if the group is finished on the active pad,
|
|
|
|
* as the running time won't progress now */
|
|
|
|
if (selpad != active_selpad && active_selpad->group_done &&
|
|
|
|
selpad->group_id == active_selpad->group_id) {
|
|
|
|
GST_DEBUG_OBJECT (selpad, "Active pad received group-done. Unblocking");
|
|
|
|
GST_INPUT_SELECTOR_UNLOCK (sel);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2014-12-24 12:44:09 +00:00
|
|
|
if (selpad != active_selpad && !sel->eos && !sel->flushing
|
2015-03-23 12:20:34 +00:00
|
|
|
&& !selpad->flushing && (cur_running_time == GST_CLOCK_TIME_NONE
|
2012-05-28 17:29:00 +00:00
|
|
|
|| running_time >= cur_running_time)) {
|
2015-03-23 12:20:34 +00:00
|
|
|
GST_DEBUG_OBJECT (selpad,
|
|
|
|
"Waiting for active streams to advance. %" GST_TIME_FORMAT " >= %"
|
|
|
|
GST_TIME_FORMAT, GST_TIME_ARGS (running_time),
|
|
|
|
GST_TIME_ARGS (cur_running_time));
|
2012-05-28 17:29:00 +00:00
|
|
|
GST_INPUT_SELECTOR_WAIT (sel);
|
|
|
|
} else {
|
|
|
|
GST_INPUT_SELECTOR_UNLOCK (sel);
|
|
|
|
break;
|
|
|
|
}
|
2011-03-19 09:28:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Return TRUE if the selector or the pad is flushing */
|
2012-05-28 17:29:00 +00:00
|
|
|
return (sel->flushing || selpad->flushing);
|
2011-03-19 09:28:49 +00:00
|
|
|
}
|
|
|
|
|
2012-05-28 17:29:00 +00:00
|
|
|
#if DEBUG_CACHED_BUFFERS
|
|
|
|
static void
|
|
|
|
gst_input_selector_debug_cached_buffers (GstInputSelector * sel)
|
|
|
|
{
|
|
|
|
GList *walk;
|
|
|
|
|
2014-12-31 18:52:34 +00:00
|
|
|
if (gst_debug_category_get_threshold (input_selector_debug) < GST_LEVEL_DEBUG)
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (walk = GST_ELEMENT_CAST (sel)->sinkpads; walk; walk = walk->next) {
|
2012-05-28 17:29:00 +00:00
|
|
|
GstSelectorPad *selpad;
|
|
|
|
GString *timestamps;
|
2014-12-31 18:52:34 +00:00
|
|
|
GList *l;
|
2012-05-28 17:29:00 +00:00
|
|
|
|
|
|
|
selpad = GST_SELECTOR_PAD_CAST (walk->data);
|
|
|
|
if (!selpad->cached_buffers) {
|
|
|
|
GST_DEBUG_OBJECT (selpad, "Cached buffers timestamps: <none>");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
timestamps = g_string_new ("Cached buffers timestamps:");
|
2014-12-31 18:52:34 +00:00
|
|
|
for (l = selpad->cached_buffers->head; l != NULL; l = l->next) {
|
|
|
|
GstSelectorPadCachedBuffer *cached_buffer = l->data;
|
2012-05-28 17:29:00 +00:00
|
|
|
|
|
|
|
g_string_append_printf (timestamps, " %" GST_TIME_FORMAT,
|
2014-10-03 12:01:59 +00:00
|
|
|
GST_TIME_ARGS (GST_BUFFER_PTS (cached_buffer->buffer)));
|
2012-05-28 17:29:00 +00:00
|
|
|
}
|
2014-12-31 18:52:34 +00:00
|
|
|
GST_DEBUG_OBJECT (selpad, "%s", timestamps->str);
|
|
|
|
g_string_free (timestamps, TRUE);
|
2012-05-28 17:29:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* must be called with the SELECTOR_LOCK */
|
|
|
|
static void
|
|
|
|
gst_input_selector_cleanup_old_cached_buffers (GstInputSelector * sel,
|
|
|
|
GstPad * pad)
|
|
|
|
{
|
|
|
|
GstClock *clock;
|
|
|
|
gint64 cur_running_time;
|
|
|
|
GList *walk;
|
|
|
|
|
|
|
|
cur_running_time = GST_CLOCK_TIME_NONE;
|
|
|
|
if (sel->sync_mode == GST_INPUT_SELECTOR_SYNC_MODE_CLOCK) {
|
|
|
|
clock = gst_element_get_clock (GST_ELEMENT_CAST (sel));
|
|
|
|
if (clock) {
|
|
|
|
GstClockTime base_time;
|
|
|
|
|
|
|
|
cur_running_time = gst_clock_get_time (clock);
|
|
|
|
base_time = gst_element_get_base_time (GST_ELEMENT_CAST (sel));
|
|
|
|
if (base_time <= cur_running_time)
|
|
|
|
cur_running_time -= base_time;
|
|
|
|
else
|
|
|
|
cur_running_time = 0;
|
2012-08-30 18:47:57 +00:00
|
|
|
|
|
|
|
gst_object_unref (clock);
|
2012-05-28 17:29:00 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
GstPad *active_sinkpad;
|
|
|
|
GstSelectorPad *active_selpad;
|
|
|
|
GstSegment *active_seg;
|
|
|
|
|
2014-11-19 12:08:45 +00:00
|
|
|
active_sinkpad = gst_input_selector_get_active_sinkpad (sel);
|
2012-05-28 17:29:00 +00:00
|
|
|
active_selpad = GST_SELECTOR_PAD_CAST (active_sinkpad);
|
|
|
|
active_seg = &active_selpad->segment;
|
|
|
|
|
|
|
|
/* Get active pad's running time, if no configured segment yet keep at -1 */
|
|
|
|
if (active_seg->format == GST_FORMAT_TIME)
|
|
|
|
cur_running_time = gst_segment_to_running_time (active_seg,
|
|
|
|
GST_FORMAT_TIME, active_seg->position);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!GST_CLOCK_TIME_IS_VALID (cur_running_time))
|
|
|
|
return;
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (sel, "Cleaning up old cached buffers");
|
|
|
|
for (walk = GST_ELEMENT_CAST (sel)->sinkpads; walk; walk = g_list_next (walk)) {
|
2012-06-01 14:34:16 +00:00
|
|
|
GstSelectorPad *selpad;
|
|
|
|
GstSegment *seg;
|
2012-05-28 17:29:00 +00:00
|
|
|
GstSelectorPadCachedBuffer *cached_buffer;
|
|
|
|
GSList *maybe_remove;
|
|
|
|
guint queue_position;
|
|
|
|
|
2012-06-01 14:34:16 +00:00
|
|
|
selpad = GST_SELECTOR_PAD_CAST (walk->data);
|
2012-05-28 17:29:00 +00:00
|
|
|
if (!selpad->cached_buffers)
|
|
|
|
continue;
|
|
|
|
|
2012-06-01 14:34:16 +00:00
|
|
|
seg = &selpad->segment;
|
|
|
|
|
2012-05-28 17:29:00 +00:00
|
|
|
maybe_remove = NULL;
|
|
|
|
queue_position = 0;
|
|
|
|
while ((cached_buffer = g_queue_peek_nth (selpad->cached_buffers,
|
|
|
|
queue_position))) {
|
|
|
|
GstBuffer *buffer = cached_buffer->buffer;
|
|
|
|
GstClockTime running_time;
|
|
|
|
GSList *l;
|
|
|
|
|
|
|
|
/* If we have no valid timestamp we can't sync this buffer */
|
2014-10-03 12:01:59 +00:00
|
|
|
if (!GST_BUFFER_PTS_IS_VALID (buffer)) {
|
2012-05-28 17:29:00 +00:00
|
|
|
maybe_remove = g_slist_append (maybe_remove, cached_buffer);
|
|
|
|
queue_position = g_slist_length (maybe_remove);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* the buffer is still valid if its duration is valid and the
|
|
|
|
* timestamp + duration is >= time, or if its duration is invalid
|
|
|
|
* and the timestamp is >= time */
|
2014-10-03 13:04:58 +00:00
|
|
|
running_time = gst_input_selector_get_clipped_running_time (seg, buffer);
|
2012-05-28 17:29:00 +00:00
|
|
|
GST_DEBUG_OBJECT (selpad,
|
|
|
|
"checking if buffer %p running time=%" GST_TIME_FORMAT
|
|
|
|
" >= stream time=%" GST_TIME_FORMAT, buffer,
|
|
|
|
GST_TIME_ARGS (running_time), GST_TIME_ARGS (cur_running_time));
|
|
|
|
if (running_time >= cur_running_time) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (selpad, "Removing old cached buffer %p", buffer);
|
|
|
|
g_queue_pop_nth (selpad->cached_buffers, queue_position);
|
|
|
|
gst_selector_pad_free_cached_buffer (cached_buffer);
|
|
|
|
|
|
|
|
for (l = maybe_remove; l != NULL; l = g_slist_next (l)) {
|
|
|
|
/* A buffer after some invalid buffers was removed, it means the invalid buffers
|
|
|
|
* are old, lets also remove them */
|
|
|
|
cached_buffer = l->data;
|
|
|
|
g_queue_remove (selpad->cached_buffers, cached_buffer);
|
|
|
|
gst_selector_pad_free_cached_buffer (cached_buffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_slist_free (maybe_remove);
|
|
|
|
maybe_remove = NULL;
|
|
|
|
queue_position = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_slist_free (maybe_remove);
|
|
|
|
maybe_remove = NULL;
|
|
|
|
|
|
|
|
if (g_queue_is_empty (selpad->cached_buffers)) {
|
|
|
|
g_queue_free (selpad->cached_buffers);
|
|
|
|
selpad->cached_buffers = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#if DEBUG_CACHED_BUFFERS
|
|
|
|
gst_input_selector_debug_cached_buffers (sel);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2008-01-29 07:38:31 +00:00
|
|
|
static GstFlowReturn
|
2011-11-17 11:40:45 +00:00
|
|
|
gst_selector_pad_chain (GstPad * pad, GstObject * parent, GstBuffer * buf)
|
2008-01-29 07:38:31 +00:00
|
|
|
{
|
|
|
|
GstInputSelector *sel;
|
|
|
|
GstFlowReturn res;
|
|
|
|
GstPad *active_sinkpad;
|
2013-05-31 15:39:55 +00:00
|
|
|
GstPad *prev_active_sinkpad = NULL;
|
2008-01-29 07:38:31 +00:00
|
|
|
GstSelectorPad *selpad;
|
|
|
|
|
2011-11-17 11:40:45 +00:00
|
|
|
sel = GST_INPUT_SELECTOR (parent);
|
2008-01-29 07:38:31 +00:00
|
|
|
selpad = GST_SELECTOR_PAD_CAST (pad);
|
|
|
|
|
2012-05-28 17:29:00 +00:00
|
|
|
GST_DEBUG_OBJECT (selpad,
|
|
|
|
"entering chain for buf %p with timestamp %" GST_TIME_FORMAT, buf,
|
2014-10-03 12:01:59 +00:00
|
|
|
GST_TIME_ARGS (GST_BUFFER_PTS (buf)));
|
2012-05-28 17:29:00 +00:00
|
|
|
|
plugins/elements/gstinputselector.*: Figure out the locking a bit more.
Original commit message from CVS:
* plugins/elements/gstinputselector.c:
(gst_selector_pad_get_running_time), (gst_selector_pad_reset),
(gst_selector_pad_event), (gst_selector_pad_bufferalloc),
(gst_input_selector_wait), (gst_selector_pad_chain),
(gst_input_selector_class_init), (gst_input_selector_init),
(gst_input_selector_dispose), (gst_segment_set_start),
(gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_get_linked_pad),
(gst_input_selector_is_active_sinkpad),
(gst_input_selector_activate_sinkpad),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_change_state), (gst_input_selector_block),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Figure out the locking a bit more.
Mark buffers with discont after switching.
Fix initial segment forwarding, make sure to only forward one segment
regardless of what the sequence of buffers/segments is. See #522203.
Improve flushing when blocked.
Return NOT_LINKED when a stream is not selected.
Not API change for the switch signal in the docs.
Fix start/time/accum values of the new segment.
Correctly unlock and flush a blocking selector when going to READY.
2008-03-20 16:48:46 +00:00
|
|
|
GST_INPUT_SELECTOR_LOCK (sel);
|
2015-03-23 12:20:34 +00:00
|
|
|
|
|
|
|
if (sel->flushing) {
|
2012-05-28 17:29:00 +00:00
|
|
|
GST_INPUT_SELECTOR_UNLOCK (sel);
|
plugins/elements/gstinputselector.*: Figure out the locking a bit more.
Original commit message from CVS:
* plugins/elements/gstinputselector.c:
(gst_selector_pad_get_running_time), (gst_selector_pad_reset),
(gst_selector_pad_event), (gst_selector_pad_bufferalloc),
(gst_input_selector_wait), (gst_selector_pad_chain),
(gst_input_selector_class_init), (gst_input_selector_init),
(gst_input_selector_dispose), (gst_segment_set_start),
(gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_get_linked_pad),
(gst_input_selector_is_active_sinkpad),
(gst_input_selector_activate_sinkpad),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_change_state), (gst_input_selector_block),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Figure out the locking a bit more.
Mark buffers with discont after switching.
Fix initial segment forwarding, make sure to only forward one segment
regardless of what the sequence of buffers/segments is. See #522203.
Improve flushing when blocked.
Return NOT_LINKED when a stream is not selected.
Not API change for the switch signal in the docs.
Fix start/time/accum values of the new segment.
Correctly unlock and flush a blocking selector when going to READY.
2008-03-20 16:48:46 +00:00
|
|
|
goto flushing;
|
2012-05-28 17:29:00 +00:00
|
|
|
}
|
2008-01-29 07:38:31 +00:00
|
|
|
|
2010-11-01 20:40:36 +00:00
|
|
|
GST_LOG_OBJECT (pad, "getting active pad");
|
2008-03-14 17:22:21 +00:00
|
|
|
|
2013-05-31 15:39:55 +00:00
|
|
|
prev_active_sinkpad =
|
|
|
|
sel->active_sinkpad ? gst_object_ref (sel->active_sinkpad) : NULL;
|
2014-11-19 12:08:45 +00:00
|
|
|
active_sinkpad = gst_input_selector_get_active_sinkpad (sel);
|
2008-01-29 07:38:31 +00:00
|
|
|
|
2011-03-19 09:28:49 +00:00
|
|
|
/* In sync mode wait until the active pad has advanced
|
|
|
|
* after the running time of the current buffer */
|
2012-05-28 17:29:00 +00:00
|
|
|
if (sel->sync_streams) {
|
|
|
|
/* call chain for each cached buffer if we are not the active pad
|
|
|
|
* or if we are the active pad but didn't push anything yet. */
|
|
|
|
if (active_sinkpad != pad || !selpad->pushed) {
|
|
|
|
/* no need to check for sel->cache_buffers as selpad->cached_buffers
|
|
|
|
* will only be valid if cache_buffers is TRUE */
|
|
|
|
if (selpad->cached_buffers && !selpad->sending_cached_buffers) {
|
|
|
|
GstSelectorPadCachedBuffer *cached_buffer;
|
|
|
|
GstSegment saved_segment;
|
|
|
|
|
|
|
|
saved_segment = selpad->segment;
|
|
|
|
|
|
|
|
selpad->sending_cached_buffers = TRUE;
|
2014-12-24 12:44:09 +00:00
|
|
|
while (!sel->eos && !sel->flushing && !selpad->flushing &&
|
2012-05-28 17:29:00 +00:00
|
|
|
(cached_buffer = g_queue_pop_head (selpad->cached_buffers))) {
|
|
|
|
GST_DEBUG_OBJECT (pad, "Cached buffers found, "
|
|
|
|
"invoking chain for cached buffer %p", cached_buffer->buffer);
|
|
|
|
|
|
|
|
selpad->segment = cached_buffer->segment;
|
|
|
|
selpad->events_pending = TRUE;
|
|
|
|
GST_INPUT_SELECTOR_UNLOCK (sel);
|
|
|
|
gst_selector_pad_chain (pad, parent, cached_buffer->buffer);
|
|
|
|
GST_INPUT_SELECTOR_LOCK (sel);
|
|
|
|
|
2015-04-10 10:32:27 +00:00
|
|
|
/* We just passed the ownership of the buffer to the chain function */
|
|
|
|
cached_buffer->buffer = NULL;
|
|
|
|
gst_selector_pad_free_cached_buffer (cached_buffer);
|
|
|
|
|
2012-05-28 17:29:00 +00:00
|
|
|
/* we may have cleaned up the queue in the meantime because of
|
|
|
|
* old buffers */
|
|
|
|
if (!selpad->cached_buffers) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
selpad->sending_cached_buffers = FALSE;
|
2011-03-19 09:28:49 +00:00
|
|
|
|
2012-05-28 17:29:00 +00:00
|
|
|
/* all cached buffers sent, restore segment for current buffer */
|
|
|
|
selpad->segment = saved_segment;
|
|
|
|
selpad->events_pending = TRUE;
|
|
|
|
|
|
|
|
/* Might have changed while calling chain for cached buffers */
|
2014-11-19 12:08:45 +00:00
|
|
|
active_sinkpad = gst_input_selector_get_active_sinkpad (sel);
|
2012-05-28 17:29:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (active_sinkpad != pad) {
|
|
|
|
GST_INPUT_SELECTOR_UNLOCK (sel);
|
|
|
|
if (gst_input_selector_wait_running_time (sel, selpad, buf))
|
|
|
|
goto flushing;
|
|
|
|
GST_INPUT_SELECTOR_LOCK (sel);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Might have changed while waiting */
|
2014-11-19 12:08:45 +00:00
|
|
|
active_sinkpad = gst_input_selector_get_active_sinkpad (sel);
|
2012-05-28 17:29:00 +00:00
|
|
|
}
|
2011-03-19 09:28:49 +00:00
|
|
|
|
plugins/elements/gstinputselector.*: Figure out the locking a bit more.
Original commit message from CVS:
* plugins/elements/gstinputselector.c:
(gst_selector_pad_get_running_time), (gst_selector_pad_reset),
(gst_selector_pad_event), (gst_selector_pad_bufferalloc),
(gst_input_selector_wait), (gst_selector_pad_chain),
(gst_input_selector_class_init), (gst_input_selector_init),
(gst_input_selector_dispose), (gst_segment_set_start),
(gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_get_linked_pad),
(gst_input_selector_is_active_sinkpad),
(gst_input_selector_activate_sinkpad),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_change_state), (gst_input_selector_block),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Figure out the locking a bit more.
Mark buffers with discont after switching.
Fix initial segment forwarding, make sure to only forward one segment
regardless of what the sequence of buffers/segments is. See #522203.
Improve flushing when blocked.
Return NOT_LINKED when a stream is not selected.
Not API change for the switch signal in the docs.
Fix start/time/accum values of the new segment.
Correctly unlock and flush a blocking selector when going to READY.
2008-03-20 16:48:46 +00:00
|
|
|
/* update the segment on the srcpad */
|
2014-10-03 12:01:59 +00:00
|
|
|
if (GST_BUFFER_PTS_IS_VALID (buf)) {
|
|
|
|
GstClockTime start_time = GST_BUFFER_PTS (buf);
|
|
|
|
|
2010-11-01 20:40:36 +00:00
|
|
|
GST_LOG_OBJECT (pad, "received start time %" GST_TIME_FORMAT,
|
2009-11-09 10:48:00 +00:00
|
|
|
GST_TIME_ARGS (start_time));
|
2009-11-09 10:49:15 +00:00
|
|
|
if (GST_BUFFER_DURATION_IS_VALID (buf))
|
2010-11-01 20:40:36 +00:00
|
|
|
GST_LOG_OBJECT (pad, "received end time %" GST_TIME_FORMAT,
|
2009-11-09 10:49:15 +00:00
|
|
|
GST_TIME_ARGS (start_time + GST_BUFFER_DURATION (buf)));
|
plugins/elements/gstinputselector.*: Figure out the locking a bit more.
Original commit message from CVS:
* plugins/elements/gstinputselector.c:
(gst_selector_pad_get_running_time), (gst_selector_pad_reset),
(gst_selector_pad_event), (gst_selector_pad_bufferalloc),
(gst_input_selector_wait), (gst_selector_pad_chain),
(gst_input_selector_class_init), (gst_input_selector_init),
(gst_input_selector_dispose), (gst_segment_set_start),
(gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_get_linked_pad),
(gst_input_selector_is_active_sinkpad),
(gst_input_selector_activate_sinkpad),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_change_state), (gst_input_selector_block),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Figure out the locking a bit more.
Mark buffers with discont after switching.
Fix initial segment forwarding, make sure to only forward one segment
regardless of what the sequence of buffers/segments is. See #522203.
Improve flushing when blocked.
Return NOT_LINKED when a stream is not selected.
Not API change for the switch signal in the docs.
Fix start/time/accum values of the new segment.
Correctly unlock and flush a blocking selector when going to READY.
2008-03-20 16:48:46 +00:00
|
|
|
|
|
|
|
GST_OBJECT_LOCK (pad);
|
2012-04-16 08:22:53 +00:00
|
|
|
selpad->segment.position = start_time;
|
plugins/elements/gstinputselector.*: Figure out the locking a bit more.
Original commit message from CVS:
* plugins/elements/gstinputselector.c:
(gst_selector_pad_get_running_time), (gst_selector_pad_reset),
(gst_selector_pad_event), (gst_selector_pad_bufferalloc),
(gst_input_selector_wait), (gst_selector_pad_chain),
(gst_input_selector_class_init), (gst_input_selector_init),
(gst_input_selector_dispose), (gst_segment_set_start),
(gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_get_linked_pad),
(gst_input_selector_is_active_sinkpad),
(gst_input_selector_activate_sinkpad),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_change_state), (gst_input_selector_block),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Figure out the locking a bit more.
Mark buffers with discont after switching.
Fix initial segment forwarding, make sure to only forward one segment
regardless of what the sequence of buffers/segments is. See #522203.
Improve flushing when blocked.
Return NOT_LINKED when a stream is not selected.
Not API change for the switch signal in the docs.
Fix start/time/accum values of the new segment.
Correctly unlock and flush a blocking selector when going to READY.
2008-03-20 16:48:46 +00:00
|
|
|
GST_OBJECT_UNLOCK (pad);
|
2008-01-29 07:38:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Ignore buffers from pads except the selected one */
|
2008-08-05 09:05:35 +00:00
|
|
|
if (pad != active_sinkpad)
|
2008-01-29 07:38:31 +00:00
|
|
|
goto ignore;
|
|
|
|
|
2011-03-19 09:28:49 +00:00
|
|
|
/* Tell all non-active pads that we advanced the running time */
|
|
|
|
if (sel->sync_streams)
|
|
|
|
GST_INPUT_SELECTOR_BROADCAST (sel);
|
|
|
|
|
2010-01-25 11:21:34 +00:00
|
|
|
GST_INPUT_SELECTOR_UNLOCK (sel);
|
plugins/elements/gstinputselector.*: Figure out the locking a bit more.
Original commit message from CVS:
* plugins/elements/gstinputselector.c:
(gst_selector_pad_get_running_time), (gst_selector_pad_reset),
(gst_selector_pad_event), (gst_selector_pad_bufferalloc),
(gst_input_selector_wait), (gst_selector_pad_chain),
(gst_input_selector_class_init), (gst_input_selector_init),
(gst_input_selector_dispose), (gst_segment_set_start),
(gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_get_linked_pad),
(gst_input_selector_is_active_sinkpad),
(gst_input_selector_activate_sinkpad),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_change_state), (gst_input_selector_block),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Figure out the locking a bit more.
Mark buffers with discont after switching.
Fix initial segment forwarding, make sure to only forward one segment
regardless of what the sequence of buffers/segments is. See #522203.
Improve flushing when blocked.
Return NOT_LINKED when a stream is not selected.
Not API change for the switch signal in the docs.
Fix start/time/accum values of the new segment.
Correctly unlock and flush a blocking selector when going to READY.
2008-03-20 16:48:46 +00:00
|
|
|
|
2013-07-22 16:03:01 +00:00
|
|
|
if (prev_active_sinkpad != active_sinkpad) {
|
2013-05-31 15:39:55 +00:00
|
|
|
if (prev_active_sinkpad)
|
|
|
|
g_object_notify (G_OBJECT (prev_active_sinkpad), "active");
|
|
|
|
g_object_notify (G_OBJECT (active_sinkpad), "active");
|
2008-12-04 17:51:37 +00:00
|
|
|
g_object_notify (G_OBJECT (sel), "active-pad");
|
2010-12-31 11:27:45 +00:00
|
|
|
}
|
2008-12-04 17:51:37 +00:00
|
|
|
|
2012-04-16 08:22:53 +00:00
|
|
|
/* if we have a pending events, push them now */
|
|
|
|
if (G_UNLIKELY (prev_active_sinkpad != active_sinkpad
|
|
|
|
|| selpad->events_pending)) {
|
|
|
|
gst_pad_sticky_events_foreach (GST_PAD_CAST (selpad), forward_sticky_events,
|
|
|
|
sel);
|
|
|
|
selpad->events_pending = FALSE;
|
|
|
|
}
|
plugins/elements/gstinputselector.*: Figure out the locking a bit more.
Original commit message from CVS:
* plugins/elements/gstinputselector.c:
(gst_selector_pad_get_running_time), (gst_selector_pad_reset),
(gst_selector_pad_event), (gst_selector_pad_bufferalloc),
(gst_input_selector_wait), (gst_selector_pad_chain),
(gst_input_selector_class_init), (gst_input_selector_init),
(gst_input_selector_dispose), (gst_segment_set_start),
(gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_get_linked_pad),
(gst_input_selector_is_active_sinkpad),
(gst_input_selector_activate_sinkpad),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_change_state), (gst_input_selector_block),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Figure out the locking a bit more.
Mark buffers with discont after switching.
Fix initial segment forwarding, make sure to only forward one segment
regardless of what the sequence of buffers/segments is. See #522203.
Improve flushing when blocked.
Return NOT_LINKED when a stream is not selected.
Not API change for the switch signal in the docs.
Fix start/time/accum values of the new segment.
Correctly unlock and flush a blocking selector when going to READY.
2008-03-20 16:48:46 +00:00
|
|
|
|
2014-10-03 12:01:59 +00:00
|
|
|
if (prev_active_sinkpad) {
|
2013-07-10 12:30:31 +00:00
|
|
|
gst_object_unref (prev_active_sinkpad);
|
2014-10-03 12:01:59 +00:00
|
|
|
prev_active_sinkpad = NULL;
|
|
|
|
}
|
2013-07-10 12:30:31 +00:00
|
|
|
|
plugins/elements/gstinputselector.*: Figure out the locking a bit more.
Original commit message from CVS:
* plugins/elements/gstinputselector.c:
(gst_selector_pad_get_running_time), (gst_selector_pad_reset),
(gst_selector_pad_event), (gst_selector_pad_bufferalloc),
(gst_input_selector_wait), (gst_selector_pad_chain),
(gst_input_selector_class_init), (gst_input_selector_init),
(gst_input_selector_dispose), (gst_segment_set_start),
(gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_get_linked_pad),
(gst_input_selector_is_active_sinkpad),
(gst_input_selector_activate_sinkpad),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_change_state), (gst_input_selector_block),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Figure out the locking a bit more.
Mark buffers with discont after switching.
Fix initial segment forwarding, make sure to only forward one segment
regardless of what the sequence of buffers/segments is. See #522203.
Improve flushing when blocked.
Return NOT_LINKED when a stream is not selected.
Not API change for the switch signal in the docs.
Fix start/time/accum values of the new segment.
Correctly unlock and flush a blocking selector when going to READY.
2008-03-20 16:48:46 +00:00
|
|
|
if (selpad->discont) {
|
2011-03-23 19:52:27 +00:00
|
|
|
buf = gst_buffer_make_writable (buf);
|
plugins/elements/gstinputselector.*: Figure out the locking a bit more.
Original commit message from CVS:
* plugins/elements/gstinputselector.c:
(gst_selector_pad_get_running_time), (gst_selector_pad_reset),
(gst_selector_pad_event), (gst_selector_pad_bufferalloc),
(gst_input_selector_wait), (gst_selector_pad_chain),
(gst_input_selector_class_init), (gst_input_selector_init),
(gst_input_selector_dispose), (gst_segment_set_start),
(gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_get_linked_pad),
(gst_input_selector_is_active_sinkpad),
(gst_input_selector_activate_sinkpad),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_change_state), (gst_input_selector_block),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Figure out the locking a bit more.
Mark buffers with discont after switching.
Fix initial segment forwarding, make sure to only forward one segment
regardless of what the sequence of buffers/segments is. See #522203.
Improve flushing when blocked.
Return NOT_LINKED when a stream is not selected.
Not API change for the switch signal in the docs.
Fix start/time/accum values of the new segment.
Correctly unlock and flush a blocking selector when going to READY.
2008-03-20 16:48:46 +00:00
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (pad, "Marking discont buffer %p", buf);
|
|
|
|
GST_BUFFER_FLAG_SET (buf, GST_BUFFER_FLAG_DISCONT);
|
|
|
|
selpad->discont = FALSE;
|
|
|
|
}
|
2008-01-29 07:38:31 +00:00
|
|
|
|
|
|
|
/* forward */
|
2012-05-28 17:29:00 +00:00
|
|
|
GST_LOG_OBJECT (pad, "Forwarding buffer %p with timestamp %" GST_TIME_FORMAT,
|
2014-10-03 12:01:59 +00:00
|
|
|
buf, GST_TIME_ARGS (GST_BUFFER_PTS (buf)));
|
2012-05-28 17:29:00 +00:00
|
|
|
|
2013-04-25 14:38:49 +00:00
|
|
|
/* Only make the buffer read-only when necessary */
|
|
|
|
if (sel->sync_streams && sel->cache_buffers)
|
|
|
|
buf = gst_buffer_ref (buf);
|
|
|
|
res = gst_pad_push (sel->srcpad, buf);
|
2012-05-28 17:29:00 +00:00
|
|
|
GST_LOG_OBJECT (pad, "Buffer %p forwarded result=%d", buf, res);
|
|
|
|
|
|
|
|
GST_INPUT_SELECTOR_LOCK (sel);
|
plugins/elements/gstinputselector.*: Figure out the locking a bit more.
Original commit message from CVS:
* plugins/elements/gstinputselector.c:
(gst_selector_pad_get_running_time), (gst_selector_pad_reset),
(gst_selector_pad_event), (gst_selector_pad_bufferalloc),
(gst_input_selector_wait), (gst_selector_pad_chain),
(gst_input_selector_class_init), (gst_input_selector_init),
(gst_input_selector_dispose), (gst_segment_set_start),
(gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_get_linked_pad),
(gst_input_selector_is_active_sinkpad),
(gst_input_selector_activate_sinkpad),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_change_state), (gst_input_selector_block),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Figure out the locking a bit more.
Mark buffers with discont after switching.
Fix initial segment forwarding, make sure to only forward one segment
regardless of what the sequence of buffers/segments is. See #522203.
Improve flushing when blocked.
Return NOT_LINKED when a stream is not selected.
Not API change for the switch signal in the docs.
Fix start/time/accum values of the new segment.
Correctly unlock and flush a blocking selector when going to READY.
2008-03-20 16:48:46 +00:00
|
|
|
|
2012-05-28 17:29:00 +00:00
|
|
|
if (sel->sync_streams && sel->cache_buffers) {
|
|
|
|
/* Might have changed while pushing */
|
2014-11-19 12:08:45 +00:00
|
|
|
active_sinkpad = gst_input_selector_get_active_sinkpad (sel);
|
2012-05-28 17:29:00 +00:00
|
|
|
/* only set pad to pushed if we are still the active pad */
|
|
|
|
if (active_sinkpad == pad)
|
|
|
|
selpad->pushed = TRUE;
|
|
|
|
|
|
|
|
/* cache buffer as we may need it again if we change pads */
|
|
|
|
gst_selector_pad_cache_buffer (selpad, buf);
|
|
|
|
gst_input_selector_cleanup_old_cached_buffers (sel, pad);
|
|
|
|
} else {
|
|
|
|
selpad->pushed = TRUE;
|
|
|
|
}
|
|
|
|
GST_INPUT_SELECTOR_UNLOCK (sel);
|
plugins/elements/gstinputselector.*: Figure out the locking a bit more.
Original commit message from CVS:
* plugins/elements/gstinputselector.c:
(gst_selector_pad_get_running_time), (gst_selector_pad_reset),
(gst_selector_pad_event), (gst_selector_pad_bufferalloc),
(gst_input_selector_wait), (gst_selector_pad_chain),
(gst_input_selector_class_init), (gst_input_selector_init),
(gst_input_selector_dispose), (gst_segment_set_start),
(gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_get_linked_pad),
(gst_input_selector_is_active_sinkpad),
(gst_input_selector_activate_sinkpad),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_change_state), (gst_input_selector_block),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Figure out the locking a bit more.
Mark buffers with discont after switching.
Fix initial segment forwarding, make sure to only forward one segment
regardless of what the sequence of buffers/segments is. See #522203.
Improve flushing when blocked.
Return NOT_LINKED when a stream is not selected.
Not API change for the switch signal in the docs.
Fix start/time/accum values of the new segment.
Correctly unlock and flush a blocking selector when going to READY.
2008-03-20 16:48:46 +00:00
|
|
|
|
2008-01-29 07:38:31 +00:00
|
|
|
done:
|
2013-05-31 15:39:55 +00:00
|
|
|
|
|
|
|
if (prev_active_sinkpad)
|
|
|
|
gst_object_unref (prev_active_sinkpad);
|
|
|
|
prev_active_sinkpad = NULL;
|
|
|
|
|
2008-01-29 07:38:31 +00:00
|
|
|
return res;
|
plugins/elements/gstinputselector.*: Figure out the locking a bit more.
Original commit message from CVS:
* plugins/elements/gstinputselector.c:
(gst_selector_pad_get_running_time), (gst_selector_pad_reset),
(gst_selector_pad_event), (gst_selector_pad_bufferalloc),
(gst_input_selector_wait), (gst_selector_pad_chain),
(gst_input_selector_class_init), (gst_input_selector_init),
(gst_input_selector_dispose), (gst_segment_set_start),
(gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_get_linked_pad),
(gst_input_selector_is_active_sinkpad),
(gst_input_selector_activate_sinkpad),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_change_state), (gst_input_selector_block),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Figure out the locking a bit more.
Mark buffers with discont after switching.
Fix initial segment forwarding, make sure to only forward one segment
regardless of what the sequence of buffers/segments is. See #522203.
Improve flushing when blocked.
Return NOT_LINKED when a stream is not selected.
Not API change for the switch signal in the docs.
Fix start/time/accum values of the new segment.
Correctly unlock and flush a blocking selector when going to READY.
2008-03-20 16:48:46 +00:00
|
|
|
|
2008-01-29 07:38:31 +00:00
|
|
|
/* dropped buffers */
|
|
|
|
ignore:
|
|
|
|
{
|
2011-03-17 13:21:17 +00:00
|
|
|
gboolean active_pad_pushed = GST_SELECTOR_PAD_CAST (active_sinkpad)->pushed;
|
|
|
|
|
2012-06-01 14:34:16 +00:00
|
|
|
GST_DEBUG_OBJECT (pad, "Pad not active, discard buffer %p", buf);
|
plugins/elements/gstinputselector.*: Figure out the locking a bit more.
Original commit message from CVS:
* plugins/elements/gstinputselector.c:
(gst_selector_pad_get_running_time), (gst_selector_pad_reset),
(gst_selector_pad_event), (gst_selector_pad_bufferalloc),
(gst_input_selector_wait), (gst_selector_pad_chain),
(gst_input_selector_class_init), (gst_input_selector_init),
(gst_input_selector_dispose), (gst_segment_set_start),
(gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_get_linked_pad),
(gst_input_selector_is_active_sinkpad),
(gst_input_selector_activate_sinkpad),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_change_state), (gst_input_selector_block),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Figure out the locking a bit more.
Mark buffers with discont after switching.
Fix initial segment forwarding, make sure to only forward one segment
regardless of what the sequence of buffers/segments is. See #522203.
Improve flushing when blocked.
Return NOT_LINKED when a stream is not selected.
Not API change for the switch signal in the docs.
Fix start/time/accum values of the new segment.
Correctly unlock and flush a blocking selector when going to READY.
2008-03-20 16:48:46 +00:00
|
|
|
/* when we drop a buffer, we're creating a discont on this pad */
|
|
|
|
selpad->discont = TRUE;
|
|
|
|
GST_INPUT_SELECTOR_UNLOCK (sel);
|
|
|
|
gst_buffer_unref (buf);
|
plugins/elements/gstinputselector.c: Add pad property to configure behaviour of the unselected pad, it can return OK or N...
Original commit message from CVS:
* plugins/elements/gstinputselector.c: (gst_selector_pad_class_init),
(gst_selector_pad_init), (gst_selector_pad_set_property),
(gst_selector_pad_get_property), (gst_selector_pad_event),
(gst_selector_pad_bufferalloc), (gst_selector_pad_chain),
(gst_input_selector_set_active_pad):
Add pad property to configure behaviour of the unselected pad, it can
return OK or NOT_LINKED, based on the use case.
2008-03-20 17:07:07 +00:00
|
|
|
|
|
|
|
/* figure out what to return upstream */
|
|
|
|
GST_OBJECT_LOCK (selpad);
|
2011-03-17 13:21:17 +00:00
|
|
|
if (selpad->always_ok || !active_pad_pushed)
|
plugins/elements/gstinputselector.c: Add pad property to configure behaviour of the unselected pad, it can return OK or N...
Original commit message from CVS:
* plugins/elements/gstinputselector.c: (gst_selector_pad_class_init),
(gst_selector_pad_init), (gst_selector_pad_set_property),
(gst_selector_pad_get_property), (gst_selector_pad_event),
(gst_selector_pad_bufferalloc), (gst_selector_pad_chain),
(gst_input_selector_set_active_pad):
Add pad property to configure behaviour of the unselected pad, it can
return OK or NOT_LINKED, based on the use case.
2008-03-20 17:07:07 +00:00
|
|
|
res = GST_FLOW_OK;
|
|
|
|
else
|
|
|
|
res = GST_FLOW_NOT_LINKED;
|
|
|
|
GST_OBJECT_UNLOCK (selpad);
|
|
|
|
|
plugins/elements/gstinputselector.*: Figure out the locking a bit more.
Original commit message from CVS:
* plugins/elements/gstinputselector.c:
(gst_selector_pad_get_running_time), (gst_selector_pad_reset),
(gst_selector_pad_event), (gst_selector_pad_bufferalloc),
(gst_input_selector_wait), (gst_selector_pad_chain),
(gst_input_selector_class_init), (gst_input_selector_init),
(gst_input_selector_dispose), (gst_segment_set_start),
(gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_get_linked_pad),
(gst_input_selector_is_active_sinkpad),
(gst_input_selector_activate_sinkpad),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_change_state), (gst_input_selector_block),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Figure out the locking a bit more.
Mark buffers with discont after switching.
Fix initial segment forwarding, make sure to only forward one segment
regardless of what the sequence of buffers/segments is. See #522203.
Improve flushing when blocked.
Return NOT_LINKED when a stream is not selected.
Not API change for the switch signal in the docs.
Fix start/time/accum values of the new segment.
Correctly unlock and flush a blocking selector when going to READY.
2008-03-20 16:48:46 +00:00
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
flushing:
|
|
|
|
{
|
|
|
|
GST_DEBUG_OBJECT (pad, "We are flushing, discard buffer %p", buf);
|
2008-01-29 07:38:31 +00:00
|
|
|
gst_buffer_unref (buf);
|
2012-02-08 14:16:46 +00:00
|
|
|
res = GST_FLOW_FLUSHING;
|
2008-01-29 07:38:31 +00:00
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
plugins/elements/gstinputselector.*: Figure out the locking a bit more.
Original commit message from CVS:
* plugins/elements/gstinputselector.c:
(gst_selector_pad_get_running_time), (gst_selector_pad_reset),
(gst_selector_pad_event), (gst_selector_pad_bufferalloc),
(gst_input_selector_wait), (gst_selector_pad_chain),
(gst_input_selector_class_init), (gst_input_selector_init),
(gst_input_selector_dispose), (gst_segment_set_start),
(gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_get_linked_pad),
(gst_input_selector_is_active_sinkpad),
(gst_input_selector_activate_sinkpad),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_change_state), (gst_input_selector_block),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Figure out the locking a bit more.
Mark buffers with discont after switching.
Fix initial segment forwarding, make sure to only forward one segment
regardless of what the sequence of buffers/segments is. See #522203.
Improve flushing when blocked.
Return NOT_LINKED when a stream is not selected.
Not API change for the switch signal in the docs.
Fix start/time/accum values of the new segment.
Correctly unlock and flush a blocking selector when going to READY.
2008-03-20 16:48:46 +00:00
|
|
|
static void gst_input_selector_dispose (GObject * object);
|
2012-01-19 08:27:04 +00:00
|
|
|
static void gst_input_selector_finalize (GObject * object);
|
plugins/elements/gstinputselector.*: Figure out the locking a bit more.
Original commit message from CVS:
* plugins/elements/gstinputselector.c:
(gst_selector_pad_get_running_time), (gst_selector_pad_reset),
(gst_selector_pad_event), (gst_selector_pad_bufferalloc),
(gst_input_selector_wait), (gst_selector_pad_chain),
(gst_input_selector_class_init), (gst_input_selector_init),
(gst_input_selector_dispose), (gst_segment_set_start),
(gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_get_linked_pad),
(gst_input_selector_is_active_sinkpad),
(gst_input_selector_activate_sinkpad),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_change_state), (gst_input_selector_block),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Figure out the locking a bit more.
Mark buffers with discont after switching.
Fix initial segment forwarding, make sure to only forward one segment
regardless of what the sequence of buffers/segments is. See #522203.
Improve flushing when blocked.
Return NOT_LINKED when a stream is not selected.
Not API change for the switch signal in the docs.
Fix start/time/accum values of the new segment.
Correctly unlock and flush a blocking selector when going to READY.
2008-03-20 16:48:46 +00:00
|
|
|
|
2008-01-29 07:38:31 +00:00
|
|
|
static void gst_input_selector_set_property (GObject * object,
|
|
|
|
guint prop_id, const GValue * value, GParamSpec * pspec);
|
|
|
|
static void gst_input_selector_get_property (GObject * object,
|
|
|
|
guint prop_id, GValue * value, GParamSpec * pspec);
|
plugins/elements/gstinputselector.*: Figure out the locking a bit more.
Original commit message from CVS:
* plugins/elements/gstinputselector.c:
(gst_selector_pad_get_running_time), (gst_selector_pad_reset),
(gst_selector_pad_event), (gst_selector_pad_bufferalloc),
(gst_input_selector_wait), (gst_selector_pad_chain),
(gst_input_selector_class_init), (gst_input_selector_init),
(gst_input_selector_dispose), (gst_segment_set_start),
(gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_get_linked_pad),
(gst_input_selector_is_active_sinkpad),
(gst_input_selector_activate_sinkpad),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_change_state), (gst_input_selector_block),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Figure out the locking a bit more.
Mark buffers with discont after switching.
Fix initial segment forwarding, make sure to only forward one segment
regardless of what the sequence of buffers/segments is. See #522203.
Improve flushing when blocked.
Return NOT_LINKED when a stream is not selected.
Not API change for the switch signal in the docs.
Fix start/time/accum values of the new segment.
Correctly unlock and flush a blocking selector when going to READY.
2008-03-20 16:48:46 +00:00
|
|
|
|
2008-01-29 07:38:31 +00:00
|
|
|
static GstPad *gst_input_selector_request_new_pad (GstElement * element,
|
2011-05-10 14:41:36 +00:00
|
|
|
GstPadTemplate * templ, const gchar * unused, const GstCaps * caps);
|
2008-01-29 07:38:31 +00:00
|
|
|
static void gst_input_selector_release_pad (GstElement * element, GstPad * pad);
|
plugins/elements/gstinputselector.*: Figure out the locking a bit more.
Original commit message from CVS:
* plugins/elements/gstinputselector.c:
(gst_selector_pad_get_running_time), (gst_selector_pad_reset),
(gst_selector_pad_event), (gst_selector_pad_bufferalloc),
(gst_input_selector_wait), (gst_selector_pad_chain),
(gst_input_selector_class_init), (gst_input_selector_init),
(gst_input_selector_dispose), (gst_segment_set_start),
(gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_get_linked_pad),
(gst_input_selector_is_active_sinkpad),
(gst_input_selector_activate_sinkpad),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_change_state), (gst_input_selector_block),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Figure out the locking a bit more.
Mark buffers with discont after switching.
Fix initial segment forwarding, make sure to only forward one segment
regardless of what the sequence of buffers/segments is. See #522203.
Improve flushing when blocked.
Return NOT_LINKED when a stream is not selected.
Not API change for the switch signal in the docs.
Fix start/time/accum values of the new segment.
Correctly unlock and flush a blocking selector when going to READY.
2008-03-20 16:48:46 +00:00
|
|
|
|
2008-01-29 07:38:31 +00:00
|
|
|
static GstStateChangeReturn gst_input_selector_change_state (GstElement *
|
|
|
|
element, GstStateChange transition);
|
plugins/elements/gstinputselector.*: Figure out the locking a bit more.
Original commit message from CVS:
* plugins/elements/gstinputselector.c:
(gst_selector_pad_get_running_time), (gst_selector_pad_reset),
(gst_selector_pad_event), (gst_selector_pad_bufferalloc),
(gst_input_selector_wait), (gst_selector_pad_chain),
(gst_input_selector_class_init), (gst_input_selector_init),
(gst_input_selector_dispose), (gst_segment_set_start),
(gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_get_linked_pad),
(gst_input_selector_is_active_sinkpad),
(gst_input_selector_activate_sinkpad),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_change_state), (gst_input_selector_block),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Figure out the locking a bit more.
Mark buffers with discont after switching.
Fix initial segment forwarding, make sure to only forward one segment
regardless of what the sequence of buffers/segments is. See #522203.
Improve flushing when blocked.
Return NOT_LINKED when a stream is not selected.
Not API change for the switch signal in the docs.
Fix start/time/accum values of the new segment.
Correctly unlock and flush a blocking selector when going to READY.
2008-03-20 16:48:46 +00:00
|
|
|
|
2011-11-17 11:40:45 +00:00
|
|
|
static gboolean gst_input_selector_event (GstPad * pad, GstObject * parent,
|
|
|
|
GstEvent * event);
|
2018-07-31 16:25:03 +00:00
|
|
|
static gboolean gst_input_selector_query (GstPad * pad, GstObject * parent,
|
|
|
|
GstQuery * query);
|
2008-01-29 07:38:31 +00:00
|
|
|
|
2011-04-18 16:07:06 +00:00
|
|
|
#define _do_init \
|
2010-08-24 08:50:09 +00:00
|
|
|
GST_DEBUG_CATEGORY_INIT (input_selector_debug, \
|
2008-01-29 07:38:31 +00:00
|
|
|
"input-selector", 0, "An input stream selector element");
|
2011-04-18 16:07:06 +00:00
|
|
|
#define gst_input_selector_parent_class parent_class
|
|
|
|
G_DEFINE_TYPE_WITH_CODE (GstInputSelector, gst_input_selector, GST_TYPE_ELEMENT,
|
|
|
|
_do_init);
|
2008-01-29 07:38:31 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
gst_input_selector_class_init (GstInputSelectorClass * klass)
|
|
|
|
{
|
|
|
|
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
|
|
|
|
GstElementClass *gstelement_class = GST_ELEMENT_CLASS (klass);
|
|
|
|
|
plugins/elements/gstinputselector.*: Various cleanups.
Original commit message from CVS:
* plugins/elements/gstinputselector.c: (gst_selector_pad_class_init),
(gst_selector_pad_finalize), (gst_selector_pad_get_property),
(gst_selector_pad_event), (gst_input_selector_class_init),
(gst_input_selector_init), (gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_push_pending_stop),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Various cleanups.
Added tags to the pads.
Select active pad based on the pad object instead of its name.
Fix refcount in set_active_pad.
Add property to get the number of pads.
* plugins/elements/gstoutputselector.c:
(gst_output_selector_class_init),
(gst_output_selector_set_property),
(gst_output_selector_get_property):
Various cleanups.
Select the active pad based on the pad object instead of its name.
Fix locking when setting the active pad.
* plugins/elements/gstselector-marshal.list:
* tests/check/elements/selector.c: (cleanup_pad),
(selector_set_active_pad), (run_input_selector_buffer_count):
Fixes for pad instead of padname for pad selection.
2008-03-13 16:46:04 +00:00
|
|
|
gobject_class->dispose = gst_input_selector_dispose;
|
2012-01-19 08:27:04 +00:00
|
|
|
gobject_class->finalize = gst_input_selector_finalize;
|
plugins/elements/gstinputselector.*: Various cleanups.
Original commit message from CVS:
* plugins/elements/gstinputselector.c: (gst_selector_pad_class_init),
(gst_selector_pad_finalize), (gst_selector_pad_get_property),
(gst_selector_pad_event), (gst_input_selector_class_init),
(gst_input_selector_init), (gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_push_pending_stop),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Various cleanups.
Added tags to the pads.
Select active pad based on the pad object instead of its name.
Fix refcount in set_active_pad.
Add property to get the number of pads.
* plugins/elements/gstoutputselector.c:
(gst_output_selector_class_init),
(gst_output_selector_set_property),
(gst_output_selector_get_property):
Various cleanups.
Select the active pad based on the pad object instead of its name.
Fix locking when setting the active pad.
* plugins/elements/gstselector-marshal.list:
* tests/check/elements/selector.c: (cleanup_pad),
(selector_set_active_pad), (run_input_selector_buffer_count):
Fixes for pad instead of padname for pad selection.
2008-03-13 16:46:04 +00:00
|
|
|
|
2009-11-03 17:11:13 +00:00
|
|
|
gobject_class->set_property = gst_input_selector_set_property;
|
|
|
|
gobject_class->get_property = gst_input_selector_get_property;
|
plugins/elements/gstinputselector.*: Various cleanups.
Original commit message from CVS:
* plugins/elements/gstinputselector.c: (gst_selector_pad_class_init),
(gst_selector_pad_finalize), (gst_selector_pad_get_property),
(gst_selector_pad_event), (gst_input_selector_class_init),
(gst_input_selector_init), (gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_push_pending_stop),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Various cleanups.
Added tags to the pads.
Select active pad based on the pad object instead of its name.
Fix refcount in set_active_pad.
Add property to get the number of pads.
* plugins/elements/gstoutputselector.c:
(gst_output_selector_class_init),
(gst_output_selector_set_property),
(gst_output_selector_get_property):
Various cleanups.
Select the active pad based on the pad object instead of its name.
Fix locking when setting the active pad.
* plugins/elements/gstselector-marshal.list:
* tests/check/elements/selector.c: (cleanup_pad),
(selector_set_active_pad), (run_input_selector_buffer_count):
Fixes for pad instead of padname for pad selection.
2008-03-13 16:46:04 +00:00
|
|
|
|
|
|
|
g_object_class_install_property (gobject_class, PROP_N_PADS,
|
|
|
|
g_param_spec_uint ("n-pads", "Number of Pads",
|
2010-10-19 10:43:14 +00:00
|
|
|
"The number of sink pads", 0, G_MAXUINT, 0,
|
|
|
|
G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
|
plugins/elements/gstinputselector.*: Various cleanups.
Original commit message from CVS:
* plugins/elements/gstinputselector.c: (gst_selector_pad_class_init),
(gst_selector_pad_finalize), (gst_selector_pad_get_property),
(gst_selector_pad_event), (gst_input_selector_class_init),
(gst_input_selector_init), (gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_push_pending_stop),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Various cleanups.
Added tags to the pads.
Select active pad based on the pad object instead of its name.
Fix refcount in set_active_pad.
Add property to get the number of pads.
* plugins/elements/gstoutputselector.c:
(gst_output_selector_class_init),
(gst_output_selector_set_property),
(gst_output_selector_get_property):
Various cleanups.
Select the active pad based on the pad object instead of its name.
Fix locking when setting the active pad.
* plugins/elements/gstselector-marshal.list:
* tests/check/elements/selector.c: (cleanup_pad),
(selector_set_active_pad), (run_input_selector_buffer_count):
Fixes for pad instead of padname for pad selection.
2008-03-13 16:46:04 +00:00
|
|
|
|
2008-01-29 07:38:31 +00:00
|
|
|
g_object_class_install_property (gobject_class, PROP_ACTIVE_PAD,
|
plugins/elements/gstinputselector.*: Various cleanups.
Original commit message from CVS:
* plugins/elements/gstinputselector.c: (gst_selector_pad_class_init),
(gst_selector_pad_finalize), (gst_selector_pad_get_property),
(gst_selector_pad_event), (gst_input_selector_class_init),
(gst_input_selector_init), (gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_push_pending_stop),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Various cleanups.
Added tags to the pads.
Select active pad based on the pad object instead of its name.
Fix refcount in set_active_pad.
Add property to get the number of pads.
* plugins/elements/gstoutputselector.c:
(gst_output_selector_class_init),
(gst_output_selector_set_property),
(gst_output_selector_get_property):
Various cleanups.
Select the active pad based on the pad object instead of its name.
Fix locking when setting the active pad.
* plugins/elements/gstselector-marshal.list:
* tests/check/elements/selector.c: (cleanup_pad),
(selector_set_active_pad), (run_input_selector_buffer_count):
Fixes for pad instead of padname for pad selection.
2008-03-13 16:46:04 +00:00
|
|
|
g_param_spec_object ("active-pad", "Active pad",
|
2010-10-19 10:43:14 +00:00
|
|
|
"The currently active sink pad", GST_TYPE_PAD,
|
2014-09-13 19:12:52 +00:00
|
|
|
G_PARAM_READWRITE | GST_PARAM_MUTABLE_PLAYING |
|
|
|
|
G_PARAM_STATIC_STRINGS));
|
plugins/elements/gstinputselector.*: Various cleanups.
Original commit message from CVS:
* plugins/elements/gstinputselector.c: (gst_selector_pad_class_init),
(gst_selector_pad_finalize), (gst_selector_pad_get_property),
(gst_selector_pad_event), (gst_input_selector_class_init),
(gst_input_selector_init), (gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_push_pending_stop),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Various cleanups.
Added tags to the pads.
Select active pad based on the pad object instead of its name.
Fix refcount in set_active_pad.
Add property to get the number of pads.
* plugins/elements/gstoutputselector.c:
(gst_output_selector_class_init),
(gst_output_selector_set_property),
(gst_output_selector_get_property):
Various cleanups.
Select the active pad based on the pad object instead of its name.
Fix locking when setting the active pad.
* plugins/elements/gstselector-marshal.list:
* tests/check/elements/selector.c: (cleanup_pad),
(selector_set_active_pad), (run_input_selector_buffer_count):
Fixes for pad instead of padname for pad selection.
2008-03-13 16:46:04 +00:00
|
|
|
|
2011-03-19 09:28:49 +00:00
|
|
|
/**
|
|
|
|
* GstInputSelector:sync-streams
|
|
|
|
*
|
|
|
|
* If set to %TRUE all inactive streams will be synced to the
|
2012-05-28 17:29:00 +00:00
|
|
|
* running time of the active stream or to the current clock.
|
|
|
|
*
|
|
|
|
* To make sure no buffers are dropped by input-selector
|
|
|
|
* that might be needed when switching the active pad,
|
|
|
|
* sync-mode should be set to "clock" and cache-buffers to TRUE.
|
2011-03-19 09:28:49 +00:00
|
|
|
*/
|
|
|
|
g_object_class_install_property (gobject_class, PROP_SYNC_STREAMS,
|
|
|
|
g_param_spec_boolean ("sync-streams", "Sync Streams",
|
2012-05-28 17:29:00 +00:00
|
|
|
"Synchronize inactive streams to the running time of the active "
|
|
|
|
"stream or to the current clock",
|
|
|
|
DEFAULT_SYNC_STREAMS,
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS |
|
|
|
|
GST_PARAM_MUTABLE_READY));
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GstInputSelector:sync-mode
|
|
|
|
*
|
|
|
|
* Select how input-selector will sync buffers when in sync-streams mode.
|
|
|
|
*
|
|
|
|
* Note that when using the "active-segment" mode, the "active-segment" may
|
|
|
|
* be ahead of current clock time when switching the active pad, as the current
|
|
|
|
* active pad may have pushed more buffers than what was displayed/consumed,
|
|
|
|
* which may cause delays and some missing buffers.
|
|
|
|
*/
|
|
|
|
g_object_class_install_property (gobject_class, PROP_SYNC_MODE,
|
|
|
|
g_param_spec_enum ("sync-mode", "Sync mode",
|
|
|
|
"Behavior in sync-streams mode", GST_TYPE_INPUT_SELECTOR_SYNC_MODE,
|
|
|
|
DEFAULT_SYNC_MODE,
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS |
|
|
|
|
GST_PARAM_MUTABLE_READY));
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GstInputSelector:cache-buffers
|
|
|
|
*
|
|
|
|
* If set to %TRUE and GstInputSelector:sync-streams is also set to %TRUE,
|
|
|
|
* the active pad will cache the buffers still considered valid (after current
|
|
|
|
* running time, see sync-mode) to avoid missing frames if/when the pad is
|
|
|
|
* reactivated.
|
|
|
|
*
|
|
|
|
* The active pad may push more buffers than what is currently displayed/consumed
|
|
|
|
* and when changing pads those buffers will be discarded and the only way to
|
2018-04-27 16:40:31 +00:00
|
|
|
* reactivate that pad without losing the already consumed buffers is to enable cache.
|
2012-05-28 17:29:00 +00:00
|
|
|
*/
|
|
|
|
g_object_class_install_property (gobject_class, PROP_CACHE_BUFFERS,
|
|
|
|
g_param_spec_boolean ("cache-buffers", "Cache Buffers",
|
|
|
|
"Cache buffers for active-pad",
|
|
|
|
DEFAULT_CACHE_BUFFERS,
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS |
|
|
|
|
GST_PARAM_MUTABLE_READY));
|
2011-03-19 09:28:49 +00:00
|
|
|
|
2012-04-09 12:05:07 +00:00
|
|
|
gst_element_class_set_static_metadata (gstelement_class, "Input selector",
|
2011-04-18 16:07:06 +00:00
|
|
|
"Generic", "N-to-1 input stream selector",
|
|
|
|
"Julien Moutte <julien@moutte.net>, "
|
|
|
|
"Jan Schmidt <thaytan@mad.scientist.com>, "
|
|
|
|
"Wim Taymans <wim.taymans@gmail.com>");
|
2018-04-17 10:24:31 +00:00
|
|
|
gst_element_class_add_static_pad_template_with_gtype (gstelement_class,
|
|
|
|
&gst_input_selector_sink_factory, GST_TYPE_SELECTOR_PAD);
|
2016-02-27 15:36:28 +00:00
|
|
|
gst_element_class_add_static_pad_template (gstelement_class,
|
|
|
|
&gst_input_selector_src_factory);
|
2011-04-18 16:07:06 +00:00
|
|
|
|
plugins/elements/gstinputselector.*: Various cleanups.
Original commit message from CVS:
* plugins/elements/gstinputselector.c: (gst_selector_pad_class_init),
(gst_selector_pad_finalize), (gst_selector_pad_get_property),
(gst_selector_pad_event), (gst_input_selector_class_init),
(gst_input_selector_init), (gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_push_pending_stop),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Various cleanups.
Added tags to the pads.
Select active pad based on the pad object instead of its name.
Fix refcount in set_active_pad.
Add property to get the number of pads.
* plugins/elements/gstoutputselector.c:
(gst_output_selector_class_init),
(gst_output_selector_set_property),
(gst_output_selector_get_property):
Various cleanups.
Select the active pad based on the pad object instead of its name.
Fix locking when setting the active pad.
* plugins/elements/gstselector-marshal.list:
* tests/check/elements/selector.c: (cleanup_pad),
(selector_set_active_pad), (run_input_selector_buffer_count):
Fixes for pad instead of padname for pad selection.
2008-03-13 16:46:04 +00:00
|
|
|
gstelement_class->request_new_pad = gst_input_selector_request_new_pad;
|
|
|
|
gstelement_class->release_pad = gst_input_selector_release_pad;
|
|
|
|
gstelement_class->change_state = gst_input_selector_change_state;
|
2008-01-29 07:38:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-04-18 16:07:06 +00:00
|
|
|
gst_input_selector_init (GstInputSelector * sel)
|
2008-01-29 07:38:31 +00:00
|
|
|
{
|
|
|
|
sel->srcpad = gst_pad_new ("src", GST_PAD_SRC);
|
2009-08-19 15:05:32 +00:00
|
|
|
gst_pad_set_iterate_internal_links_function (sel->srcpad,
|
|
|
|
GST_DEBUG_FUNCPTR (gst_selector_pad_iterate_linked_pads));
|
2008-09-01 13:23:03 +00:00
|
|
|
gst_pad_set_event_function (sel->srcpad,
|
|
|
|
GST_DEBUG_FUNCPTR (gst_input_selector_event));
|
2018-07-31 16:25:03 +00:00
|
|
|
gst_pad_set_query_function (sel->srcpad,
|
|
|
|
GST_DEBUG_FUNCPTR (gst_input_selector_query));
|
2011-11-16 11:36:51 +00:00
|
|
|
GST_OBJECT_FLAG_SET (sel->srcpad, GST_PAD_FLAG_PROXY_CAPS);
|
2008-01-29 07:38:31 +00:00
|
|
|
gst_element_add_pad (GST_ELEMENT (sel), sel->srcpad);
|
|
|
|
/* sinkpad management */
|
|
|
|
sel->active_sinkpad = NULL;
|
plugins/elements/gstinputselector.*: Various cleanups.
Original commit message from CVS:
* plugins/elements/gstinputselector.c: (gst_selector_pad_class_init),
(gst_selector_pad_finalize), (gst_selector_pad_get_property),
(gst_selector_pad_event), (gst_input_selector_class_init),
(gst_input_selector_init), (gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_push_pending_stop),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Various cleanups.
Added tags to the pads.
Select active pad based on the pad object instead of its name.
Fix refcount in set_active_pad.
Add property to get the number of pads.
* plugins/elements/gstoutputselector.c:
(gst_output_selector_class_init),
(gst_output_selector_set_property),
(gst_output_selector_get_property):
Various cleanups.
Select the active pad based on the pad object instead of its name.
Fix locking when setting the active pad.
* plugins/elements/gstselector-marshal.list:
* tests/check/elements/selector.c: (cleanup_pad),
(selector_set_active_pad), (run_input_selector_buffer_count):
Fixes for pad instead of padname for pad selection.
2008-03-13 16:46:04 +00:00
|
|
|
sel->padcount = 0;
|
2011-03-19 09:28:49 +00:00
|
|
|
sel->sync_streams = DEFAULT_SYNC_STREAMS;
|
2015-06-12 08:54:32 +00:00
|
|
|
sel->sync_mode = DEFAULT_SYNC_MODE;
|
2013-07-22 12:12:18 +00:00
|
|
|
sel->have_group_id = TRUE;
|
2008-01-29 07:38:31 +00:00
|
|
|
|
2012-01-19 08:27:04 +00:00
|
|
|
g_mutex_init (&sel->lock);
|
|
|
|
g_cond_init (&sel->cond);
|
2014-12-24 02:13:51 +00:00
|
|
|
sel->eos = FALSE;
|
2012-05-28 17:29:00 +00:00
|
|
|
|
|
|
|
/* lets give a change for downstream to do something on
|
|
|
|
* active-pad change before we start pushing new buffers */
|
|
|
|
g_signal_connect_data (sel, "notify::active-pad",
|
|
|
|
(GCallback) gst_input_selector_active_pad_changed, NULL,
|
|
|
|
NULL, G_CONNECT_AFTER);
|
2008-01-29 07:38:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_input_selector_dispose (GObject * object)
|
|
|
|
{
|
|
|
|
GstInputSelector *sel = GST_INPUT_SELECTOR (object);
|
|
|
|
|
|
|
|
if (sel->active_sinkpad) {
|
|
|
|
gst_object_unref (sel->active_sinkpad);
|
|
|
|
sel->active_sinkpad = NULL;
|
|
|
|
}
|
|
|
|
G_OBJECT_CLASS (parent_class)->dispose (object);
|
|
|
|
}
|
|
|
|
|
2012-01-19 08:27:04 +00:00
|
|
|
static void
|
|
|
|
gst_input_selector_finalize (GObject * object)
|
|
|
|
{
|
|
|
|
GstInputSelector *sel = GST_INPUT_SELECTOR (object);
|
|
|
|
|
|
|
|
g_mutex_clear (&sel->lock);
|
|
|
|
g_cond_clear (&sel->cond);
|
|
|
|
|
|
|
|
G_OBJECT_CLASS (parent_class)->finalize (object);
|
|
|
|
}
|
|
|
|
|
2008-03-20 18:10:29 +00:00
|
|
|
/* this function must be called with the SELECTOR_LOCK. It returns TRUE when the
|
|
|
|
* active pad changed. */
|
|
|
|
static gboolean
|
2011-05-19 10:11:43 +00:00
|
|
|
gst_input_selector_set_active_pad (GstInputSelector * self, GstPad * pad)
|
2008-01-29 07:38:31 +00:00
|
|
|
{
|
|
|
|
GstSelectorPad *old, *new;
|
|
|
|
GstPad **active_pad_p;
|
|
|
|
|
|
|
|
if (pad == self->active_sinkpad)
|
2008-03-20 18:10:29 +00:00
|
|
|
return FALSE;
|
2008-01-29 07:38:31 +00:00
|
|
|
|
2018-04-17 10:01:09 +00:00
|
|
|
/* guard against users setting a src pad or foreign pad as active pad */
|
|
|
|
if (pad != NULL) {
|
|
|
|
g_return_val_if_fail (GST_PAD_IS_SINK (pad), FALSE);
|
|
|
|
g_return_val_if_fail (GST_IS_SELECTOR_PAD (pad), FALSE);
|
|
|
|
g_return_val_if_fail (GST_PAD_PARENT (pad) == GST_ELEMENT_CAST (self),
|
|
|
|
FALSE);
|
|
|
|
}
|
|
|
|
|
2008-01-29 07:38:31 +00:00
|
|
|
old = GST_SELECTOR_PAD_CAST (self->active_sinkpad);
|
|
|
|
new = GST_SELECTOR_PAD_CAST (pad);
|
|
|
|
|
plugins/elements/gstinputselector.*: Figure out the locking a bit more.
Original commit message from CVS:
* plugins/elements/gstinputselector.c:
(gst_selector_pad_get_running_time), (gst_selector_pad_reset),
(gst_selector_pad_event), (gst_selector_pad_bufferalloc),
(gst_input_selector_wait), (gst_selector_pad_chain),
(gst_input_selector_class_init), (gst_input_selector_init),
(gst_input_selector_dispose), (gst_segment_set_start),
(gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_get_linked_pad),
(gst_input_selector_is_active_sinkpad),
(gst_input_selector_activate_sinkpad),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_change_state), (gst_input_selector_block),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Figure out the locking a bit more.
Mark buffers with discont after switching.
Fix initial segment forwarding, make sure to only forward one segment
regardless of what the sequence of buffers/segments is. See #522203.
Improve flushing when blocked.
Return NOT_LINKED when a stream is not selected.
Not API change for the switch signal in the docs.
Fix start/time/accum values of the new segment.
Correctly unlock and flush a blocking selector when going to READY.
2008-03-20 16:48:46 +00:00
|
|
|
GST_DEBUG_OBJECT (self, "setting active pad to %s:%s",
|
|
|
|
GST_DEBUG_PAD_NAME (new));
|
|
|
|
|
2011-03-16 17:19:11 +00:00
|
|
|
if (old)
|
|
|
|
old->pushed = FALSE;
|
|
|
|
if (new)
|
|
|
|
new->pushed = FALSE;
|
2008-01-29 07:38:31 +00:00
|
|
|
|
2011-05-20 10:18:48 +00:00
|
|
|
/* Send a new SEGMENT event on the new pad next */
|
|
|
|
if (old != new && new)
|
2012-04-16 08:22:53 +00:00
|
|
|
new->events_pending = TRUE;
|
2011-05-20 10:18:48 +00:00
|
|
|
|
2008-01-29 07:38:31 +00:00
|
|
|
active_pad_p = &self->active_sinkpad;
|
|
|
|
gst_object_replace ((GstObject **) active_pad_p, GST_OBJECT_CAST (pad));
|
2011-03-19 09:28:49 +00:00
|
|
|
|
2012-06-19 09:32:10 +00:00
|
|
|
if (old && old != new)
|
|
|
|
gst_pad_push_event (GST_PAD_CAST (old), gst_event_new_reconfigure ());
|
|
|
|
if (new)
|
|
|
|
gst_pad_push_event (GST_PAD_CAST (new), gst_event_new_reconfigure ());
|
|
|
|
|
2008-01-29 07:38:31 +00:00
|
|
|
GST_DEBUG_OBJECT (self, "New active pad is %" GST_PTR_FORMAT,
|
|
|
|
self->active_sinkpad);
|
|
|
|
|
2015-06-12 08:54:32 +00:00
|
|
|
if (old != new && new && new->eos) {
|
|
|
|
new->eos_sent = FALSE;
|
2014-12-24 02:13:51 +00:00
|
|
|
GST_INPUT_SELECTOR_BROADCAST (self);
|
|
|
|
}
|
|
|
|
|
2008-03-20 18:10:29 +00:00
|
|
|
return TRUE;
|
2008-01-29 07:38:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_input_selector_set_property (GObject * object, guint prop_id,
|
|
|
|
const GValue * value, GParamSpec * pspec)
|
|
|
|
{
|
|
|
|
GstInputSelector *sel = GST_INPUT_SELECTOR (object);
|
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
case PROP_ACTIVE_PAD:
|
2008-03-14 17:22:21 +00:00
|
|
|
{
|
|
|
|
GstPad *pad;
|
|
|
|
|
|
|
|
pad = g_value_get_object (value);
|
|
|
|
|
plugins/elements/gstinputselector.*: Figure out the locking a bit more.
Original commit message from CVS:
* plugins/elements/gstinputselector.c:
(gst_selector_pad_get_running_time), (gst_selector_pad_reset),
(gst_selector_pad_event), (gst_selector_pad_bufferalloc),
(gst_input_selector_wait), (gst_selector_pad_chain),
(gst_input_selector_class_init), (gst_input_selector_init),
(gst_input_selector_dispose), (gst_segment_set_start),
(gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_get_linked_pad),
(gst_input_selector_is_active_sinkpad),
(gst_input_selector_activate_sinkpad),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_change_state), (gst_input_selector_block),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Figure out the locking a bit more.
Mark buffers with discont after switching.
Fix initial segment forwarding, make sure to only forward one segment
regardless of what the sequence of buffers/segments is. See #522203.
Improve flushing when blocked.
Return NOT_LINKED when a stream is not selected.
Not API change for the switch signal in the docs.
Fix start/time/accum values of the new segment.
Correctly unlock and flush a blocking selector when going to READY.
2008-03-20 16:48:46 +00:00
|
|
|
GST_INPUT_SELECTOR_LOCK (sel);
|
2012-05-28 17:29:00 +00:00
|
|
|
|
|
|
|
#if DEBUG_CACHED_BUFFERS
|
|
|
|
gst_input_selector_debug_cached_buffers (sel);
|
|
|
|
#endif
|
|
|
|
|
2011-05-19 10:11:43 +00:00
|
|
|
gst_input_selector_set_active_pad (sel, pad);
|
2012-05-28 17:29:00 +00:00
|
|
|
|
|
|
|
#if DEBUG_CACHED_BUFFERS
|
|
|
|
gst_input_selector_debug_cached_buffers (sel);
|
|
|
|
#endif
|
|
|
|
|
plugins/elements/gstinputselector.*: Figure out the locking a bit more.
Original commit message from CVS:
* plugins/elements/gstinputselector.c:
(gst_selector_pad_get_running_time), (gst_selector_pad_reset),
(gst_selector_pad_event), (gst_selector_pad_bufferalloc),
(gst_input_selector_wait), (gst_selector_pad_chain),
(gst_input_selector_class_init), (gst_input_selector_init),
(gst_input_selector_dispose), (gst_segment_set_start),
(gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_get_linked_pad),
(gst_input_selector_is_active_sinkpad),
(gst_input_selector_activate_sinkpad),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_change_state), (gst_input_selector_block),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Figure out the locking a bit more.
Mark buffers with discont after switching.
Fix initial segment forwarding, make sure to only forward one segment
regardless of what the sequence of buffers/segments is. See #522203.
Improve flushing when blocked.
Return NOT_LINKED when a stream is not selected.
Not API change for the switch signal in the docs.
Fix start/time/accum values of the new segment.
Correctly unlock and flush a blocking selector when going to READY.
2008-03-20 16:48:46 +00:00
|
|
|
GST_INPUT_SELECTOR_UNLOCK (sel);
|
2008-01-29 07:38:31 +00:00
|
|
|
break;
|
2008-03-14 17:22:21 +00:00
|
|
|
}
|
2011-03-19 09:28:49 +00:00
|
|
|
case PROP_SYNC_STREAMS:
|
|
|
|
GST_INPUT_SELECTOR_LOCK (sel);
|
|
|
|
sel->sync_streams = g_value_get_boolean (value);
|
|
|
|
GST_INPUT_SELECTOR_UNLOCK (sel);
|
|
|
|
break;
|
2012-05-28 17:29:00 +00:00
|
|
|
case PROP_SYNC_MODE:
|
|
|
|
GST_INPUT_SELECTOR_LOCK (sel);
|
|
|
|
sel->sync_mode = g_value_get_enum (value);
|
|
|
|
GST_INPUT_SELECTOR_UNLOCK (sel);
|
|
|
|
break;
|
|
|
|
case PROP_CACHE_BUFFERS:
|
|
|
|
GST_INPUT_SELECTOR_LOCK (object);
|
|
|
|
sel->cache_buffers = g_value_get_boolean (value);
|
|
|
|
GST_INPUT_SELECTOR_UNLOCK (object);
|
|
|
|
break;
|
2008-01-29 07:38:31 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-28 17:29:00 +00:00
|
|
|
static void
|
|
|
|
gst_input_selector_active_pad_changed (GstInputSelector * sel,
|
|
|
|
GParamSpec * pspec, gpointer user_data)
|
|
|
|
{
|
|
|
|
/* Wake up all non-active pads in sync mode, they might be
|
|
|
|
* the active pad now */
|
|
|
|
if (sel->sync_streams)
|
|
|
|
GST_INPUT_SELECTOR_BROADCAST (sel);
|
|
|
|
}
|
|
|
|
|
2008-01-29 07:38:31 +00:00
|
|
|
static void
|
|
|
|
gst_input_selector_get_property (GObject * object, guint prop_id,
|
|
|
|
GValue * value, GParamSpec * pspec)
|
|
|
|
{
|
|
|
|
GstInputSelector *sel = GST_INPUT_SELECTOR (object);
|
|
|
|
|
|
|
|
switch (prop_id) {
|
plugins/elements/gstinputselector.*: Various cleanups.
Original commit message from CVS:
* plugins/elements/gstinputselector.c: (gst_selector_pad_class_init),
(gst_selector_pad_finalize), (gst_selector_pad_get_property),
(gst_selector_pad_event), (gst_input_selector_class_init),
(gst_input_selector_init), (gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_push_pending_stop),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Various cleanups.
Added tags to the pads.
Select active pad based on the pad object instead of its name.
Fix refcount in set_active_pad.
Add property to get the number of pads.
* plugins/elements/gstoutputselector.c:
(gst_output_selector_class_init),
(gst_output_selector_set_property),
(gst_output_selector_get_property):
Various cleanups.
Select the active pad based on the pad object instead of its name.
Fix locking when setting the active pad.
* plugins/elements/gstselector-marshal.list:
* tests/check/elements/selector.c: (cleanup_pad),
(selector_set_active_pad), (run_input_selector_buffer_count):
Fixes for pad instead of padname for pad selection.
2008-03-13 16:46:04 +00:00
|
|
|
case PROP_N_PADS:
|
plugins/elements/gstinputselector.*: Figure out the locking a bit more.
Original commit message from CVS:
* plugins/elements/gstinputselector.c:
(gst_selector_pad_get_running_time), (gst_selector_pad_reset),
(gst_selector_pad_event), (gst_selector_pad_bufferalloc),
(gst_input_selector_wait), (gst_selector_pad_chain),
(gst_input_selector_class_init), (gst_input_selector_init),
(gst_input_selector_dispose), (gst_segment_set_start),
(gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_get_linked_pad),
(gst_input_selector_is_active_sinkpad),
(gst_input_selector_activate_sinkpad),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_change_state), (gst_input_selector_block),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Figure out the locking a bit more.
Mark buffers with discont after switching.
Fix initial segment forwarding, make sure to only forward one segment
regardless of what the sequence of buffers/segments is. See #522203.
Improve flushing when blocked.
Return NOT_LINKED when a stream is not selected.
Not API change for the switch signal in the docs.
Fix start/time/accum values of the new segment.
Correctly unlock and flush a blocking selector when going to READY.
2008-03-20 16:48:46 +00:00
|
|
|
GST_INPUT_SELECTOR_LOCK (object);
|
plugins/elements/gstinputselector.*: Various cleanups.
Original commit message from CVS:
* plugins/elements/gstinputselector.c: (gst_selector_pad_class_init),
(gst_selector_pad_finalize), (gst_selector_pad_get_property),
(gst_selector_pad_event), (gst_input_selector_class_init),
(gst_input_selector_init), (gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_push_pending_stop),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Various cleanups.
Added tags to the pads.
Select active pad based on the pad object instead of its name.
Fix refcount in set_active_pad.
Add property to get the number of pads.
* plugins/elements/gstoutputselector.c:
(gst_output_selector_class_init),
(gst_output_selector_set_property),
(gst_output_selector_get_property):
Various cleanups.
Select the active pad based on the pad object instead of its name.
Fix locking when setting the active pad.
* plugins/elements/gstselector-marshal.list:
* tests/check/elements/selector.c: (cleanup_pad),
(selector_set_active_pad), (run_input_selector_buffer_count):
Fixes for pad instead of padname for pad selection.
2008-03-13 16:46:04 +00:00
|
|
|
g_value_set_uint (value, sel->n_pads);
|
plugins/elements/gstinputselector.*: Figure out the locking a bit more.
Original commit message from CVS:
* plugins/elements/gstinputselector.c:
(gst_selector_pad_get_running_time), (gst_selector_pad_reset),
(gst_selector_pad_event), (gst_selector_pad_bufferalloc),
(gst_input_selector_wait), (gst_selector_pad_chain),
(gst_input_selector_class_init), (gst_input_selector_init),
(gst_input_selector_dispose), (gst_segment_set_start),
(gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_get_linked_pad),
(gst_input_selector_is_active_sinkpad),
(gst_input_selector_activate_sinkpad),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_change_state), (gst_input_selector_block),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Figure out the locking a bit more.
Mark buffers with discont after switching.
Fix initial segment forwarding, make sure to only forward one segment
regardless of what the sequence of buffers/segments is. See #522203.
Improve flushing when blocked.
Return NOT_LINKED when a stream is not selected.
Not API change for the switch signal in the docs.
Fix start/time/accum values of the new segment.
Correctly unlock and flush a blocking selector when going to READY.
2008-03-20 16:48:46 +00:00
|
|
|
GST_INPUT_SELECTOR_UNLOCK (object);
|
plugins/elements/gstinputselector.*: Various cleanups.
Original commit message from CVS:
* plugins/elements/gstinputselector.c: (gst_selector_pad_class_init),
(gst_selector_pad_finalize), (gst_selector_pad_get_property),
(gst_selector_pad_event), (gst_input_selector_class_init),
(gst_input_selector_init), (gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_push_pending_stop),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Various cleanups.
Added tags to the pads.
Select active pad based on the pad object instead of its name.
Fix refcount in set_active_pad.
Add property to get the number of pads.
* plugins/elements/gstoutputselector.c:
(gst_output_selector_class_init),
(gst_output_selector_set_property),
(gst_output_selector_get_property):
Various cleanups.
Select the active pad based on the pad object instead of its name.
Fix locking when setting the active pad.
* plugins/elements/gstselector-marshal.list:
* tests/check/elements/selector.c: (cleanup_pad),
(selector_set_active_pad), (run_input_selector_buffer_count):
Fixes for pad instead of padname for pad selection.
2008-03-13 16:46:04 +00:00
|
|
|
break;
|
|
|
|
case PROP_ACTIVE_PAD:
|
plugins/elements/gstinputselector.*: Figure out the locking a bit more.
Original commit message from CVS:
* plugins/elements/gstinputselector.c:
(gst_selector_pad_get_running_time), (gst_selector_pad_reset),
(gst_selector_pad_event), (gst_selector_pad_bufferalloc),
(gst_input_selector_wait), (gst_selector_pad_chain),
(gst_input_selector_class_init), (gst_input_selector_init),
(gst_input_selector_dispose), (gst_segment_set_start),
(gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_get_linked_pad),
(gst_input_selector_is_active_sinkpad),
(gst_input_selector_activate_sinkpad),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_change_state), (gst_input_selector_block),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Figure out the locking a bit more.
Mark buffers with discont after switching.
Fix initial segment forwarding, make sure to only forward one segment
regardless of what the sequence of buffers/segments is. See #522203.
Improve flushing when blocked.
Return NOT_LINKED when a stream is not selected.
Not API change for the switch signal in the docs.
Fix start/time/accum values of the new segment.
Correctly unlock and flush a blocking selector when going to READY.
2008-03-20 16:48:46 +00:00
|
|
|
GST_INPUT_SELECTOR_LOCK (object);
|
plugins/elements/gstinputselector.*: Various cleanups.
Original commit message from CVS:
* plugins/elements/gstinputselector.c: (gst_selector_pad_class_init),
(gst_selector_pad_finalize), (gst_selector_pad_get_property),
(gst_selector_pad_event), (gst_input_selector_class_init),
(gst_input_selector_init), (gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_push_pending_stop),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Various cleanups.
Added tags to the pads.
Select active pad based on the pad object instead of its name.
Fix refcount in set_active_pad.
Add property to get the number of pads.
* plugins/elements/gstoutputselector.c:
(gst_output_selector_class_init),
(gst_output_selector_set_property),
(gst_output_selector_get_property):
Various cleanups.
Select the active pad based on the pad object instead of its name.
Fix locking when setting the active pad.
* plugins/elements/gstselector-marshal.list:
* tests/check/elements/selector.c: (cleanup_pad),
(selector_set_active_pad), (run_input_selector_buffer_count):
Fixes for pad instead of padname for pad selection.
2008-03-13 16:46:04 +00:00
|
|
|
g_value_set_object (value, sel->active_sinkpad);
|
plugins/elements/gstinputselector.*: Figure out the locking a bit more.
Original commit message from CVS:
* plugins/elements/gstinputselector.c:
(gst_selector_pad_get_running_time), (gst_selector_pad_reset),
(gst_selector_pad_event), (gst_selector_pad_bufferalloc),
(gst_input_selector_wait), (gst_selector_pad_chain),
(gst_input_selector_class_init), (gst_input_selector_init),
(gst_input_selector_dispose), (gst_segment_set_start),
(gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_get_linked_pad),
(gst_input_selector_is_active_sinkpad),
(gst_input_selector_activate_sinkpad),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_change_state), (gst_input_selector_block),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Figure out the locking a bit more.
Mark buffers with discont after switching.
Fix initial segment forwarding, make sure to only forward one segment
regardless of what the sequence of buffers/segments is. See #522203.
Improve flushing when blocked.
Return NOT_LINKED when a stream is not selected.
Not API change for the switch signal in the docs.
Fix start/time/accum values of the new segment.
Correctly unlock and flush a blocking selector when going to READY.
2008-03-20 16:48:46 +00:00
|
|
|
GST_INPUT_SELECTOR_UNLOCK (object);
|
2008-01-29 07:38:31 +00:00
|
|
|
break;
|
2011-03-19 09:28:49 +00:00
|
|
|
case PROP_SYNC_STREAMS:
|
|
|
|
GST_INPUT_SELECTOR_LOCK (object);
|
|
|
|
g_value_set_boolean (value, sel->sync_streams);
|
|
|
|
GST_INPUT_SELECTOR_UNLOCK (object);
|
|
|
|
break;
|
2012-05-28 17:29:00 +00:00
|
|
|
case PROP_SYNC_MODE:
|
|
|
|
GST_INPUT_SELECTOR_LOCK (object);
|
|
|
|
g_value_set_enum (value, sel->sync_mode);
|
|
|
|
GST_INPUT_SELECTOR_UNLOCK (object);
|
|
|
|
break;
|
|
|
|
case PROP_CACHE_BUFFERS:
|
|
|
|
GST_INPUT_SELECTOR_LOCK (object);
|
|
|
|
g_value_set_boolean (value, sel->cache_buffers);
|
|
|
|
GST_INPUT_SELECTOR_UNLOCK (object);
|
|
|
|
break;
|
2008-01-29 07:38:31 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstPad *
|
2011-04-01 06:46:14 +00:00
|
|
|
gst_input_selector_get_linked_pad (GstInputSelector * sel, GstPad * pad,
|
|
|
|
gboolean strict)
|
2008-01-29 07:38:31 +00:00
|
|
|
{
|
|
|
|
GstPad *otherpad = NULL;
|
|
|
|
|
plugins/elements/gstinputselector.*: Figure out the locking a bit more.
Original commit message from CVS:
* plugins/elements/gstinputselector.c:
(gst_selector_pad_get_running_time), (gst_selector_pad_reset),
(gst_selector_pad_event), (gst_selector_pad_bufferalloc),
(gst_input_selector_wait), (gst_selector_pad_chain),
(gst_input_selector_class_init), (gst_input_selector_init),
(gst_input_selector_dispose), (gst_segment_set_start),
(gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_get_linked_pad),
(gst_input_selector_is_active_sinkpad),
(gst_input_selector_activate_sinkpad),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_change_state), (gst_input_selector_block),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Figure out the locking a bit more.
Mark buffers with discont after switching.
Fix initial segment forwarding, make sure to only forward one segment
regardless of what the sequence of buffers/segments is. See #522203.
Improve flushing when blocked.
Return NOT_LINKED when a stream is not selected.
Not API change for the switch signal in the docs.
Fix start/time/accum values of the new segment.
Correctly unlock and flush a blocking selector when going to READY.
2008-03-20 16:48:46 +00:00
|
|
|
GST_INPUT_SELECTOR_LOCK (sel);
|
2008-01-29 07:38:31 +00:00
|
|
|
if (pad == sel->srcpad)
|
|
|
|
otherpad = sel->active_sinkpad;
|
|
|
|
else if (pad == sel->active_sinkpad || !strict)
|
|
|
|
otherpad = sel->srcpad;
|
|
|
|
if (otherpad)
|
|
|
|
gst_object_ref (otherpad);
|
plugins/elements/gstinputselector.*: Figure out the locking a bit more.
Original commit message from CVS:
* plugins/elements/gstinputselector.c:
(gst_selector_pad_get_running_time), (gst_selector_pad_reset),
(gst_selector_pad_event), (gst_selector_pad_bufferalloc),
(gst_input_selector_wait), (gst_selector_pad_chain),
(gst_input_selector_class_init), (gst_input_selector_init),
(gst_input_selector_dispose), (gst_segment_set_start),
(gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_get_linked_pad),
(gst_input_selector_is_active_sinkpad),
(gst_input_selector_activate_sinkpad),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_change_state), (gst_input_selector_block),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Figure out the locking a bit more.
Mark buffers with discont after switching.
Fix initial segment forwarding, make sure to only forward one segment
regardless of what the sequence of buffers/segments is. See #522203.
Improve flushing when blocked.
Return NOT_LINKED when a stream is not selected.
Not API change for the switch signal in the docs.
Fix start/time/accum values of the new segment.
Correctly unlock and flush a blocking selector when going to READY.
2008-03-20 16:48:46 +00:00
|
|
|
GST_INPUT_SELECTOR_UNLOCK (sel);
|
|
|
|
|
2008-01-29 07:38:31 +00:00
|
|
|
return otherpad;
|
|
|
|
}
|
|
|
|
|
2008-09-01 13:23:03 +00:00
|
|
|
static gboolean
|
2011-11-17 11:40:45 +00:00
|
|
|
gst_input_selector_event (GstPad * pad, GstObject * parent, GstEvent * event)
|
2008-09-01 13:23:03 +00:00
|
|
|
{
|
2011-04-01 06:46:14 +00:00
|
|
|
GstInputSelector *sel;
|
2011-05-20 10:00:11 +00:00
|
|
|
gboolean result = FALSE;
|
|
|
|
GstIterator *iter;
|
|
|
|
gboolean done = FALSE;
|
|
|
|
GValue item = { 0, };
|
|
|
|
GstPad *eventpad;
|
|
|
|
GList *pushed_pads = NULL;
|
2008-09-01 13:23:03 +00:00
|
|
|
|
2011-11-17 11:40:45 +00:00
|
|
|
sel = GST_INPUT_SELECTOR (parent);
|
2011-05-20 10:00:11 +00:00
|
|
|
/* Send upstream events to all sinkpads */
|
|
|
|
iter = gst_element_iterate_sink_pads (GST_ELEMENT_CAST (sel));
|
2008-09-01 13:23:03 +00:00
|
|
|
|
2011-05-20 10:00:11 +00:00
|
|
|
/* This is now essentially a copy of gst_pad_event_default_dispatch
|
|
|
|
* with a different iterator */
|
|
|
|
while (!done) {
|
|
|
|
switch (gst_iterator_next (iter, &item)) {
|
|
|
|
case GST_ITERATOR_OK:
|
|
|
|
eventpad = g_value_get_object (&item);
|
2011-04-01 06:46:14 +00:00
|
|
|
|
2011-05-20 10:00:11 +00:00
|
|
|
/* if already pushed, skip */
|
|
|
|
if (g_list_find (pushed_pads, eventpad)) {
|
|
|
|
g_value_reset (&item);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2011-05-20 10:16:59 +00:00
|
|
|
gst_event_ref (event);
|
|
|
|
result |= gst_pad_push_event (eventpad, event);
|
2011-05-20 10:00:11 +00:00
|
|
|
|
|
|
|
g_value_reset (&item);
|
|
|
|
break;
|
|
|
|
case GST_ITERATOR_RESYNC:
|
|
|
|
/* We don't reset the result here because we don't push the event
|
|
|
|
* again on pads that got the event already and because we need
|
|
|
|
* to consider the result of the previous pushes */
|
|
|
|
gst_iterator_resync (iter);
|
|
|
|
break;
|
|
|
|
case GST_ITERATOR_ERROR:
|
2011-05-20 10:16:59 +00:00
|
|
|
GST_ERROR_OBJECT (pad, "Could not iterate over sinkpads");
|
2011-05-20 10:00:11 +00:00
|
|
|
done = TRUE;
|
|
|
|
break;
|
|
|
|
case GST_ITERATOR_DONE:
|
|
|
|
done = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
g_value_unset (&item);
|
|
|
|
gst_iterator_free (iter);
|
|
|
|
|
|
|
|
g_list_free (pushed_pads);
|
|
|
|
|
|
|
|
gst_event_unref (event);
|
|
|
|
|
|
|
|
return result;
|
2008-09-01 13:23:03 +00:00
|
|
|
}
|
|
|
|
|
2018-07-31 16:25:03 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
gboolean live;
|
2018-08-31 09:15:16 +00:00
|
|
|
GstClockTime min, max;
|
2018-07-31 16:25:03 +00:00
|
|
|
} LatencyFoldData;
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
query_latency_default_fold (const GValue * item, GValue * ret,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
GstPad *pad = g_value_get_object (item), *peer;
|
|
|
|
LatencyFoldData *fold_data = user_data;
|
|
|
|
GstQuery *query;
|
|
|
|
gboolean res = FALSE;
|
|
|
|
|
|
|
|
query = gst_query_new_latency ();
|
|
|
|
|
|
|
|
peer = gst_pad_get_peer (pad);
|
|
|
|
if (peer) {
|
|
|
|
res = gst_pad_peer_query (pad, query);
|
|
|
|
} else {
|
|
|
|
GST_LOG_OBJECT (pad, "No peer pad found, ignoring this pad");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (res) {
|
|
|
|
gboolean live;
|
|
|
|
GstClockTime min, max;
|
|
|
|
|
|
|
|
gst_query_parse_latency (query, &live, &min, &max);
|
|
|
|
|
|
|
|
GST_LOG_OBJECT (pad, "got latency live:%s min:%" G_GINT64_FORMAT
|
|
|
|
" max:%" G_GINT64_FORMAT, live ? "true" : "false", min, max);
|
|
|
|
|
2018-08-31 08:47:03 +00:00
|
|
|
if (live) {
|
2018-08-31 09:15:16 +00:00
|
|
|
if (min > fold_data->min)
|
|
|
|
fold_data->min = min;
|
|
|
|
|
|
|
|
if (fold_data->max == GST_CLOCK_TIME_NONE)
|
|
|
|
fold_data->max = max;
|
|
|
|
else if (max < fold_data->max)
|
|
|
|
fold_data->max = max;
|
2018-07-31 16:25:03 +00:00
|
|
|
fold_data->live = live;
|
|
|
|
}
|
|
|
|
} else if (peer) {
|
|
|
|
GST_DEBUG_OBJECT (pad, "latency query failed");
|
|
|
|
g_value_set_boolean (ret, FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
gst_query_unref (query);
|
|
|
|
if (peer)
|
|
|
|
gst_object_unref (peer);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_input_selector_query_latency (GstInputSelector * sel, GstPad * pad,
|
|
|
|
GstQuery * query)
|
|
|
|
{
|
|
|
|
GstIterator *it;
|
|
|
|
GstIteratorResult res;
|
|
|
|
GValue ret = G_VALUE_INIT;
|
|
|
|
gboolean query_ret;
|
|
|
|
LatencyFoldData fold_data;
|
|
|
|
|
|
|
|
/* This is basically gst_pad_query_latency_default() but with a different
|
|
|
|
* iterator. We query all sinkpads! */
|
|
|
|
it = gst_element_iterate_sink_pads (GST_ELEMENT_CAST (sel));
|
|
|
|
if (!it) {
|
|
|
|
GST_DEBUG_OBJECT (pad, "Can't iterate internal links");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_value_init (&ret, G_TYPE_BOOLEAN);
|
|
|
|
|
|
|
|
retry:
|
|
|
|
fold_data.live = FALSE;
|
2018-08-31 09:15:16 +00:00
|
|
|
fold_data.min = 0;
|
|
|
|
fold_data.max = GST_CLOCK_TIME_NONE;
|
2018-07-31 16:25:03 +00:00
|
|
|
|
|
|
|
g_value_set_boolean (&ret, TRUE);
|
|
|
|
res = gst_iterator_fold (it, query_latency_default_fold, &ret, &fold_data);
|
|
|
|
switch (res) {
|
|
|
|
case GST_ITERATOR_OK:
|
|
|
|
g_assert_not_reached ();
|
|
|
|
break;
|
|
|
|
case GST_ITERATOR_DONE:
|
|
|
|
break;
|
|
|
|
case GST_ITERATOR_ERROR:
|
|
|
|
g_value_set_boolean (&ret, FALSE);
|
|
|
|
break;
|
|
|
|
case GST_ITERATOR_RESYNC:
|
|
|
|
gst_iterator_resync (it);
|
|
|
|
goto retry;
|
|
|
|
default:
|
|
|
|
g_assert_not_reached ();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
gst_iterator_free (it);
|
|
|
|
|
|
|
|
query_ret = g_value_get_boolean (&ret);
|
|
|
|
if (query_ret) {
|
|
|
|
GST_LOG_OBJECT (pad, "got latency live:%s min:%" G_GINT64_FORMAT
|
2018-08-31 09:15:16 +00:00
|
|
|
" max:%" G_GINT64_FORMAT, fold_data.live ? "true" : "false",
|
|
|
|
fold_data.min, fold_data.max);
|
2018-07-31 16:25:03 +00:00
|
|
|
|
2018-08-31 09:15:16 +00:00
|
|
|
if (fold_data.min > fold_data.max) {
|
2018-07-31 16:25:03 +00:00
|
|
|
GST_ERROR_OBJECT (pad, "minimum latency bigger than maximum latency");
|
|
|
|
}
|
|
|
|
|
2018-08-31 09:15:16 +00:00
|
|
|
gst_query_set_latency (query, fold_data.live, fold_data.min, fold_data.max);
|
2018-07-31 16:25:03 +00:00
|
|
|
} else {
|
|
|
|
GST_LOG_OBJECT (pad, "latency query failed");
|
|
|
|
}
|
|
|
|
|
|
|
|
return query_ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_input_selector_query (GstPad * pad, GstObject * parent, GstQuery * query)
|
|
|
|
{
|
|
|
|
GstInputSelector *sel = GST_INPUT_SELECTOR (parent);
|
|
|
|
|
|
|
|
switch (GST_QUERY_TYPE (query)) {
|
|
|
|
case GST_QUERY_LATENCY:
|
|
|
|
/* Query all sink pads for the latency, not just the active one */
|
|
|
|
return gst_input_selector_query_latency (sel, pad, query);
|
|
|
|
default:
|
|
|
|
return gst_pad_query_default (pad, parent, query);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-01-29 07:38:31 +00:00
|
|
|
/* check if the pad is the active sinkpad */
|
2009-11-03 17:14:12 +00:00
|
|
|
static inline gboolean
|
2008-01-29 07:38:31 +00:00
|
|
|
gst_input_selector_is_active_sinkpad (GstInputSelector * sel, GstPad * pad)
|
|
|
|
{
|
|
|
|
gboolean res;
|
|
|
|
|
plugins/elements/gstinputselector.*: Figure out the locking a bit more.
Original commit message from CVS:
* plugins/elements/gstinputselector.c:
(gst_selector_pad_get_running_time), (gst_selector_pad_reset),
(gst_selector_pad_event), (gst_selector_pad_bufferalloc),
(gst_input_selector_wait), (gst_selector_pad_chain),
(gst_input_selector_class_init), (gst_input_selector_init),
(gst_input_selector_dispose), (gst_segment_set_start),
(gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_get_linked_pad),
(gst_input_selector_is_active_sinkpad),
(gst_input_selector_activate_sinkpad),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_change_state), (gst_input_selector_block),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Figure out the locking a bit more.
Mark buffers with discont after switching.
Fix initial segment forwarding, make sure to only forward one segment
regardless of what the sequence of buffers/segments is. See #522203.
Improve flushing when blocked.
Return NOT_LINKED when a stream is not selected.
Not API change for the switch signal in the docs.
Fix start/time/accum values of the new segment.
Correctly unlock and flush a blocking selector when going to READY.
2008-03-20 16:48:46 +00:00
|
|
|
GST_INPUT_SELECTOR_LOCK (sel);
|
2008-01-29 07:38:31 +00:00
|
|
|
res = (pad == sel->active_sinkpad);
|
plugins/elements/gstinputselector.*: Figure out the locking a bit more.
Original commit message from CVS:
* plugins/elements/gstinputselector.c:
(gst_selector_pad_get_running_time), (gst_selector_pad_reset),
(gst_selector_pad_event), (gst_selector_pad_bufferalloc),
(gst_input_selector_wait), (gst_selector_pad_chain),
(gst_input_selector_class_init), (gst_input_selector_init),
(gst_input_selector_dispose), (gst_segment_set_start),
(gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_get_linked_pad),
(gst_input_selector_is_active_sinkpad),
(gst_input_selector_activate_sinkpad),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_change_state), (gst_input_selector_block),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Figure out the locking a bit more.
Mark buffers with discont after switching.
Fix initial segment forwarding, make sure to only forward one segment
regardless of what the sequence of buffers/segments is. See #522203.
Improve flushing when blocked.
Return NOT_LINKED when a stream is not selected.
Not API change for the switch signal in the docs.
Fix start/time/accum values of the new segment.
Correctly unlock and flush a blocking selector when going to READY.
2008-03-20 16:48:46 +00:00
|
|
|
GST_INPUT_SELECTOR_UNLOCK (sel);
|
2008-01-29 07:38:31 +00:00
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
plugins/elements/gstinputselector.*: Figure out the locking a bit more.
Original commit message from CVS:
* plugins/elements/gstinputselector.c:
(gst_selector_pad_get_running_time), (gst_selector_pad_reset),
(gst_selector_pad_event), (gst_selector_pad_bufferalloc),
(gst_input_selector_wait), (gst_selector_pad_chain),
(gst_input_selector_class_init), (gst_input_selector_init),
(gst_input_selector_dispose), (gst_segment_set_start),
(gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_get_linked_pad),
(gst_input_selector_is_active_sinkpad),
(gst_input_selector_activate_sinkpad),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_change_state), (gst_input_selector_block),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Figure out the locking a bit more.
Mark buffers with discont after switching.
Fix initial segment forwarding, make sure to only forward one segment
regardless of what the sequence of buffers/segments is. See #522203.
Improve flushing when blocked.
Return NOT_LINKED when a stream is not selected.
Not API change for the switch signal in the docs.
Fix start/time/accum values of the new segment.
Correctly unlock and flush a blocking selector when going to READY.
2008-03-20 16:48:46 +00:00
|
|
|
/* Get or create the active sinkpad, must be called with SELECTOR_LOCK */
|
2008-01-29 07:38:31 +00:00
|
|
|
static GstPad *
|
2014-11-19 12:08:45 +00:00
|
|
|
gst_input_selector_get_active_sinkpad (GstInputSelector * sel)
|
2008-01-29 07:38:31 +00:00
|
|
|
{
|
|
|
|
GstPad *active_sinkpad;
|
|
|
|
|
|
|
|
active_sinkpad = sel->active_sinkpad;
|
2014-10-03 12:01:59 +00:00
|
|
|
if (active_sinkpad == NULL) {
|
2012-07-27 15:41:43 +00:00
|
|
|
GValue item = G_VALUE_INIT;
|
|
|
|
GstIterator *iter = gst_element_iterate_sink_pads (GST_ELEMENT_CAST (sel));
|
|
|
|
GstIteratorResult ires;
|
|
|
|
|
|
|
|
while ((ires = gst_iterator_next (iter, &item)) == GST_ITERATOR_RESYNC)
|
|
|
|
gst_iterator_resync (iter);
|
|
|
|
if (ires == GST_ITERATOR_OK) {
|
|
|
|
/* If no pad is currently selected, we return the first usable pad to
|
|
|
|
* guarantee consistency */
|
|
|
|
|
|
|
|
active_sinkpad = sel->active_sinkpad = g_value_dup_object (&item);
|
|
|
|
g_value_reset (&item);
|
|
|
|
GST_DEBUG_OBJECT (sel, "Activating pad %s:%s",
|
|
|
|
GST_DEBUG_PAD_NAME (active_sinkpad));
|
|
|
|
} else
|
|
|
|
GST_WARNING_OBJECT (sel, "Couldn't find a default sink pad");
|
|
|
|
gst_iterator_free (iter);
|
2008-01-29 07:38:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return active_sinkpad;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstPad *
|
|
|
|
gst_input_selector_request_new_pad (GstElement * element,
|
2011-05-10 14:41:36 +00:00
|
|
|
GstPadTemplate * templ, const gchar * unused, const GstCaps * caps)
|
2008-01-29 07:38:31 +00:00
|
|
|
{
|
|
|
|
GstInputSelector *sel;
|
|
|
|
gchar *name = NULL;
|
|
|
|
GstPad *sinkpad = NULL;
|
|
|
|
|
|
|
|
g_return_val_if_fail (templ->direction == GST_PAD_SINK, NULL);
|
plugins/elements/gstinputselector.*: Figure out the locking a bit more.
Original commit message from CVS:
* plugins/elements/gstinputselector.c:
(gst_selector_pad_get_running_time), (gst_selector_pad_reset),
(gst_selector_pad_event), (gst_selector_pad_bufferalloc),
(gst_input_selector_wait), (gst_selector_pad_chain),
(gst_input_selector_class_init), (gst_input_selector_init),
(gst_input_selector_dispose), (gst_segment_set_start),
(gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_get_linked_pad),
(gst_input_selector_is_active_sinkpad),
(gst_input_selector_activate_sinkpad),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_change_state), (gst_input_selector_block),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Figure out the locking a bit more.
Mark buffers with discont after switching.
Fix initial segment forwarding, make sure to only forward one segment
regardless of what the sequence of buffers/segments is. See #522203.
Improve flushing when blocked.
Return NOT_LINKED when a stream is not selected.
Not API change for the switch signal in the docs.
Fix start/time/accum values of the new segment.
Correctly unlock and flush a blocking selector when going to READY.
2008-03-20 16:48:46 +00:00
|
|
|
|
|
|
|
sel = GST_INPUT_SELECTOR (element);
|
|
|
|
|
|
|
|
GST_INPUT_SELECTOR_LOCK (sel);
|
|
|
|
|
2014-10-03 11:47:42 +00:00
|
|
|
GST_LOG_OBJECT (sel, "Creating new pad sink_%u", sel->padcount);
|
2011-11-03 16:49:45 +00:00
|
|
|
name = g_strdup_printf ("sink_%u", sel->padcount++);
|
2008-01-29 07:38:31 +00:00
|
|
|
sinkpad = g_object_new (GST_TYPE_SELECTOR_PAD,
|
|
|
|
"name", name, "direction", templ->direction, "template", templ, NULL);
|
|
|
|
g_free (name);
|
plugins/elements/gstinputselector.*: Figure out the locking a bit more.
Original commit message from CVS:
* plugins/elements/gstinputselector.c:
(gst_selector_pad_get_running_time), (gst_selector_pad_reset),
(gst_selector_pad_event), (gst_selector_pad_bufferalloc),
(gst_input_selector_wait), (gst_selector_pad_chain),
(gst_input_selector_class_init), (gst_input_selector_init),
(gst_input_selector_dispose), (gst_segment_set_start),
(gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_get_linked_pad),
(gst_input_selector_is_active_sinkpad),
(gst_input_selector_activate_sinkpad),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_change_state), (gst_input_selector_block),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Figure out the locking a bit more.
Mark buffers with discont after switching.
Fix initial segment forwarding, make sure to only forward one segment
regardless of what the sequence of buffers/segments is. See #522203.
Improve flushing when blocked.
Return NOT_LINKED when a stream is not selected.
Not API change for the switch signal in the docs.
Fix start/time/accum values of the new segment.
Correctly unlock and flush a blocking selector when going to READY.
2008-03-20 16:48:46 +00:00
|
|
|
|
plugins/elements/gstinputselector.*: Various cleanups.
Original commit message from CVS:
* plugins/elements/gstinputselector.c: (gst_selector_pad_class_init),
(gst_selector_pad_finalize), (gst_selector_pad_get_property),
(gst_selector_pad_event), (gst_input_selector_class_init),
(gst_input_selector_init), (gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_push_pending_stop),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Various cleanups.
Added tags to the pads.
Select active pad based on the pad object instead of its name.
Fix refcount in set_active_pad.
Add property to get the number of pads.
* plugins/elements/gstoutputselector.c:
(gst_output_selector_class_init),
(gst_output_selector_set_property),
(gst_output_selector_get_property):
Various cleanups.
Select the active pad based on the pad object instead of its name.
Fix locking when setting the active pad.
* plugins/elements/gstselector-marshal.list:
* tests/check/elements/selector.c: (cleanup_pad),
(selector_set_active_pad), (run_input_selector_buffer_count):
Fixes for pad instead of padname for pad selection.
2008-03-13 16:46:04 +00:00
|
|
|
sel->n_pads++;
|
2008-01-29 07:38:31 +00:00
|
|
|
|
|
|
|
gst_pad_set_event_function (sinkpad,
|
|
|
|
GST_DEBUG_FUNCPTR (gst_selector_pad_event));
|
2011-11-09 10:22:36 +00:00
|
|
|
gst_pad_set_query_function (sinkpad,
|
|
|
|
GST_DEBUG_FUNCPTR (gst_selector_pad_query));
|
2008-01-29 07:38:31 +00:00
|
|
|
gst_pad_set_chain_function (sinkpad,
|
|
|
|
GST_DEBUG_FUNCPTR (gst_selector_pad_chain));
|
2009-08-19 15:05:32 +00:00
|
|
|
gst_pad_set_iterate_internal_links_function (sinkpad,
|
|
|
|
GST_DEBUG_FUNCPTR (gst_selector_pad_iterate_linked_pads));
|
2008-01-29 07:38:31 +00:00
|
|
|
|
2011-11-16 11:36:51 +00:00
|
|
|
GST_OBJECT_FLAG_SET (sinkpad, GST_PAD_FLAG_PROXY_CAPS);
|
2012-02-02 11:32:07 +00:00
|
|
|
GST_OBJECT_FLAG_SET (sinkpad, GST_PAD_FLAG_PROXY_ALLOCATION);
|
2008-01-29 07:38:31 +00:00
|
|
|
gst_pad_set_active (sinkpad, TRUE);
|
|
|
|
gst_element_add_pad (GST_ELEMENT (sel), sinkpad);
|
plugins/elements/gstinputselector.*: Figure out the locking a bit more.
Original commit message from CVS:
* plugins/elements/gstinputselector.c:
(gst_selector_pad_get_running_time), (gst_selector_pad_reset),
(gst_selector_pad_event), (gst_selector_pad_bufferalloc),
(gst_input_selector_wait), (gst_selector_pad_chain),
(gst_input_selector_class_init), (gst_input_selector_init),
(gst_input_selector_dispose), (gst_segment_set_start),
(gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_get_linked_pad),
(gst_input_selector_is_active_sinkpad),
(gst_input_selector_activate_sinkpad),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_change_state), (gst_input_selector_block),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Figure out the locking a bit more.
Mark buffers with discont after switching.
Fix initial segment forwarding, make sure to only forward one segment
regardless of what the sequence of buffers/segments is. See #522203.
Improve flushing when blocked.
Return NOT_LINKED when a stream is not selected.
Not API change for the switch signal in the docs.
Fix start/time/accum values of the new segment.
Correctly unlock and flush a blocking selector when going to READY.
2008-03-20 16:48:46 +00:00
|
|
|
GST_INPUT_SELECTOR_UNLOCK (sel);
|
plugins/elements/gstinputselector.*: Various cleanups.
Original commit message from CVS:
* plugins/elements/gstinputselector.c: (gst_selector_pad_class_init),
(gst_selector_pad_finalize), (gst_selector_pad_get_property),
(gst_selector_pad_event), (gst_input_selector_class_init),
(gst_input_selector_init), (gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_push_pending_stop),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Various cleanups.
Added tags to the pads.
Select active pad based on the pad object instead of its name.
Fix refcount in set_active_pad.
Add property to get the number of pads.
* plugins/elements/gstoutputselector.c:
(gst_output_selector_class_init),
(gst_output_selector_set_property),
(gst_output_selector_get_property):
Various cleanups.
Select the active pad based on the pad object instead of its name.
Fix locking when setting the active pad.
* plugins/elements/gstselector-marshal.list:
* tests/check/elements/selector.c: (cleanup_pad),
(selector_set_active_pad), (run_input_selector_buffer_count):
Fixes for pad instead of padname for pad selection.
2008-03-13 16:46:04 +00:00
|
|
|
|
2008-01-29 07:38:31 +00:00
|
|
|
return sinkpad;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_input_selector_release_pad (GstElement * element, GstPad * pad)
|
|
|
|
{
|
|
|
|
GstInputSelector *sel;
|
|
|
|
|
|
|
|
sel = GST_INPUT_SELECTOR (element);
|
|
|
|
GST_LOG_OBJECT (sel, "Releasing pad %s:%s", GST_DEBUG_PAD_NAME (pad));
|
|
|
|
|
plugins/elements/gstinputselector.*: Figure out the locking a bit more.
Original commit message from CVS:
* plugins/elements/gstinputselector.c:
(gst_selector_pad_get_running_time), (gst_selector_pad_reset),
(gst_selector_pad_event), (gst_selector_pad_bufferalloc),
(gst_input_selector_wait), (gst_selector_pad_chain),
(gst_input_selector_class_init), (gst_input_selector_init),
(gst_input_selector_dispose), (gst_segment_set_start),
(gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_get_linked_pad),
(gst_input_selector_is_active_sinkpad),
(gst_input_selector_activate_sinkpad),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_change_state), (gst_input_selector_block),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Figure out the locking a bit more.
Mark buffers with discont after switching.
Fix initial segment forwarding, make sure to only forward one segment
regardless of what the sequence of buffers/segments is. See #522203.
Improve flushing when blocked.
Return NOT_LINKED when a stream is not selected.
Not API change for the switch signal in the docs.
Fix start/time/accum values of the new segment.
Correctly unlock and flush a blocking selector when going to READY.
2008-03-20 16:48:46 +00:00
|
|
|
GST_INPUT_SELECTOR_LOCK (sel);
|
2008-01-29 07:38:31 +00:00
|
|
|
/* if the pad was the active pad, makes us select a new one */
|
|
|
|
if (sel->active_sinkpad == pad) {
|
|
|
|
GST_DEBUG_OBJECT (sel, "Deactivating pad %s:%s", GST_DEBUG_PAD_NAME (pad));
|
2009-01-31 02:27:03 +00:00
|
|
|
gst_object_unref (sel->active_sinkpad);
|
2008-01-29 07:38:31 +00:00
|
|
|
sel->active_sinkpad = NULL;
|
|
|
|
}
|
plugins/elements/gstinputselector.*: Various cleanups.
Original commit message from CVS:
* plugins/elements/gstinputselector.c: (gst_selector_pad_class_init),
(gst_selector_pad_finalize), (gst_selector_pad_get_property),
(gst_selector_pad_event), (gst_input_selector_class_init),
(gst_input_selector_init), (gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_push_pending_stop),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Various cleanups.
Added tags to the pads.
Select active pad based on the pad object instead of its name.
Fix refcount in set_active_pad.
Add property to get the number of pads.
* plugins/elements/gstoutputselector.c:
(gst_output_selector_class_init),
(gst_output_selector_set_property),
(gst_output_selector_get_property):
Various cleanups.
Select the active pad based on the pad object instead of its name.
Fix locking when setting the active pad.
* plugins/elements/gstselector-marshal.list:
* tests/check/elements/selector.c: (cleanup_pad),
(selector_set_active_pad), (run_input_selector_buffer_count):
Fixes for pad instead of padname for pad selection.
2008-03-13 16:46:04 +00:00
|
|
|
sel->n_pads--;
|
2013-07-12 08:08:26 +00:00
|
|
|
GST_INPUT_SELECTOR_UNLOCK (sel);
|
2008-01-29 07:38:31 +00:00
|
|
|
|
|
|
|
gst_pad_set_active (pad, FALSE);
|
|
|
|
gst_element_remove_pad (GST_ELEMENT (sel), pad);
|
|
|
|
}
|
|
|
|
|
2008-09-08 20:27:23 +00:00
|
|
|
static void
|
|
|
|
gst_input_selector_reset (GstInputSelector * sel)
|
|
|
|
{
|
|
|
|
GList *walk;
|
|
|
|
|
|
|
|
GST_INPUT_SELECTOR_LOCK (sel);
|
|
|
|
/* clear active pad */
|
|
|
|
if (sel->active_sinkpad) {
|
|
|
|
gst_object_unref (sel->active_sinkpad);
|
|
|
|
sel->active_sinkpad = NULL;
|
|
|
|
}
|
2015-04-24 19:51:24 +00:00
|
|
|
sel->eos_sent = FALSE;
|
|
|
|
|
2008-09-08 20:27:23 +00:00
|
|
|
/* reset each of our sinkpads state */
|
|
|
|
for (walk = GST_ELEMENT_CAST (sel)->sinkpads; walk; walk = g_list_next (walk)) {
|
|
|
|
GstSelectorPad *selpad = GST_SELECTOR_PAD_CAST (walk->data);
|
|
|
|
|
|
|
|
gst_selector_pad_reset (selpad);
|
|
|
|
|
|
|
|
if (selpad->tags) {
|
2012-05-27 23:08:18 +00:00
|
|
|
gst_tag_list_unref (selpad->tags);
|
2008-09-08 20:27:23 +00:00
|
|
|
selpad->tags = NULL;
|
|
|
|
}
|
|
|
|
}
|
2013-07-22 12:12:18 +00:00
|
|
|
sel->have_group_id = TRUE;
|
2008-09-08 20:27:23 +00:00
|
|
|
GST_INPUT_SELECTOR_UNLOCK (sel);
|
|
|
|
}
|
|
|
|
|
2008-01-29 07:38:31 +00:00
|
|
|
static GstStateChangeReturn
|
|
|
|
gst_input_selector_change_state (GstElement * element,
|
|
|
|
GstStateChange transition)
|
|
|
|
{
|
|
|
|
GstInputSelector *self = GST_INPUT_SELECTOR (element);
|
|
|
|
GstStateChangeReturn result;
|
|
|
|
|
plugins/elements/gstinputselector.*: Figure out the locking a bit more.
Original commit message from CVS:
* plugins/elements/gstinputselector.c:
(gst_selector_pad_get_running_time), (gst_selector_pad_reset),
(gst_selector_pad_event), (gst_selector_pad_bufferalloc),
(gst_input_selector_wait), (gst_selector_pad_chain),
(gst_input_selector_class_init), (gst_input_selector_init),
(gst_input_selector_dispose), (gst_segment_set_start),
(gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_get_linked_pad),
(gst_input_selector_is_active_sinkpad),
(gst_input_selector_activate_sinkpad),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_change_state), (gst_input_selector_block),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Figure out the locking a bit more.
Mark buffers with discont after switching.
Fix initial segment forwarding, make sure to only forward one segment
regardless of what the sequence of buffers/segments is. See #522203.
Improve flushing when blocked.
Return NOT_LINKED when a stream is not selected.
Not API change for the switch signal in the docs.
Fix start/time/accum values of the new segment.
Correctly unlock and flush a blocking selector when going to READY.
2008-03-20 16:48:46 +00:00
|
|
|
switch (transition) {
|
|
|
|
case GST_STATE_CHANGE_READY_TO_PAUSED:
|
|
|
|
GST_INPUT_SELECTOR_LOCK (self);
|
2014-12-24 02:13:51 +00:00
|
|
|
self->eos = FALSE;
|
plugins/elements/gstinputselector.*: Figure out the locking a bit more.
Original commit message from CVS:
* plugins/elements/gstinputselector.c:
(gst_selector_pad_get_running_time), (gst_selector_pad_reset),
(gst_selector_pad_event), (gst_selector_pad_bufferalloc),
(gst_input_selector_wait), (gst_selector_pad_chain),
(gst_input_selector_class_init), (gst_input_selector_init),
(gst_input_selector_dispose), (gst_segment_set_start),
(gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_get_linked_pad),
(gst_input_selector_is_active_sinkpad),
(gst_input_selector_activate_sinkpad),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_change_state), (gst_input_selector_block),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Figure out the locking a bit more.
Mark buffers with discont after switching.
Fix initial segment forwarding, make sure to only forward one segment
regardless of what the sequence of buffers/segments is. See #522203.
Improve flushing when blocked.
Return NOT_LINKED when a stream is not selected.
Not API change for the switch signal in the docs.
Fix start/time/accum values of the new segment.
Correctly unlock and flush a blocking selector when going to READY.
2008-03-20 16:48:46 +00:00
|
|
|
self->flushing = FALSE;
|
|
|
|
GST_INPUT_SELECTOR_UNLOCK (self);
|
|
|
|
break;
|
|
|
|
case GST_STATE_CHANGE_PAUSED_TO_READY:
|
|
|
|
/* first unlock before we call the parent state change function, which
|
|
|
|
* tries to acquire the stream lock when going to ready. */
|
|
|
|
GST_INPUT_SELECTOR_LOCK (self);
|
2014-12-24 02:13:51 +00:00
|
|
|
self->eos = TRUE;
|
plugins/elements/gstinputselector.*: Figure out the locking a bit more.
Original commit message from CVS:
* plugins/elements/gstinputselector.c:
(gst_selector_pad_get_running_time), (gst_selector_pad_reset),
(gst_selector_pad_event), (gst_selector_pad_bufferalloc),
(gst_input_selector_wait), (gst_selector_pad_chain),
(gst_input_selector_class_init), (gst_input_selector_init),
(gst_input_selector_dispose), (gst_segment_set_start),
(gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_get_linked_pad),
(gst_input_selector_is_active_sinkpad),
(gst_input_selector_activate_sinkpad),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_change_state), (gst_input_selector_block),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Figure out the locking a bit more.
Mark buffers with discont after switching.
Fix initial segment forwarding, make sure to only forward one segment
regardless of what the sequence of buffers/segments is. See #522203.
Improve flushing when blocked.
Return NOT_LINKED when a stream is not selected.
Not API change for the switch signal in the docs.
Fix start/time/accum values of the new segment.
Correctly unlock and flush a blocking selector when going to READY.
2008-03-20 16:48:46 +00:00
|
|
|
self->flushing = TRUE;
|
|
|
|
GST_INPUT_SELECTOR_BROADCAST (self);
|
|
|
|
GST_INPUT_SELECTOR_UNLOCK (self);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
2008-01-29 07:38:31 +00:00
|
|
|
}
|
|
|
|
|
plugins/elements/gstinputselector.*: Figure out the locking a bit more.
Original commit message from CVS:
* plugins/elements/gstinputselector.c:
(gst_selector_pad_get_running_time), (gst_selector_pad_reset),
(gst_selector_pad_event), (gst_selector_pad_bufferalloc),
(gst_input_selector_wait), (gst_selector_pad_chain),
(gst_input_selector_class_init), (gst_input_selector_init),
(gst_input_selector_dispose), (gst_segment_set_start),
(gst_input_selector_set_active_pad),
(gst_input_selector_set_property),
(gst_input_selector_get_property),
(gst_input_selector_get_linked_pad),
(gst_input_selector_is_active_sinkpad),
(gst_input_selector_activate_sinkpad),
(gst_input_selector_request_new_pad),
(gst_input_selector_release_pad),
(gst_input_selector_change_state), (gst_input_selector_block),
(gst_input_selector_switch):
* plugins/elements/gstinputselector.h:
Figure out the locking a bit more.
Mark buffers with discont after switching.
Fix initial segment forwarding, make sure to only forward one segment
regardless of what the sequence of buffers/segments is. See #522203.
Improve flushing when blocked.
Return NOT_LINKED when a stream is not selected.
Not API change for the switch signal in the docs.
Fix start/time/accum values of the new segment.
Correctly unlock and flush a blocking selector when going to READY.
2008-03-20 16:48:46 +00:00
|
|
|
result = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
|
|
|
|
|
2008-09-08 20:27:23 +00:00
|
|
|
switch (transition) {
|
|
|
|
case GST_STATE_CHANGE_PAUSED_TO_READY:
|
|
|
|
gst_input_selector_reset (self);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2008-01-29 07:38:31 +00:00
|
|
|
return result;
|
|
|
|
}
|