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