Merge remote-tracking branch 'origin/master' into 0.11
[platform/upstream/gst-plugins-good.git] / sys / v4l2 / gstv4l2object.h
1 /* GStreamer
2  *
3  * Copyright (C) 2001-2002 Ronald Bultje <rbultje@ronald.bitfreak.net>
4  *               2006 Edgard Lima <edgard.lima@indt.org.br>
5  *
6  * gstv4l2object.h: base class for V4L2 elements
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_OBJECT_H__
25 #define __GST_V4L2_OBJECT_H__
26
27 /* Because of some really cool feature in video4linux1, also known as
28  * 'not including sys/types.h and sys/time.h', we had to include it
29  * ourselves. In all their intelligence, these people decided to fix
30  * this in the next version (video4linux2) in such a cool way that it
31  * breaks all compilations of old stuff...
32  * The real problem is actually that linux/time.h doesn't use proper
33  * macro checks before defining types like struct timeval. The proper
34  * fix here is to either fuck the kernel header (which is what we do
35  * by defining _LINUX_TIME_H, an innocent little hack) or by fixing it
36  * upstream, which I'll consider doing later on. If you get compiler
37  * errors here, check your linux/time.h && sys/time.h header setup.
38  */
39 #include <sys/ioctl.h>
40 #include <sys/types.h>
41 #ifndef __sun
42 #include <linux/types.h>
43 #define _LINUX_TIME_H
44 #define __user
45 #include <linux/videodev2.h>
46 #else
47 #include <sys/videodev2.h>
48 #endif
49
50 #include <gst/gst.h>
51 #include <gst/base/gstpushsrc.h>
52
53 #include <gst/video/video.h>
54 #include <gst/interfaces/propertyprobe.h>
55
56 typedef struct _GstV4l2Object GstV4l2Object;
57 typedef struct _GstV4l2ObjectClassHelper GstV4l2ObjectClassHelper;
58 typedef struct _GstV4l2Xv GstV4l2Xv;
59
60 #include <gstv4l2bufferpool.h>
61
62 /* size of v4l2 buffer pool in streaming case */
63 #define GST_V4L2_MAX_BUFFERS 16
64 #define GST_V4L2_MIN_BUFFERS 1
65
66 /* max frame width/height */
67 #define GST_V4L2_MAX_SIZE (1<<15) /* 2^15 == 32768 */
68
69 G_BEGIN_DECLS
70
71 #define GST_V4L2_OBJECT(obj) (GstV4l2Object *)(obj)
72
73 typedef enum {
74   GST_V4L2_IO_AUTO    = 0,
75   GST_V4L2_IO_RW      = 1,
76   GST_V4L2_IO_MMAP    = 2,
77   GST_V4L2_IO_USERPTR = 3
78 } GstV4l2IOMode;
79
80 typedef gboolean  (*GstV4l2GetInOutFunction)  (GstV4l2Object * v4l2object, gint * input);
81 typedef gboolean  (*GstV4l2SetInOutFunction)  (GstV4l2Object * v4l2object, gint input);
82 typedef gboolean  (*GstV4l2UpdateFpsFunction) (GstV4l2Object * v4l2object);
83
84 #define GST_V4L2_WIDTH(o)        (GST_VIDEO_INFO_WIDTH (&(o)->info))
85 #define GST_V4L2_HEIGHT(o)       (GST_VIDEO_INFO_HEIGHT (&(o)->info))
86 #define GST_V4L2_PIXELFORMAT(o)  ((o)->fmtdesc->pixelformat)
87 #define GST_V4L2_FPS_N(o)        (GST_VIDEO_INFO_FPS_N (&(o)->info))
88 #define GST_V4L2_FPS_D(o)        (GST_VIDEO_INFO_FPS_D (&(o)->info))
89
90 /* simple check whether the device is open */
91 #define GST_V4L2_IS_OPEN(o)      ((o)->video_fd > 0)
92
93 /* check whether the device is 'active' */
94 #define GST_V4L2_IS_ACTIVE(o)    ((o)->active)
95 #define GST_V4L2_SET_ACTIVE(o)   ((o)->active = TRUE)
96 #define GST_V4L2_SET_INACTIVE(o) ((o)->active = FALSE)
97
98 struct _GstV4l2Object {
99   GstElement * element;
100
101   enum v4l2_buf_type type;   /* V4L2_BUF_TYPE_VIDEO_CAPTURE, V4L2_BUF_TYPE_VIDEO_OUTPUT */
102
103   /* the video device */
104   char *videodev;
105
106   /* the video-device's file descriptor */
107   gint video_fd;
108   GstV4l2IOMode mode;
109   GstPoll * poll;
110   gboolean can_poll_device;
111
112   gboolean active;
113   gboolean streaming;
114
115   /* the current format */
116   struct v4l2_fmtdesc *fmtdesc;
117   GstVideoInfo info;
118
119   guint32 bytesperline;
120   guint32 sizeimage;
121   GstClockTime duration;
122
123   /* wanted mode */
124   GstV4l2IOMode req_mode;
125
126   /* optional pool */
127   gboolean always_copy;
128   GstBufferPool *pool;
129
130   /* the video device's capabilities */
131   struct v4l2_capability vcap;
132
133   /* the video device's window properties */
134   struct v4l2_window vwin;
135
136   /* some more info about the current input's capabilities */
137   struct v4l2_input vinput;
138
139   /* lists... */
140   GSList *formats;              /* list of available capture formats */
141
142   GList *colors;
143   GList *norms;
144   GList *channels;
145
146   /* properties */
147   v4l2_std_id tv_norm;
148   gchar *channel;
149   gulong frequency;
150
151   /* X-overlay */
152   GstV4l2Xv *xv;
153   gulong xwindow_id;
154
155   /* funcs */
156   GstV4l2GetInOutFunction  get_in_out_func;
157   GstV4l2SetInOutFunction  set_in_out_func;
158   GstV4l2UpdateFpsFunction update_fps_func;
159 };
160
161 struct _GstV4l2ObjectClassHelper {
162   /* probed devices */
163   GList *devices;
164 };
165
166 GType gst_v4l2_object_get_type (void);
167
168 #define V4L2_STD_OBJECT_PROPS           \
169     PROP_DEVICE,                        \
170     PROP_DEVICE_NAME,                   \
171     PROP_DEVICE_FD,                     \
172     PROP_FLAGS,                         \
173     PROP_BRIGHTNESS,                    \
174     PROP_CONTRAST,                      \
175     PROP_SATURATION,                    \
176     PROP_HUE,                           \
177     PROP_TV_NORM,                       \
178     PROP_IO_MODE
179
180 /* create/destroy */
181 GstV4l2Object * gst_v4l2_object_new              (GstElement * element,
182                                                   enum v4l2_buf_type  type,
183                                                   const char *default_device,
184                                                   GstV4l2GetInOutFunction get_in_out_func,
185                                                   GstV4l2SetInOutFunction set_in_out_func,
186                                                   GstV4l2UpdateFpsFunction   update_fps_func);
187 void            gst_v4l2_object_destroy          (GstV4l2Object * v4l2object);
188
189 /* properties */
190
191 void      gst_v4l2_object_install_properties_helper (GObjectClass *gobject_class, const char *default_device);
192
193 gboolean  gst_v4l2_object_set_property_helper       (GstV4l2Object *v4l2object,
194                                                      guint prop_id, const GValue * value,
195                                                      GParamSpec * pspec);
196 gboolean  gst_v4l2_object_get_property_helper       (GstV4l2Object *v4l2object,
197                                                      guint prop_id, GValue * value,
198                                                      GParamSpec * pspec);
199 /* open/close */
200 gboolean  gst_v4l2_object_open               (GstV4l2Object *v4l2object);
201 gboolean  gst_v4l2_object_close              (GstV4l2Object *v4l2object);
202
203 /* probing */
204 const GList* gst_v4l2_probe_get_properties  (GstPropertyProbe * probe);
205
206 void         gst_v4l2_probe_probe_property  (GstPropertyProbe * probe, guint prop_id,
207                                              const GParamSpec * pspec,
208                                              GList ** klass_devices);
209 gboolean     gst_v4l2_probe_needs_probe     (GstPropertyProbe * probe, guint prop_id,
210                                              const GParamSpec * pspec,
211                                              GList ** klass_devices);
212 GValueArray* gst_v4l2_probe_get_values      (GstPropertyProbe * probe, guint prop_id,
213                                              const GParamSpec * pspec,
214                                              GList ** klass_devices);
215
216 GstCaps*      gst_v4l2_object_probe_caps_for_format (GstV4l2Object *v4l2object, guint32 pixelformat,
217                                              const GstStructure * template);
218
219 GSList*       gst_v4l2_object_get_format_list  (GstV4l2Object *v4l2object);
220
221 GstCaps*      gst_v4l2_object_get_all_caps (void);
222
223 GstStructure* gst_v4l2_object_v4l2fourcc_to_structure (guint32 fourcc);
224
225 gboolean      gst_v4l2_object_set_format (GstV4l2Object *v4l2object, GstCaps * caps);
226
227 gboolean      gst_v4l2_object_unlock      (GstV4l2Object *v4l2object);
228 gboolean      gst_v4l2_object_unlock_stop (GstV4l2Object *v4l2object);
229
230 gboolean      gst_v4l2_object_stop        (GstV4l2Object *v4l2object);
231
232
233 gboolean      gst_v4l2_object_copy        (GstV4l2Object * v4l2object,
234                                            GstBuffer * dest, GstBuffer *src);
235
236
237 #define GST_IMPLEMENT_V4L2_PROBE_METHODS(Type_Class, interface_as_function)                 \
238                                                                                             \
239 static void                                                                                 \
240 interface_as_function ## _probe_probe_property (GstPropertyProbe * probe,                   \
241                                                 guint prop_id,                              \
242                                                 const GParamSpec * pspec)                   \
243 {                                                                                           \
244   Type_Class *this_class = (Type_Class*) G_OBJECT_GET_CLASS (probe);                        \
245   gst_v4l2_probe_probe_property (probe, prop_id, pspec,                                     \
246                                         &this_class->v4l2_class_devices);                   \
247 }                                                                                           \
248                                                                                             \
249 static gboolean                                                                             \
250 interface_as_function ## _probe_needs_probe (GstPropertyProbe * probe,                      \
251                                              guint prop_id,                                 \
252                                              const GParamSpec * pspec)                      \
253 {                                                                                           \
254   Type_Class *this_class = (Type_Class*) G_OBJECT_GET_CLASS (probe);                        \
255   return gst_v4l2_probe_needs_probe (probe, prop_id, pspec,                                 \
256                                         &this_class->v4l2_class_devices);                   \
257 }                                                                                           \
258                                                                                             \
259 static GValueArray *                                                                        \
260 interface_as_function ## _probe_get_values (GstPropertyProbe * probe,                       \
261                                             guint prop_id,                                  \
262                                             const GParamSpec * pspec)                       \
263 {                                                                                           \
264   Type_Class *this_class = (Type_Class*) G_OBJECT_GET_CLASS (probe);                        \
265   return gst_v4l2_probe_get_values (probe, prop_id, pspec,                                  \
266                                     &this_class->v4l2_class_devices);                       \
267 }                                                                                           \
268                                                                                             \
269 static void                                                                                 \
270 interface_as_function ## _property_probe_interface_init (GstPropertyProbeInterface * iface) \
271 {                                                                                           \
272   iface->get_properties = gst_v4l2_probe_get_properties;                                    \
273   iface->probe_property = interface_as_function ## _probe_probe_property;                   \
274   iface->needs_probe = interface_as_function ## _probe_needs_probe;                         \
275   iface->get_values = interface_as_function ## _probe_get_values;                                            \
276 }
277
278 G_END_DECLS
279
280 #endif /* __GST_V4L2_OBJECT_H__ */