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>
|
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
|
|
|
|
2007-12-17 14:43:04 +00:00
|
|
|
#ifndef __GST_STREAM_SELECTOR_H__
|
|
|
|
#define __GST_STREAM_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
|
|
|
|
2007-12-17 14:43:04 +00:00
|
|
|
#define GST_TYPE_STREAM_SELECTOR \
|
|
|
|
(gst_stream_selector_get_type())
|
|
|
|
#define GST_STREAM_SELECTOR(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_STREAM_SELECTOR, GstStreamSelector))
|
|
|
|
#define GST_STREAM_SELECTOR_CLASS(klass) \
|
|
|
|
(G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_STREAM_SELECTOR, GstStreamSelectorClass))
|
|
|
|
#define GST_IS_STREAM_SELECTOR(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_STREAM_SELECTOR))
|
|
|
|
#define GST_IS_STREAM_SELECTOR_CLASS(klass) \
|
|
|
|
(G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_STREAM_SELECTOR))
|
|
|
|
|
|
|
|
typedef struct _GstStreamSelector GstStreamSelector;
|
|
|
|
typedef struct _GstStreamSelectorClass GstStreamSelectorClass;
|
|
|
|
|
|
|
|
struct _GstStreamSelector {
|
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;
|
|
|
|
};
|
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
|
|
|
|
2007-12-17 14:43:04 +00:00
|
|
|
struct _GstStreamSelectorClass {
|
2003-12-08 20:01:01 +00:00
|
|
|
GstElementClass parent_class;
|
|
|
|
};
|
|
|
|
|
2007-12-17 14:43:04 +00:00
|
|
|
GType gst_stream_selector_get_type (void);
|
2003-12-08 20:01:01 +00:00
|
|
|
|
|
|
|
G_END_DECLS
|
2004-03-15 16:32:54 +00:00
|
|
|
|
2007-12-17 14:43:04 +00:00
|
|
|
#endif /* __GST_STREAM_SELECTOR_H__ */
|