63933494c9b759c7b7fbbbac5e412629edd39702
[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@gmail.com>
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., 51 Franklin St, Fifth Floor,
21  * Boston, MA 02110-1301, USA.
22  */
23
24 #ifndef __GST_V4L2_OBJECT_H__
25 #define __GST_V4L2_OBJECT_H__
26
27 #include "ext/videodev2.h"
28 #ifdef HAVE_LIBV4L2
29 #  include <libv4l2.h>
30 #endif
31
32 #include "v4l2-utils.h"
33
34 #include <gst/gst.h>
35 #include <gst/base/gstpushsrc.h>
36
37 #include <gst/video/video.h>
38 #include <unistd.h>
39
40 typedef struct _GstV4l2Object GstV4l2Object;
41 typedef struct _GstV4l2ObjectClassHelper GstV4l2ObjectClassHelper;
42
43 #include <gstv4l2bufferpool.h>
44
45 /* size of v4l2 buffer pool in streaming case */
46 #define GST_V4L2_MIN_BUFFERS 2
47
48 /* max frame width/height */
49 #define GST_V4L2_MAX_SIZE (1<<15) /* 2^15 == 32768 */
50
51 G_BEGIN_DECLS
52
53 #define GST_TYPE_V4L2_IO_MODE (gst_v4l2_io_mode_get_type ())
54 GType gst_v4l2_io_mode_get_type (void);
55
56 #define GST_V4L2_OBJECT(obj) (GstV4l2Object *)(obj)
57
58 typedef enum {
59   GST_V4L2_IO_AUTO          = 0,
60   GST_V4L2_IO_RW            = 1,
61   GST_V4L2_IO_MMAP          = 2,
62   GST_V4L2_IO_USERPTR       = 3,
63   GST_V4L2_IO_DMABUF        = 4,
64   GST_V4L2_IO_DMABUF_IMPORT = 5
65 } GstV4l2IOMode;
66
67 typedef gboolean  (*GstV4l2GetInOutFunction)  (GstV4l2Object * v4l2object, gint * input);
68 typedef gboolean  (*GstV4l2SetInOutFunction)  (GstV4l2Object * v4l2object, gint input);
69 typedef gboolean  (*GstV4l2UpdateFpsFunction) (GstV4l2Object * v4l2object);
70
71 /* On Android NDK r18b the ioctl() signature uses 'unsigned' instead of
72  * 'unsigned long' for the 2nd parameter */
73 #ifdef __ANDROID__
74 typedef unsigned ioctl_req_t;
75 #else
76 typedef gulong ioctl_req_t;
77 #endif
78
79 #define GST_V4L2_WIDTH(o)        (GST_VIDEO_INFO_WIDTH (&(o)->info))
80 #define GST_V4L2_HEIGHT(o)       (GST_VIDEO_INFO_HEIGHT (&(o)->info))
81 #define GST_V4L2_PIXELFORMAT(o)  ((o)->fmtdesc->pixelformat)
82 #define GST_V4L2_FPS_N(o)        (GST_VIDEO_INFO_FPS_N (&(o)->info))
83 #define GST_V4L2_FPS_D(o)        (GST_VIDEO_INFO_FPS_D (&(o)->info))
84
85 /* simple check whether the device is open */
86 #define GST_V4L2_IS_OPEN(o)      ((o)->video_fd > 0)
87
88 /* check whether the device is 'active' */
89 #define GST_V4L2_IS_ACTIVE(o)    ((o)->active)
90 #define GST_V4L2_SET_ACTIVE(o)   ((o)->active = TRUE)
91 #define GST_V4L2_SET_INACTIVE(o) ((o)->active = FALSE)
92
93 /* checks whether the current v4lv4l2object has already been open()'ed or not */
94 #define GST_V4L2_CHECK_OPEN(v4l2object)                         \
95   if (!GST_V4L2_IS_OPEN(v4l2object))                            \
96   {                                                             \
97     GST_ELEMENT_ERROR (v4l2object->element, RESOURCE, SETTINGS, \
98       (_("Device is not open.")), (NULL));                      \
99     return FALSE;                                               \
100   }
101
102 /* checks whether the current v4lv4l2object is close()'ed or whether it is still open */
103 #define GST_V4L2_CHECK_NOT_OPEN(v4l2object)                     \
104   if (GST_V4L2_IS_OPEN(v4l2object))                             \
105   {                                                             \
106     GST_ELEMENT_ERROR (v4l2object->element, RESOURCE, SETTINGS, \
107       (_("Device is open.")), (NULL));                          \
108     return FALSE;                                               \
109   }
110
111 /* checks whether we're out of capture mode or not */
112 #define GST_V4L2_CHECK_NOT_ACTIVE(v4l2object)                   \
113   if (GST_V4L2_IS_ACTIVE(v4l2object))                           \
114   {                                                             \
115     GST_ELEMENT_ERROR (v4l2object->element, RESOURCE, SETTINGS, \
116       (NULL), ("Device is in streaming mode"));                 \
117     return FALSE;                                               \
118   }
119
120
121 struct _GstV4l2Object {
122   GstElement * element;
123   GstObject * dbg_obj;
124
125   enum v4l2_buf_type type;   /* V4L2_BUF_TYPE_VIDEO_CAPTURE, V4L2_BUF_TYPE_VIDEO_OUTPUT */
126
127   /* the video device */
128   char *videodev;
129
130 #ifdef TIZEN_FEATURE_V4L2SRC_AUTO_SCAN_DEVICE_NODE
131   /* auto scan device */
132   gboolean auto_scan_device;
133 #endif /* TIZEN_FEATURE_V4L2SRC_AUTO_SCAN_DEVICE_NODE */
134 #ifdef TIZEN_FEATURE_TBM_SUPPORT_FOR_V4L2_DECODER
135   gboolean tbm_output;
136 #endif /* TIZEN_FEATURE_TBM_SUPPORT_FOR_V4L2_DECODER */
137
138   /* the video-device's file descriptor */
139   gint video_fd;
140   GstV4l2IOMode mode;
141
142   gboolean active;
143   gboolean streaming;
144
145   /* the current format */
146   struct v4l2_fmtdesc *fmtdesc;
147   struct v4l2_format format;
148   GstVideoInfo info;
149   GstVideoAlignment align;
150
151   /* Features */
152   gboolean need_video_meta;
153   gboolean has_alpha_component;
154
155   /* only used if the device supports MPLANE
156    * nb planes is meaning of v4l2 planes
157    * the gstreamer equivalent is gst_buffer_n_memory
158    */
159   gint n_v4l2_planes;
160
161   /* We cache the frame duration if known */
162   GstClockTime duration;
163
164   /* if the MPLANE device support both contiguous and non contiguous
165    * it allows to select which one we want. But we prefered_non_contiguous
166    * non contiguous mode.
167    */
168   gboolean prefered_non_contiguous;
169
170   /* This will be set if supported in decide_allocation. It can be used to
171    * calculate the minimum latency. */
172   guint32 min_buffers;
173
174   /* wanted mode */
175   GstV4l2IOMode req_mode;
176
177   /* optional pool */
178   GstBufferPool *pool;
179
180   /* the video device's capabilities */
181   struct v4l2_capability vcap;
182   /* opened device specific capabilities */
183   guint32 device_caps;
184
185   /* lists... */
186   GSList *formats;              /* list of available capture formats */
187   GstCaps *probed_caps;
188
189   GList *colors;
190   GList *norms;
191   GList *channels;
192   GData *controls;
193
194   /* properties */
195   v4l2_std_id tv_norm;
196   gchar *channel;
197   gulong frequency;
198   GstStructure *extra_controls;
199   gboolean keep_aspect;
200   GValue *par;
201
202   /* funcs */
203   GstV4l2GetInOutFunction  get_in_out_func;
204   GstV4l2SetInOutFunction  set_in_out_func;
205   GstV4l2UpdateFpsFunction update_fps_func;
206
207   /* syscalls */
208   gint (*fd_open) (gint fd, gint v4l2_flags);
209   gint (*close) (gint fd);
210   gint (*dup) (gint fd);
211   gint (*ioctl) (gint fd, ioctl_req_t request, ...);
212   gssize (*read) (gint fd, gpointer buffer, gsize n);
213   gpointer (*mmap) (gpointer start, gsize length, gint prot, gint flags,
214       gint fd,  off_t offset);
215   gint (*munmap) (gpointer _start, gsize length);
216
217   /* Quirks */
218   /* Skips interlacing probes */
219   gboolean never_interlaced;
220   /* Allow to skip reading initial format through G_FMT. Some devices
221    * just fails if you don't call S_FMT first. (ex: M2M decoders) */
222   gboolean no_initial_format;
223   /* Avoid any try_fmt probe. This is used by v4l2src to speedup start up time
224    * on slow USB firmwares. When this is set, gst_v4l2_set_format() will modify
225    * the caps to reflect what was negotiated during fixation */
226   gboolean skip_try_fmt_probes;
227 };
228
229 struct _GstV4l2ObjectClassHelper {
230   /* probed devices */
231   GList *devices;
232 };
233
234 GType gst_v4l2_object_get_type (void);
235
236 #define V4L2_STD_OBJECT_PROPS \
237     PROP_DEVICE,              \
238     PROP_DEVICE_NAME,         \
239     PROP_DEVICE_FD,           \
240     PROP_FLAGS,               \
241     PROP_BRIGHTNESS,          \
242     PROP_CONTRAST,            \
243     PROP_SATURATION,          \
244     PROP_HUE,                 \
245     PROP_TV_NORM,             \
246     PROP_IO_MODE,             \
247     PROP_OUTPUT_IO_MODE,      \
248     PROP_CAPTURE_IO_MODE,     \
249     PROP_EXTRA_CONTROLS,      \
250     PROP_PIXEL_ASPECT_RATIO,  \
251     PROP_FORCE_ASPECT_RATIO
252
253 /* create/destroy */
254 GstV4l2Object*  gst_v4l2_object_new       (GstElement * element,
255                                            GstObject * dbg_obj,
256                                            enum v4l2_buf_type  type,
257                                            const char * default_device,
258                                            GstV4l2GetInOutFunction get_in_out_func,
259                                            GstV4l2SetInOutFunction set_in_out_func,
260                                            GstV4l2UpdateFpsFunction update_fps_func);
261
262 void         gst_v4l2_object_destroy   (GstV4l2Object * v4l2object);
263
264 /* properties */
265
266 void         gst_v4l2_object_install_properties_helper (GObjectClass * gobject_class,
267                                                         const char * default_device);
268
269 void         gst_v4l2_object_install_m2m_properties_helper (GObjectClass * gobject_class);
270
271 gboolean     gst_v4l2_object_set_property_helper       (GstV4l2Object * v4l2object,
272                                                         guint prop_id,
273                                                         const GValue * value,
274                                                         GParamSpec * pspec);
275 gboolean     gst_v4l2_object_get_property_helper       (GstV4l2Object *v4l2object,
276                                                         guint prop_id, GValue * value,
277                                                         GParamSpec * pspec);
278 /* open/close */
279 gboolean     gst_v4l2_object_open            (GstV4l2Object * v4l2object);
280 gboolean     gst_v4l2_object_open_shared     (GstV4l2Object * v4l2object, GstV4l2Object * other);
281 gboolean     gst_v4l2_object_close           (GstV4l2Object * v4l2object);
282
283 /* probing */
284
285 GstCaps*     gst_v4l2_object_get_all_caps (void);
286
287 GstCaps*     gst_v4l2_object_get_raw_caps (void);
288
289 GstCaps*     gst_v4l2_object_get_codec_caps (void);
290
291 gint         gst_v4l2_object_extrapolate_stride (const GstVideoFormatInfo * finfo,
292                                                   gint plane, gint stride);
293
294 gboolean     gst_v4l2_object_set_format  (GstV4l2Object * v4l2object, GstCaps * caps, GstV4l2Error * error);
295 gboolean     gst_v4l2_object_try_format  (GstV4l2Object * v4l2object, GstCaps * caps, GstV4l2Error * error);
296 gboolean     gst_v4l2_object_try_import  (GstV4l2Object * v4l2object, GstBuffer * buffer);
297
298 gboolean     gst_v4l2_object_caps_equal       (GstV4l2Object * v4l2object, GstCaps * caps);
299 gboolean     gst_v4l2_object_caps_is_subset   (GstV4l2Object * v4l2object, GstCaps * caps);
300 GstCaps *    gst_v4l2_object_get_current_caps (GstV4l2Object * v4l2object);
301
302 gboolean     gst_v4l2_object_unlock      (GstV4l2Object * v4l2object);
303 gboolean     gst_v4l2_object_unlock_stop (GstV4l2Object * v4l2object);
304
305 gboolean     gst_v4l2_object_stop        (GstV4l2Object * v4l2object);
306
307 GstCaps *    gst_v4l2_object_probe_caps  (GstV4l2Object * v4l2object, GstCaps * filter);
308 GstCaps *    gst_v4l2_object_get_caps    (GstV4l2Object * v4l2object, GstCaps * filter);
309
310 gboolean     gst_v4l2_object_acquire_format (GstV4l2Object * v4l2object, GstVideoInfo * info);
311
312 gboolean     gst_v4l2_object_set_crop    (GstV4l2Object * obj);
313
314 gboolean     gst_v4l2_object_decide_allocation (GstV4l2Object * v4l2object, GstQuery * query);
315
316 gboolean     gst_v4l2_object_propose_allocation (GstV4l2Object * obj, GstQuery * query);
317
318 GstStructure * gst_v4l2_object_v4l2fourcc_to_structure (guint32 fourcc);
319
320 /* TODO Move to proper namespace */
321 /* open/close the device */
322 gboolean     gst_v4l2_open           (GstV4l2Object * v4l2object);
323 gboolean     gst_v4l2_dup            (GstV4l2Object * v4l2object, GstV4l2Object * other);
324 gboolean     gst_v4l2_close          (GstV4l2Object * v4l2object);
325
326 /* norm/input/output */
327 gboolean     gst_v4l2_get_norm       (GstV4l2Object * v4l2object, v4l2_std_id * norm);
328 gboolean     gst_v4l2_set_norm       (GstV4l2Object * v4l2object, v4l2_std_id norm);
329 gboolean     gst_v4l2_get_input      (GstV4l2Object * v4l2object, gint * input);
330 gboolean     gst_v4l2_set_input      (GstV4l2Object * v4l2object, gint input);
331 gboolean     gst_v4l2_get_output     (GstV4l2Object * v4l2object, gint * output);
332 gboolean     gst_v4l2_set_output     (GstV4l2Object * v4l2object, gint output);
333
334 /* frequency control */
335 gboolean     gst_v4l2_get_frequency   (GstV4l2Object * v4l2object, gint tunernum, gulong * frequency);
336 gboolean     gst_v4l2_set_frequency   (GstV4l2Object * v4l2object, gint tunernum, gulong frequency);
337 gboolean     gst_v4l2_signal_strength (GstV4l2Object * v4l2object, gint tunernum, gulong * signal);
338
339 /* attribute control */
340 gboolean     gst_v4l2_get_attribute   (GstV4l2Object * v4l2object, int attribute, int * value);
341 gboolean     gst_v4l2_set_attribute   (GstV4l2Object * v4l2object, int attribute, const int value);
342 gboolean     gst_v4l2_set_controls    (GstV4l2Object * v4l2object, GstStructure * controls);
343
344 G_END_DECLS
345
346 #endif /* __GST_V4L2_OBJECT_H__ */