tizen 2.3.1 release
[framework/multimedia/gst-plugins-base0.10.git] / gst-libs / gst / interfaces / cameracontrolchannel.h
1 /* GStreamer Camera Control Channel Interface
2  *
3  * Copyright (c) 2000 - 2012 Samsung Electronics Co., Ltd.
4  *
5  * Contact: Jeongmo Yang <jm80.yang@samsung.com>
6  *
7  * cameracontrolchannel.h: individual channel object
8  *
9  * This library is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Library General Public
11  * License as published by the Free Software Foundation; either
12  * version 2 of the License, or (at your option) any later version.
13  *
14  * This library is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Library General Public License for more details.
18  *
19  * You should have received a copy of the GNU Library General Public
20  * License along with this library; if not, write to the
21  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22  * Boston, MA 02111-1307, USA.
23  */
24
25 #ifndef __GST_CAMERA_CONTROL_CHANNEL_H__
26 #define __GST_CAMERA_CONTROL_CHANNEL_H__
27
28 #include <gst/gst.h>
29
30 G_BEGIN_DECLS
31
32 #define GST_TYPE_CAMERA_CONTROL_CHANNEL \
33   (gst_camera_control_channel_get_type ())
34 #define GST_CAMERA_CONTROL_CHANNEL(obj) \
35   (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_CAMERA_CONTROL_CHANNEL, \
36                                GstCameraControlChannel))
37 #define GST_CAMERA_CONTROL_CHANNEL_CLASS(klass) \
38   (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_CAMERA_CONTROL_CHANNEL, \
39                             GstCameraControlChannelClass))
40 #define GST_IS_CAMERA_CONTROL_CHANNEL(obj) \
41   (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_CAMERA_CONTROL_CHANNEL))
42 #define GST_IS_CAMERA_CONTROL_CHANNEL_CLASS(klass) \
43   (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_CAMERA_CONTROL_CHANNEL))
44
45 typedef struct _GstCameraControlChannel {
46         GObject parent;
47         gchar *label;
48         gint min_value;
49         gint max_value;
50 } GstCameraControlChannel;
51
52 typedef struct _GstCameraControlChannelClass {
53         GObjectClass parent;
54
55         /* signals */
56         void (*value_changed)(GstCameraControlChannel *control_channel, gint value);
57
58         gpointer _gst_reserved[GST_PADDING];
59 } GstCameraControlChannelClass;
60
61 GType gst_camera_control_channel_get_type(void);
62
63 G_END_DECLS
64
65 #endif /* __GST_CAMERA_CONTROL_CHANNEL_H__ */