fsvalve: Rebase valve onto gstelement instead of basetransform
[platform/upstream/gstreamer.git] / plugins / elements / gstvalve.h
1 /*
2  * Farsight Voice+Video library
3  *
4  *  Copyright 2007 Collabora Ltd, 
5  *  Copyright 2007 Nokia Corporation
6  *   @author: Olivier Crete <olivier.crete@collabora.co.uk>
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Library General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Library General Public License for more details.
17  *
18  * You should have received a copy of the GNU Library General Public
19  * License along with this library; if not, write to the
20  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21  * Boston, MA 02111-1307, USA.
22  *
23  */
24
25 #ifndef __GST_VALVE_H__
26 #define __GST_VALVE_H__
27
28 #include <gst/gst.h>
29
30 G_BEGIN_DECLS
31
32 /* #define's don't like whitespacey bits */
33 #define GST_TYPE_VALVE \
34   (gst_valve_get_type())
35 #define GST_VALVE(obj) \
36   (G_TYPE_CHECK_INSTANCE_CAST((obj), \
37   GST_TYPE_VALVE,GstValve))
38 #define GST_VALVE_CLASS(klass) \
39   (G_TYPE_CHECK_CLASS_CAST((klass), \
40   GST_TYPE_VALVE,GstValveClass))
41 #define GST_IS_VALVE(obj) \
42   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_VALVE))
43 #define GST_IS_VALVE_CLASS(obj) \
44   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_VALVE))
45
46 typedef struct _GstValve GstValve;
47 typedef struct _GstValveClass GstValveClass;
48 typedef struct _GstValvePrivate GstValvePrivate;
49
50 struct _GstValve
51 {
52   GstElement parent;
53
54   /* Protected by the object lock */
55   gboolean      drop;
56
57   /* Protected by the stream lock*/
58   gboolean      discont;
59
60   GstPad        *srcpad;
61   GstPad        *sinkpad;
62
63   /*< private > */
64   gpointer _gst_reserved[GST_PADDING];
65 };
66
67 struct _GstValveClass
68 {
69   GstElementClass parent_class;
70
71   /*< private > */
72   gpointer _gst_reserved[GST_PADDING];
73 };
74
75 GType gst_valve_get_type (void);
76
77 G_END_DECLS
78
79 #endif /* __GST_VALVE_H__ */