3 * Copyright (C) 2003 Ronald Bultje <rbultje@ronald.bitfreak.net>
4 * 2006 Edgard Lima <edgard.lima@indt.org.br>
6 * gstv4l2tuner.h: tuner interface implementation for V4L2
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.
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.
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.
24 #ifndef __GST_V4L2_TUNER_H__
25 #define __GST_V4L2_TUNER_H__
28 #include <gst/interfaces/tuner.h>
30 #include "gstv4l2object.h"
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, \
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))
47 typedef struct _GstV4l2TunerChannel {
48 GstTunerChannel parent;
53 } GstV4l2TunerChannel;
55 typedef struct _GstV4l2TunerChannelClass {
56 GstTunerChannelClass parent;
57 } GstV4l2TunerChannelClass;
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, \
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))
72 typedef struct _GstV4l2TunerNorm {
78 typedef struct _GstV4l2TunerNormClass {
79 GstTunerNormClass parent;
80 } GstV4l2TunerNormClass;
82 GType gst_v4l2_tuner_channel_get_type (void);
83 GType gst_v4l2_tuner_norm_get_type (void);
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);
91 const GList* gst_v4l2_tuner_list_norms (GstV4l2Object * v4l2object);
92 void gst_v4l2_tuner_set_norm_and_notify (GstV4l2Object * v4l2object,
94 GstTunerNorm* gst_v4l2_tuner_get_norm (GstV4l2Object * v4l2object);
95 gboolean gst_v4l2_tuner_set_norm (GstV4l2Object * v4l2object,
97 GstTunerNorm* gst_v4l2_tuner_get_norm_by_std_id (GstV4l2Object * v4l2object,
99 v4l2_std_id gst_v4l2_tuner_get_std_id_by_norm (GstV4l2Object * v4l2object,
100 GstTunerNorm * norm);
103 void gst_v4l2_tuner_set_frequency_and_notify (GstV4l2Object * v4l2object,
104 GstTunerChannel * channel,
106 gint gst_v4l2_tuner_signal_strength (GstV4l2Object * v4l2object,
107 GstTunerChannel * channel);
108 gulong gst_v4l2_tuner_get_frequency (GstV4l2Object * v4l2object,
109 GstTunerChannel * channel);
110 gboolean gst_v4l2_tuner_set_frequency (GstV4l2Object * v4l2object,
111 GstTunerChannel * channel,
114 #define GST_IMPLEMENT_V4L2_TUNER_METHODS(Type, interface_as_function) \
116 static const GList * \
117 interface_as_function ## _tuner_list_channels (GstTuner * mixer) \
119 Type *this = (Type*) mixer; \
120 return gst_v4l2_tuner_list_channels (this->v4l2object); \
124 interface_as_function ## _tuner_set_channel (GstTuner * mixer, \
125 GstTunerChannel * channel) \
127 Type *this = (Type*) mixer; \
128 gst_v4l2_tuner_set_channel (this->v4l2object, channel); \
130 static GstTunerChannel * \
131 interface_as_function ## _tuner_get_channel (GstTuner * mixer) \
133 Type *this = (Type*) mixer; \
134 return gst_v4l2_tuner_get_channel (this->v4l2object); \
136 static const GList * \
137 interface_as_function ## _tuner_list_norms (GstTuner * mixer) \
139 Type *this = (Type*) mixer; \
140 return gst_v4l2_tuner_list_norms (this->v4l2object); \
143 interface_as_function ## _tuner_set_norm_and_notify (GstTuner * mixer, \
144 GstTunerNorm * norm) \
146 Type *this = (Type*) mixer; \
147 gst_v4l2_tuner_set_norm_and_notify (this->v4l2object, norm); \
149 static GstTunerNorm * \
150 interface_as_function ## _tuner_get_norm (GstTuner * mixer) \
152 Type *this = (Type*) mixer; \
153 return gst_v4l2_tuner_get_norm (this->v4l2object); \
157 interface_as_function ## _tuner_set_frequency_and_notify (GstTuner * mixer, \
158 GstTunerChannel * channel, \
161 Type *this = (Type*) mixer; \
162 gst_v4l2_tuner_set_frequency_and_notify (this->v4l2object, channel, frequency); \
166 interface_as_function ## _tuner_get_frequency (GstTuner * mixer, \
167 GstTunerChannel * channel) \
169 Type *this = (Type*) mixer; \
170 return gst_v4l2_tuner_get_frequency (this->v4l2object, channel); \
174 interface_as_function ## _tuner_signal_strength (GstTuner * mixer, \
175 GstTunerChannel * channel) \
177 Type *this = (Type*) mixer; \
178 return gst_v4l2_tuner_signal_strength (this->v4l2object, channel); \
182 interface_as_function ## _tuner_interface_init (GstTunerInterface * iface) \
184 /* default virtual functions */ \
185 iface->list_channels = interface_as_function ## _tuner_list_channels; \
186 iface->set_channel = interface_as_function ## _tuner_set_channel; \
187 iface->get_channel = interface_as_function ## _tuner_get_channel; \
189 iface->list_norms = interface_as_function ## _tuner_list_norms; \
190 iface->set_norm = interface_as_function ## _tuner_set_norm_and_notify; \
191 iface->get_norm = interface_as_function ## _tuner_get_norm; \
193 iface->set_frequency = interface_as_function ## _tuner_set_frequency_and_notify; \
194 iface->get_frequency = interface_as_function ## _tuner_get_frequency; \
195 iface->signal_strength = interface_as_function ## _tuner_signal_strength; \
198 #endif /* __GST_V4L2_TUNER_H__ */