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