upload tizen1.0 source
[framework/multimedia/gst-plugins-good0.10.git] / sys / v4l2 / gstv4l2tuner.h
1 /* GStreamer
2  *
3  * Copyright (C) 2003 Ronald Bultje <rbultje@ronald.bitfreak.net>
4  *               2006 Edgard Lima <edgard.lima@indt.org.br>
5  *
6  * gstv4l2tuner.h: tuner interface implementation for V4L2
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 #ifndef __GST_V4L2_TUNER_H__
25 #define __GST_V4L2_TUNER_H__
26
27 #include <gst/gst.h>
28 #include <gst/interfaces/tuner.h>
29
30 #include "gstv4l2object.h"
31
32 G_BEGIN_DECLS
33
34 #define GST_TYPE_V4L2_TUNER_CHANNEL \
35   (gst_v4l2_tuner_channel_get_type ())
36 #define GST_V4L2_TUNER_CHANNEL(obj) \
37   (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_V4L2_TUNER_CHANNEL, \
38           GstV4l2TunerChannel))
39 #define GST_V4L2_TUNER_CHANNEL_CLASS(klass) \
40   (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_V4L2_TUNER_CHANNEL, \
41        GstV4l2TunerChannelClass))
42 #define GST_IS_V4L2_TUNER_CHANNEL(obj) \
43   (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_V4L2_TUNER_CHANNEL))
44 #define GST_IS_V4L2_TUNER_CHANNEL_CLASS(klass) \
45   (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_V4L2_TUNER_CHANNEL))
46
47 typedef struct _GstV4l2TunerChannel {
48   GstTunerChannel parent;
49
50   guint32         index;
51   guint32         tuner;
52   guint32         audio;
53 } GstV4l2TunerChannel;
54
55 typedef struct _GstV4l2TunerChannelClass {
56   GstTunerChannelClass parent;
57 } GstV4l2TunerChannelClass;
58
59 #define GST_TYPE_V4L2_TUNER_NORM \
60   (gst_v4l2_tuner_norm_get_type ())
61 #define GST_V4L2_TUNER_NORM(obj) \
62   (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_V4L2_TUNER_NORM, \
63           GstV4l2TunerNorm))
64 #define GST_V4L2_TUNER_NORM_CLASS(klass) \
65   (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_V4L2_TUNER_NORM, \
66        GstV4l2TunerNormClass))
67 #define GST_IS_V4L2_TUNER_NORM(obj) \
68   (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_V4L2_TUNER_NORM))
69 #define GST_IS_V4L2_TUNER_NORM_CLASS(klass) \
70   (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_V4L2_TUNER_NORM))
71
72 typedef struct _GstV4l2TunerNorm {
73   GstTunerNorm parent;
74
75   v4l2_std_id  index;
76 } GstV4l2TunerNorm;
77
78 typedef struct _GstV4l2TunerNormClass {
79   GstTunerNormClass parent;
80 } GstV4l2TunerNormClass;
81
82 GType gst_v4l2_tuner_channel_get_type (void);
83 GType gst_v4l2_tuner_norm_get_type (void);
84
85 /* channels */
86 const GList*      gst_v4l2_tuner_list_channels            (GstV4l2Object * v4l2object);
87 GstTunerChannel*  gst_v4l2_tuner_get_channel              (GstV4l2Object * v4l2object);
88 gboolean          gst_v4l2_tuner_set_channel              (GstV4l2Object * v4l2object,
89                                                            GstTunerChannel * channel);
90 /* norms */
91 const GList*      gst_v4l2_tuner_list_norms               (GstV4l2Object * v4l2object);
92 void              gst_v4l2_tuner_set_norm_and_notify      (GstV4l2Object * v4l2object,
93                                                            GstTunerNorm * norm);
94 GstTunerNorm*     gst_v4l2_tuner_get_norm                 (GstV4l2Object * v4l2object);
95 gboolean          gst_v4l2_tuner_set_norm                 (GstV4l2Object * v4l2object,
96                                                            GstTunerNorm * norm);
97 /* frequency */
98 void              gst_v4l2_tuner_set_frequency_and_notify (GstV4l2Object * v4l2object,
99                                                            GstTunerChannel * channel, 
100                                                            gulong frequency);
101 gint              gst_v4l2_tuner_signal_strength          (GstV4l2Object * v4l2object,
102                                                            GstTunerChannel * channel);
103 gulong            gst_v4l2_tuner_get_frequency            (GstV4l2Object * v4l2object,
104                                                            GstTunerChannel * channel);
105 gboolean          gst_v4l2_tuner_set_frequency            (GstV4l2Object * v4l2object,
106                                                            GstTunerChannel * channel, 
107                                                            gulong frequency);
108
109 #define GST_IMPLEMENT_V4L2_TUNER_METHODS(Type, interface_as_function)                 \
110                                                                                       \
111 static const GList *                                                                  \
112 interface_as_function ## _tuner_list_channels (GstTuner * mixer)                      \
113 {                                                                                     \
114   Type *this = (Type*) mixer;                                                         \
115   return gst_v4l2_tuner_list_channels (this->v4l2object);                             \
116 }                                                                                     \
117                                                                                       \
118 static void                                                                           \
119 interface_as_function ## _tuner_set_channel (GstTuner * mixer,                        \
120                                              GstTunerChannel * channel)               \
121 {                                                                                     \
122   Type *this = (Type*) mixer;                                                         \
123   gst_v4l2_tuner_set_channel (this->v4l2object, channel);                             \
124 }                                                                                     \
125 static GstTunerChannel *                                                              \
126 interface_as_function ## _tuner_get_channel (GstTuner * mixer)                        \
127 {                                                                                     \
128   Type *this = (Type*) mixer;                                                         \
129   return gst_v4l2_tuner_get_channel (this->v4l2object);                               \
130 }                                                                                     \
131 static const GList *                                                                  \
132 interface_as_function ## _tuner_list_norms (GstTuner * mixer)                         \
133 {                                                                                     \
134   Type *this = (Type*) mixer;                                                         \
135   return gst_v4l2_tuner_list_norms (this->v4l2object);                                \
136 }                                                                                     \
137 static void                                                                           \
138 interface_as_function ## _tuner_set_norm_and_notify (GstTuner * mixer,                \
139                                                      GstTunerNorm * norm)             \
140 {                                                                                     \
141   Type *this = (Type*) mixer;                                                         \
142   gst_v4l2_tuner_set_norm_and_notify (this->v4l2object, norm);                        \
143 }                                                                                     \
144 static GstTunerNorm *                                                                 \
145 interface_as_function ## _tuner_get_norm (GstTuner * mixer)                           \
146 {                                                                                     \
147   Type *this = (Type*) mixer;                                                         \
148   return gst_v4l2_tuner_get_norm (this->v4l2object);                                  \
149 }                                                                                     \
150                                                                                       \
151 static void                                                                           \
152 interface_as_function ## _tuner_set_frequency_and_notify (GstTuner * mixer,           \
153                                                           GstTunerChannel * channel,  \
154                                                           gulong frequency)           \
155 {                                                                                     \
156   Type *this = (Type*) mixer;                                                         \
157   gst_v4l2_tuner_set_frequency_and_notify (this->v4l2object, channel, frequency);     \
158 }                                                                                     \
159                                                                                       \
160 static gulong                                                                         \
161 interface_as_function ## _tuner_get_frequency (GstTuner * mixer,                      \
162                                                GstTunerChannel * channel)             \
163 {                                                                                     \
164   Type *this = (Type*) mixer;                                                         \
165   return gst_v4l2_tuner_get_frequency (this->v4l2object, channel);                    \
166 }                                                                                     \
167                                                                                       \
168 static gint                                                                           \
169 interface_as_function ## _tuner_signal_strength (GstTuner * mixer,                    \
170                                                  GstTunerChannel * channel)           \
171 {                                                                                     \
172   Type *this = (Type*) mixer;                                                         \
173   return gst_v4l2_tuner_signal_strength (this->v4l2object, channel);                  \
174 }                                                                                     \
175                                                                                       \
176 static void                                                                           \
177 interface_as_function ## _tuner_interface_init (GstTunerClass * klass)                \
178 {                                                                                     \
179   /* default virtual functions */                                                     \
180   klass->list_channels = interface_as_function ## _tuner_list_channels;               \
181   klass->set_channel = interface_as_function ## _tuner_set_channel;                   \
182   klass->get_channel = interface_as_function ## _tuner_get_channel;                   \
183                                                                                       \
184   klass->list_norms = interface_as_function ## _tuner_list_norms;                     \
185   klass->set_norm = interface_as_function ## _tuner_set_norm_and_notify;              \
186   klass->get_norm = interface_as_function ## _tuner_get_norm;                         \
187                                                                                       \
188   klass->set_frequency = interface_as_function ## _tuner_set_frequency_and_notify;    \
189   klass->get_frequency = interface_as_function ## _tuner_get_frequency;               \
190   klass->signal_strength = interface_as_function ## _tuner_signal_strength;           \
191 }                                                                                     \
192
193 #endif /* __GST_V4L2_TUNER_H__ */