2010-12-30 00:41:09 +00:00
|
|
|
/* GStreamer valve element
|
2007-10-24 22:41:47 +00:00
|
|
|
*
|
|
|
|
* Copyright 2007 Collabora Ltd,
|
|
|
|
* Copyright 2007 Nokia Corporation
|
|
|
|
* @author: Olivier Crete <olivier.crete@collabora.co.uk>
|
|
|
|
*
|
|
|
|
* 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.
|
2007-10-24 22:41:47 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GST_VALVE_H__
|
|
|
|
#define __GST_VALVE_H__
|
|
|
|
|
|
|
|
#include <gst/gst.h>
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
/* #define's don't like whitespacey bits */
|
|
|
|
#define GST_TYPE_VALVE \
|
|
|
|
(gst_valve_get_type())
|
|
|
|
#define GST_VALVE(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_CAST((obj), \
|
|
|
|
GST_TYPE_VALVE,GstValve))
|
|
|
|
#define GST_VALVE_CLASS(klass) \
|
|
|
|
(G_TYPE_CHECK_CLASS_CAST((klass), \
|
|
|
|
GST_TYPE_VALVE,GstValveClass))
|
|
|
|
#define GST_IS_VALVE(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_VALVE))
|
|
|
|
#define GST_IS_VALVE_CLASS(obj) \
|
|
|
|
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_VALVE))
|
2010-12-30 00:41:09 +00:00
|
|
|
|
2007-10-24 22:41:47 +00:00
|
|
|
typedef struct _GstValve GstValve;
|
|
|
|
typedef struct _GstValveClass GstValveClass;
|
|
|
|
|
2009-02-10 18:52:54 +00:00
|
|
|
/**
|
|
|
|
* GstValve:
|
|
|
|
*
|
|
|
|
* The private valve structure
|
|
|
|
*/
|
2007-10-24 22:41:47 +00:00
|
|
|
struct _GstValve
|
|
|
|
{
|
2009-02-10 18:52:54 +00:00
|
|
|
/*< private >*/
|
2008-08-20 18:11:02 +00:00
|
|
|
GstElement parent;
|
2007-10-24 22:41:47 +00:00
|
|
|
|
2010-09-30 20:26:19 +00:00
|
|
|
/* atomic boolean */
|
|
|
|
volatile gint drop;
|
2007-10-24 22:41:47 +00:00
|
|
|
|
2009-02-10 17:55:47 +00:00
|
|
|
/* Protected by the stream lock */
|
|
|
|
gboolean discont;
|
2012-01-29 22:58:51 +00:00
|
|
|
gboolean need_repush_sticky;
|
2007-12-19 20:32:18 +00:00
|
|
|
|
2009-02-10 17:55:47 +00:00
|
|
|
GstPad *srcpad;
|
|
|
|
GstPad *sinkpad;
|
2007-10-24 22:41:47 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GstValveClass
|
|
|
|
{
|
2008-08-20 18:11:02 +00:00
|
|
|
GstElementClass parent_class;
|
2007-10-24 22:41:47 +00:00
|
|
|
};
|
|
|
|
|
2012-07-14 19:00:30 +00:00
|
|
|
G_GNUC_INTERNAL GType gst_valve_get_type (void);
|
2007-10-24 22:41:47 +00:00
|
|
|
|
|
|
|
G_END_DECLS
|
2010-12-30 00:41:09 +00:00
|
|
|
|
2007-10-24 22:41:47 +00:00
|
|
|
#endif /* __GST_VALVE_H__ */
|