2003-12-08 20:01:01 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 2003 Julien Moutte <julien@moutte.net>
|
2007-12-17 14:43:04 +00:00
|
|
|
* Copyright (C) 2005 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
2008-01-29 07:38:31 +00:00
|
|
|
* Copyright (C) 2008 Nokia Corporation. (contact <stefan.kost@nokia.com>)
|
2003-12-08 20:01:01 +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
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
2004-03-15 16:32:54 +00:00
|
|
|
|
2008-01-29 07:38:31 +00:00
|
|
|
#ifndef __GST_INPUT_SELECTOR_H__
|
|
|
|
#define __GST_INPUT_SELECTOR_H__
|
2003-12-08 20:01:01 +00:00
|
|
|
|
|
|
|
#include <gst/gst.h>
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
2004-03-15 16:32:54 +00:00
|
|
|
|
2008-01-29 07:38:31 +00:00
|
|
|
#define GST_TYPE_INPUT_SELECTOR \
|
|
|
|
(gst_input_selector_get_type())
|
|
|
|
#define GST_INPUT_SELECTOR(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_INPUT_SELECTOR, GstInputSelector))
|
|
|
|
#define GST_INPUT_SELECTOR_CLASS(klass) \
|
|
|
|
(G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_INPUT_SELECTOR, GstInputSelectorClass))
|
|
|
|
#define GST_IS_INPUT_SELECTOR(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_INPUT_SELECTOR))
|
|
|
|
#define GST_IS_INPUT_SELECTOR_CLASS(klass) \
|
|
|
|
(G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_INPUT_SELECTOR))
|
2007-12-17 14:43:04 +00:00
|
|
|
|
2008-01-29 07:38:31 +00:00
|
|
|
typedef struct _GstInputSelector GstInputSelector;
|
|
|
|
typedef struct _GstInputSelectorClass GstInputSelectorClass;
|
2007-12-17 14:43:04 +00:00
|
|
|
|
2008-01-29 07:38:31 +00:00
|
|
|
struct _GstInputSelector {
|
2003-12-08 20:01:01 +00:00
|
|
|
GstElement element;
|
2007-12-17 14:43:04 +00:00
|
|
|
|
2003-12-08 20:01:01 +00:00
|
|
|
GstPad *srcpad;
|
gst/switch/gstswitch.c (ARG_ACTIVE_SOURCE, ARG_STOP_VALUE,
Original commit message from CVS:
* gst/switch/gstswitch.c (ARG_ACTIVE_SOURCE, ARG_STOP_VALUE,
ARG_LAST_TS, parent_class, gst_switch_release_pad,
gst_switch_request_new_pad, gst_switch_chain, gst_switch_event,
gst_switch_set_property, gst_switch_get_property, gst_switch_getcaps,
gst_switch_dispose, gst_switch_init, gst_switch_class_init):
* gst/switch/gstswitch.h (previous_sinkpad, nb_sinkpads, stop_value,
current_start, last_ts):
Allow application to provide a stop timestamp, so a new segment
update can be sent before switching.
2007-05-14 18:03:58 +00:00
|
|
|
|
2007-12-17 14:43:04 +00:00
|
|
|
GstPad *active_sinkpad;
|
2003-12-08 20:01:01 +00:00
|
|
|
guint nb_sinkpads;
|
|
|
|
|
2007-12-17 14:43:04 +00:00
|
|
|
GstSegment segment;
|
2007-12-17 14:55:54 +00:00
|
|
|
|
2007-12-17 15:00:15 +00:00
|
|
|
GCond *blocked_cond;
|
2007-12-17 14:55:54 +00:00
|
|
|
gboolean blocked;
|
|
|
|
gboolean pending_stop;
|
|
|
|
GstSegment pending_stop_segment;
|
2007-12-17 14:43:04 +00:00
|
|
|
};
|
examples/switch/switcher.c (my_bus_callback, switch_timer, last_message_received, main): gst/switch/gstswitch.c (gst_...
Original commit message from CVS:
* examples/switch/switcher.c (my_bus_callback, switch_timer,
last_message_received, main):
* gst/switch/gstswitch.c (gst_switch_release_pad,
gst_switch_request_new_pad, gst_switch_chain, gst_switch_event,
gst_switch_set_property, gst_switch_get_property,
gst_switch_get_linked_pad, gst_switch_getcaps,
gst_switch_bufferalloc, gst_switch_dispose, gst_switch_init):
* gst/switch/gstswitch.h (switch_mutex, GST_SWITCH_LOCK,
GST_SWITCH_UNLOCK):
Add an extra lock to protect against certain variables instead of
using the object lock. Fix case where caps are different in the
sink pads causes deadlock. Update example to use different caps
on each sink pad.
2007-06-22 15:30:00 +00:00
|
|
|
|
2008-01-29 07:38:31 +00:00
|
|
|
struct _GstInputSelectorClass {
|
2003-12-08 20:01:01 +00:00
|
|
|
GstElementClass parent_class;
|
2007-12-17 14:46:26 +00:00
|
|
|
|
2008-01-29 07:38:31 +00:00
|
|
|
gint64 (*block) (GstInputSelector *self);
|
|
|
|
void (*switch_) (GstInputSelector *self, const gchar *pad_name,
|
2007-12-18 16:08:13 +00:00
|
|
|
gint64 stop_time, gint64 start_time);
|
2003-12-08 20:01:01 +00:00
|
|
|
};
|
|
|
|
|
2008-01-29 07:38:31 +00:00
|
|
|
GType gst_input_selector_get_type (void);
|
2003-12-08 20:01:01 +00:00
|
|
|
|
|
|
|
G_END_DECLS
|
2004-03-15 16:32:54 +00:00
|
|
|
|
2008-01-29 07:38:31 +00:00
|
|
|
#endif /* __GST_INPUT_SELECTOR_H__ */
|