valve: Make the drop variable into an atomic.
[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 /* #define's don't like whitespacey bits */
32 #define GST_TYPE_VALVE \
33   (gst_valve_get_type())
34 #define GST_VALVE(obj) \
35   (G_TYPE_CHECK_INSTANCE_CAST((obj), \
36   GST_TYPE_VALVE,GstValve))
37 #define GST_VALVE_CLASS(klass) \
38   (G_TYPE_CHECK_CLASS_CAST((klass), \
39   GST_TYPE_VALVE,GstValveClass))
40 #define GST_IS_VALVE(obj) \
41   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_VALVE))
42 #define GST_IS_VALVE_CLASS(obj) \
43   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_VALVE))
44 typedef struct _GstValve GstValve;
45 typedef struct _GstValveClass GstValveClass;
46 typedef struct _GstValvePrivate GstValvePrivate;
47
48 /**
49  * GstValve:
50  *
51  * The private valve structure
52  */
53 struct _GstValve
54 {
55   /*< private >*/
56   GstElement parent;
57
58   /* atomic boolean */
59   volatile gint drop;
60
61   /* Protected by the stream lock */
62   gboolean discont;
63
64   GstPad *srcpad;
65   GstPad *sinkpad;
66
67   /*< private > */
68   gpointer _gst_reserved[GST_PADDING];
69 };
70
71 struct _GstValveClass
72 {
73   GstElementClass parent_class;
74
75   /*< private > */
76   gpointer _gst_reserved[GST_PADDING];
77 };
78
79 GType gst_valve_get_type (void);
80
81 G_END_DECLS
82 #endif /* __GST_VALVE_H__ */