1.. SPDX-License-Identifier: GFDL-1.1-no-invariants-or-later
2.. c:namespace:: V4L
3
4.. _diff-v4l:
5
6********************************
7Differences between V4L and V4L2
8********************************
9
10The Video For Linux API was first introduced in Linux 2.1 to unify and
11replace various TV and radio device related interfaces, developed
12independently by driver writers in prior years. Starting with Linux 2.5
13the much improved V4L2 API replaces the V4L API. The support for the old
14V4L calls were removed from Kernel, but the library :ref:`libv4l`
15supports the conversion of a V4L API system call into a V4L2 one.
16
17Opening and Closing Devices
18===========================
19
20For compatibility reasons the character device file names recommended
21for V4L2 video capture, overlay, radio and raw vbi capture devices did
22not change from those used by V4L. They are listed in :ref:`devices`
23and below in :ref:`v4l-dev`.
24
25The teletext devices (minor range 192-223) have been removed in V4L2 and
26no longer exist. There is no hardware available anymore for handling
27pure teletext. Instead raw or sliced VBI is used.
28
29The V4L ``videodev`` module automatically assigns minor numbers to
30drivers in load order, depending on the registered device type. We
31recommend that V4L2 drivers by default register devices with the same
32numbers, but the system administrator can assign arbitrary minor numbers
33using driver module options. The major device number remains 81.
34
35.. _v4l-dev:
36
37.. flat-table:: V4L Device Types, Names and Numbers
38    :header-rows:  1
39    :stub-columns: 0
40
41    * - Device Type
42      - File Name
43      - Minor Numbers
44    * - Video capture and overlay
45      - ``/dev/video`` and ``/dev/bttv0``\  [#f1]_, ``/dev/video0`` to
46	``/dev/video63``
47      - 0-63
48    * - Radio receiver
49      - ``/dev/radio``\  [#f2]_, ``/dev/radio0`` to ``/dev/radio63``
50      - 64-127
51    * - Raw VBI capture
52      - ``/dev/vbi``, ``/dev/vbi0`` to ``/dev/vbi31``
53      - 224-255
54
55V4L prohibits (or used to prohibit) multiple opens of a device file.
56V4L2 drivers *may* support multiple opens, see :ref:`open` for details
57and consequences.
58
59V4L drivers respond to V4L2 ioctls with an ``EINVAL`` error code.
60
61Querying Capabilities
62=====================
63
64The V4L ``VIDIOCGCAP`` ioctl is equivalent to V4L2's
65:ref:`VIDIOC_QUERYCAP`.
66
67The ``name`` field in struct ``video_capability`` became
68``card`` in struct :c:type:`v4l2_capability`, ``type``
69was replaced by ``capabilities``. Note V4L2 does not distinguish between
70device types like this, better think of basic video input, video output
71and radio devices supporting a set of related functions like video
72capturing, video overlay and VBI capturing. See :ref:`open` for an
73introduction.
74
75.. raw:: latex
76
77   \small
78
79.. tabularcolumns:: |p{5.3cm}|p{6.7cm}|p{5.3cm}|
80
81.. cssclass:: longtable
82
83.. flat-table::
84    :header-rows:  1
85    :stub-columns: 0
86
87    * - ``struct video_capability`` ``type``
88      - struct :c:type:`v4l2_capability`
89	``capabilities`` flags
90      - Purpose
91    * - ``VID_TYPE_CAPTURE``
92      - ``V4L2_CAP_VIDEO_CAPTURE``
93      - The :ref:`video capture <capture>` interface is supported.
94    * - ``VID_TYPE_TUNER``
95      - ``V4L2_CAP_TUNER``
96      - The device has a :ref:`tuner or modulator <tuner>`.
97    * - ``VID_TYPE_TELETEXT``
98      - ``V4L2_CAP_VBI_CAPTURE``
99      - The :ref:`raw VBI capture <raw-vbi>` interface is supported.
100    * - ``VID_TYPE_OVERLAY``
101      - ``V4L2_CAP_VIDEO_OVERLAY``
102      - The :ref:`video overlay <overlay>` interface is supported.
103    * - ``VID_TYPE_CHROMAKEY``
104      - ``V4L2_FBUF_CAP_CHROMAKEY`` in field ``capability`` of struct
105	:c:type:`v4l2_framebuffer`
106      - Whether chromakey overlay is supported. For more information on
107	overlay see :ref:`overlay`.
108    * - ``VID_TYPE_CLIPPING``
109      - ``V4L2_FBUF_CAP_LIST_CLIPPING`` and
110	``V4L2_FBUF_CAP_BITMAP_CLIPPING`` in field ``capability`` of
111	struct :c:type:`v4l2_framebuffer`
112      - Whether clipping the overlaid image is supported, see
113	:ref:`overlay`.
114    * - ``VID_TYPE_FRAMERAM``
115      - ``V4L2_FBUF_CAP_EXTERNOVERLAY`` *not set* in field ``capability``
116	of struct :c:type:`v4l2_framebuffer`
117      - Whether overlay overwrites frame buffer memory, see
118	:ref:`overlay`.
119    * - ``VID_TYPE_SCALES``
120      - ``-``
121      - This flag indicates if the hardware can scale images. The V4L2 API
122	implies the scale factor by setting the cropping dimensions and
123	image size with the :ref:`VIDIOC_S_CROP <VIDIOC_G_CROP>` and
124	:ref:`VIDIOC_S_FMT <VIDIOC_G_FMT>` ioctl, respectively. The
125	driver returns the closest sizes possible. For more information on
126	cropping and scaling see :ref:`crop`.
127    * - ``VID_TYPE_MONOCHROME``
128      - ``-``
129      - Applications can enumerate the supported image formats with the
130	:ref:`VIDIOC_ENUM_FMT` ioctl to determine if
131	the device supports grey scale capturing only. For more
132	information on image formats see :ref:`pixfmt`.
133    * - ``VID_TYPE_SUBCAPTURE``
134      - ``-``
135      - Applications can call the :ref:`VIDIOC_G_CROP <VIDIOC_G_CROP>`
136	ioctl to determine if the device supports capturing a subsection
137	of the full picture ("cropping" in V4L2). If not, the ioctl
138	returns the ``EINVAL`` error code. For more information on cropping
139	and scaling see :ref:`crop`.
140    * - ``VID_TYPE_MPEG_DECODER``
141      - ``-``
142      - Applications can enumerate the supported image formats with the
143	:ref:`VIDIOC_ENUM_FMT` ioctl to determine if
144	the device supports MPEG streams.
145    * - ``VID_TYPE_MPEG_ENCODER``
146      - ``-``
147      - See above.
148    * - ``VID_TYPE_MJPEG_DECODER``
149      - ``-``
150      - See above.
151    * - ``VID_TYPE_MJPEG_ENCODER``
152      - ``-``
153      - See above.
154
155.. raw:: latex
156
157   \normalsize
158
159The ``audios`` field was replaced by ``capabilities`` flag
160``V4L2_CAP_AUDIO``, indicating *if* the device has any audio inputs or
161outputs. To determine their number applications can enumerate audio
162inputs with the :ref:`VIDIOC_G_AUDIO <VIDIOC_G_AUDIO>` ioctl. The
163audio ioctls are described in :ref:`audio`.
164
165The ``maxwidth``, ``maxheight``, ``minwidth`` and ``minheight`` fields
166were removed. Calling the :ref:`VIDIOC_S_FMT <VIDIOC_G_FMT>` or
167:ref:`VIDIOC_TRY_FMT <VIDIOC_G_FMT>` ioctl with the desired
168dimensions returns the closest size possible, taking into account the
169current video standard, cropping and scaling limitations.
170
171Video Sources
172=============
173
174V4L provides the ``VIDIOCGCHAN`` and ``VIDIOCSCHAN`` ioctl using struct
175``video_channel`` to enumerate the video inputs of a V4L
176device. The equivalent V4L2 ioctls are
177:ref:`VIDIOC_ENUMINPUT`,
178:ref:`VIDIOC_G_INPUT <VIDIOC_G_INPUT>` and
179:ref:`VIDIOC_S_INPUT <VIDIOC_G_INPUT>` using struct
180:c:type:`v4l2_input` as discussed in :ref:`video`.
181
182The ``channel`` field counting inputs was renamed to ``index``, the
183video input types were renamed as follows:
184
185
186.. flat-table::
187    :header-rows:  1
188    :stub-columns: 0
189
190    * - struct ``video_channel`` ``type``
191      - struct :c:type:`v4l2_input` ``type``
192    * - ``VIDEO_TYPE_TV``
193      - ``V4L2_INPUT_TYPE_TUNER``
194    * - ``VIDEO_TYPE_CAMERA``
195      - ``V4L2_INPUT_TYPE_CAMERA``
196
197Unlike the ``tuners`` field expressing the number of tuners of this
198input, V4L2 assumes each video input is connected to at most one tuner.
199However a tuner can have more than one input, i. e. RF connectors, and a
200device can have multiple tuners. The index number of the tuner
201associated with the input, if any, is stored in field ``tuner`` of
202struct :c:type:`v4l2_input`. Enumeration of tuners is
203discussed in :ref:`tuner`.
204
205The redundant ``VIDEO_VC_TUNER`` flag was dropped. Video inputs
206associated with a tuner are of type ``V4L2_INPUT_TYPE_TUNER``. The
207``VIDEO_VC_AUDIO`` flag was replaced by the ``audioset`` field. V4L2
208considers devices with up to 32 audio inputs. Each set bit in the
209``audioset`` field represents one audio input this video input combines
210with. For information about audio inputs and how to switch between them
211see :ref:`audio`.
212
213The ``norm`` field describing the supported video standards was replaced
214by ``std``. The V4L specification mentions a flag ``VIDEO_VC_NORM``
215indicating whether the standard can be changed. This flag was a later
216addition together with the ``norm`` field and has been removed in the
217meantime. V4L2 has a similar, albeit more comprehensive approach to
218video standards, see :ref:`standard` for more information.
219
220Tuning
221======
222
223The V4L ``VIDIOCGTUNER`` and ``VIDIOCSTUNER`` ioctl and struct
224``video_tuner`` can be used to enumerate the tuners of a
225V4L TV or radio device. The equivalent V4L2 ioctls are
226:ref:`VIDIOC_G_TUNER <VIDIOC_G_TUNER>` and
227:ref:`VIDIOC_S_TUNER <VIDIOC_G_TUNER>` using struct
228:c:type:`v4l2_tuner`. Tuners are covered in :ref:`tuner`.
229
230The ``tuner`` field counting tuners was renamed to ``index``. The fields
231``name``, ``rangelow`` and ``rangehigh`` remained unchanged.
232
233The ``VIDEO_TUNER_PAL``, ``VIDEO_TUNER_NTSC`` and ``VIDEO_TUNER_SECAM``
234flags indicating the supported video standards were dropped. This
235information is now contained in the associated struct
236:c:type:`v4l2_input`. No replacement exists for the
237``VIDEO_TUNER_NORM`` flag indicating whether the video standard can be
238switched. The ``mode`` field to select a different video standard was
239replaced by a whole new set of ioctls and structures described in
240:ref:`standard`. Due to its ubiquity it should be mentioned the BTTV
241driver supports several standards in addition to the regular
242``VIDEO_MODE_PAL`` (0), ``VIDEO_MODE_NTSC``, ``VIDEO_MODE_SECAM`` and
243``VIDEO_MODE_AUTO`` (3). Namely N/PAL Argentina, M/PAL, N/PAL, and NTSC
244Japan with numbers 3-6 (sic).
245
246The ``VIDEO_TUNER_STEREO_ON`` flag indicating stereo reception became
247``V4L2_TUNER_SUB_STEREO`` in field ``rxsubchans``. This field also
248permits the detection of monaural and bilingual audio, see the
249definition of struct :c:type:`v4l2_tuner` for details.
250Presently no replacement exists for the ``VIDEO_TUNER_RDS_ON`` and
251``VIDEO_TUNER_MBS_ON`` flags.
252
253The ``VIDEO_TUNER_LOW`` flag was renamed to ``V4L2_TUNER_CAP_LOW`` in
254the struct :c:type:`v4l2_tuner` ``capability`` field.
255
256The ``VIDIOCGFREQ`` and ``VIDIOCSFREQ`` ioctl to change the tuner
257frequency where renamed to
258:ref:`VIDIOC_G_FREQUENCY <VIDIOC_G_FREQUENCY>` and
259:ref:`VIDIOC_S_FREQUENCY <VIDIOC_G_FREQUENCY>`. They take a pointer
260to a struct :c:type:`v4l2_frequency` instead of an
261unsigned long integer.
262
263.. _v4l-image-properties:
264
265Image Properties
266================
267
268V4L2 has no equivalent of the ``VIDIOCGPICT`` and ``VIDIOCSPICT`` ioctl
269and struct ``video_picture``. The following fields where
270replaced by V4L2 controls accessible with the
271:ref:`VIDIOC_QUERYCTRL`,
272:ref:`VIDIOC_G_CTRL <VIDIOC_G_CTRL>` and
273:ref:`VIDIOC_S_CTRL <VIDIOC_G_CTRL>` ioctls:
274
275
276.. flat-table::
277    :header-rows:  1
278    :stub-columns: 0
279
280    * - struct ``video_picture``
281      - V4L2 Control ID
282    * - ``brightness``
283      - ``V4L2_CID_BRIGHTNESS``
284    * - ``hue``
285      - ``V4L2_CID_HUE``
286    * - ``colour``
287      - ``V4L2_CID_SATURATION``
288    * - ``contrast``
289      - ``V4L2_CID_CONTRAST``
290    * - ``whiteness``
291      - ``V4L2_CID_WHITENESS``
292
293The V4L picture controls are assumed to range from 0 to 65535 with no
294particular reset value. The V4L2 API permits arbitrary limits and
295defaults which can be queried with the
296:ref:`VIDIOC_QUERYCTRL` ioctl. For general
297information about controls see :ref:`control`.
298
299The ``depth`` (average number of bits per pixel) of a video image is
300implied by the selected image format. V4L2 does not explicitly provide
301such information assuming applications recognizing the format are aware
302of the image depth and others need not know. The ``palette`` field moved
303into the struct :c:type:`v4l2_pix_format`:
304
305
306.. flat-table::
307    :header-rows:  1
308    :stub-columns: 0
309
310    * - struct ``video_picture`` ``palette``
311      - struct :c:type:`v4l2_pix_format` ``pixfmt``
312    * - ``VIDEO_PALETTE_GREY``
313      - :ref:`V4L2_PIX_FMT_GREY <V4L2-PIX-FMT-GREY>`
314    * - ``VIDEO_PALETTE_HI240``
315      - :ref:`V4L2_PIX_FMT_HI240 <pixfmt-reserved>` [#f3]_
316    * - ``VIDEO_PALETTE_RGB565``
317      - :ref:`V4L2_PIX_FMT_RGB565 <pixfmt-rgb>`
318    * - ``VIDEO_PALETTE_RGB555``
319      - :ref:`V4L2_PIX_FMT_RGB555 <pixfmt-rgb>`
320    * - ``VIDEO_PALETTE_RGB24``
321      - :ref:`V4L2_PIX_FMT_BGR24 <pixfmt-rgb>`
322    * - ``VIDEO_PALETTE_RGB32``
323      - :ref:`V4L2_PIX_FMT_BGR32 <pixfmt-rgb>` [#f4]_
324    * - ``VIDEO_PALETTE_YUV422``
325      - :ref:`V4L2_PIX_FMT_YUYV <V4L2-PIX-FMT-YUYV>`
326    * - ``VIDEO_PALETTE_YUYV``\  [#f5]_
327      - :ref:`V4L2_PIX_FMT_YUYV <V4L2-PIX-FMT-YUYV>`
328    * - ``VIDEO_PALETTE_UYVY``
329      - :ref:`V4L2_PIX_FMT_UYVY <V4L2-PIX-FMT-UYVY>`
330    * - ``VIDEO_PALETTE_YUV420``
331      - None
332    * - ``VIDEO_PALETTE_YUV411``
333      - :ref:`V4L2_PIX_FMT_Y41P <V4L2-PIX-FMT-Y41P>` [#f6]_
334    * - ``VIDEO_PALETTE_RAW``
335      - None [#f7]_
336    * - ``VIDEO_PALETTE_YUV422P``
337      - :ref:`V4L2_PIX_FMT_YUV422P <V4L2-PIX-FMT-YUV422P>`
338    * - ``VIDEO_PALETTE_YUV411P``
339      - :ref:`V4L2_PIX_FMT_YUV411P <V4L2-PIX-FMT-YUV411P>` [#f8]_
340    * - ``VIDEO_PALETTE_YUV420P``
341      - :ref:`V4L2_PIX_FMT_YVU420 <V4L2-PIX-FMT-YVU420>`
342    * - ``VIDEO_PALETTE_YUV410P``
343      - :ref:`V4L2_PIX_FMT_YVU410 <V4L2-PIX-FMT-YVU410>`
344
345V4L2 image formats are defined in :ref:`pixfmt`. The image format can
346be selected with the :ref:`VIDIOC_S_FMT <VIDIOC_G_FMT>` ioctl.
347
348Audio
349=====
350
351The ``VIDIOCGAUDIO`` and ``VIDIOCSAUDIO`` ioctl and struct
352``video_audio`` are used to enumerate the audio inputs
353of a V4L device. The equivalent V4L2 ioctls are
354:ref:`VIDIOC_G_AUDIO <VIDIOC_G_AUDIO>` and
355:ref:`VIDIOC_S_AUDIO <VIDIOC_G_AUDIO>` using struct
356:c:type:`v4l2_audio` as discussed in :ref:`audio`.
357
358The ``audio`` "channel number" field counting audio inputs was renamed
359to ``index``.
360
361On ``VIDIOCSAUDIO`` the ``mode`` field selects *one* of the
362``VIDEO_SOUND_MONO``, ``VIDEO_SOUND_STEREO``, ``VIDEO_SOUND_LANG1`` or
363``VIDEO_SOUND_LANG2`` audio demodulation modes. When the current audio
364standard is BTSC ``VIDEO_SOUND_LANG2`` refers to SAP and
365``VIDEO_SOUND_LANG1`` is meaningless. Also undocumented in the V4L
366specification, there is no way to query the selected mode. On
367``VIDIOCGAUDIO`` the driver returns the *actually received* audio
368programmes in this field. In the V4L2 API this information is stored in
369the struct :c:type:`v4l2_tuner` ``rxsubchans`` and
370``audmode`` fields, respectively. See :ref:`tuner` for more
371information on tuners. Related to audio modes struct
372:c:type:`v4l2_audio` also reports if this is a mono or
373stereo input, regardless if the source is a tuner.
374
375The following fields where replaced by V4L2 controls accessible with the
376:ref:`VIDIOC_QUERYCTRL`,
377:ref:`VIDIOC_G_CTRL <VIDIOC_G_CTRL>` and
378:ref:`VIDIOC_S_CTRL <VIDIOC_G_CTRL>` ioctls:
379
380
381.. flat-table::
382    :header-rows:  1
383    :stub-columns: 0
384
385    * - struct ``video_audio``
386      - V4L2 Control ID
387    * - ``volume``
388      - ``V4L2_CID_AUDIO_VOLUME``
389    * - ``bass``
390      - ``V4L2_CID_AUDIO_BASS``
391    * - ``treble``
392      - ``V4L2_CID_AUDIO_TREBLE``
393    * - ``balance``
394      - ``V4L2_CID_AUDIO_BALANCE``
395
396To determine which of these controls are supported by a driver V4L
397provides the ``flags`` ``VIDEO_AUDIO_VOLUME``, ``VIDEO_AUDIO_BASS``,
398``VIDEO_AUDIO_TREBLE`` and ``VIDEO_AUDIO_BALANCE``. In the V4L2 API the
399:ref:`VIDIOC_QUERYCTRL` ioctl reports if the
400respective control is supported. Accordingly the ``VIDEO_AUDIO_MUTABLE``
401and ``VIDEO_AUDIO_MUTE`` flags where replaced by the boolean
402``V4L2_CID_AUDIO_MUTE`` control.
403
404All V4L2 controls have a ``step`` attribute replacing the struct
405``video_audio`` ``step`` field. The V4L audio controls
406are assumed to range from 0 to 65535 with no particular reset value. The
407V4L2 API permits arbitrary limits and defaults which can be queried with
408the :ref:`VIDIOC_QUERYCTRL` ioctl. For general
409information about controls see :ref:`control`.
410
411Frame Buffer Overlay
412====================
413
414The V4L2 ioctls equivalent to ``VIDIOCGFBUF`` and ``VIDIOCSFBUF`` are
415:ref:`VIDIOC_G_FBUF <VIDIOC_G_FBUF>` and
416:ref:`VIDIOC_S_FBUF <VIDIOC_G_FBUF>`. The ``base`` field of struct
417``video_buffer`` remained unchanged, except V4L2 defines
418a flag to indicate non-destructive overlays instead of a ``NULL``
419pointer. All other fields moved into the struct
420:c:type:`v4l2_pix_format` ``fmt`` substructure of
421struct :c:type:`v4l2_framebuffer`. The ``depth``
422field was replaced by ``pixelformat``. See :ref:`pixfmt-rgb` for a
423list of RGB formats and their respective color depths.
424
425Instead of the special ioctls ``VIDIOCGWIN`` and ``VIDIOCSWIN`` V4L2
426uses the general-purpose data format negotiation ioctls
427:ref:`VIDIOC_G_FMT <VIDIOC_G_FMT>` and
428:ref:`VIDIOC_S_FMT <VIDIOC_G_FMT>`. They take a pointer to a struct
429:c:type:`v4l2_format` as argument. Here the ``win`` member
430of the ``fmt`` union is used, a struct
431:c:type:`v4l2_window`.
432
433The ``x``, ``y``, ``width`` and ``height`` fields of struct
434``video_window`` moved into struct
435:c:type:`v4l2_rect` substructure ``w`` of struct
436:c:type:`v4l2_window`. The ``chromakey``, ``clips``, and
437``clipcount`` fields remained unchanged. Struct
438``video_clip`` was renamed to struct
439:c:type:`v4l2_clip`, also containing a struct
440:c:type:`v4l2_rect`, but the semantics are still the same.
441
442The ``VIDEO_WINDOW_INTERLACE`` flag was dropped. Instead applications
443must set the ``field`` field to ``V4L2_FIELD_ANY`` or
444``V4L2_FIELD_INTERLACED``. The ``VIDEO_WINDOW_CHROMAKEY`` flag moved
445into struct :c:type:`v4l2_framebuffer`, under the new
446name ``V4L2_FBUF_FLAG_CHROMAKEY``.
447
448In V4L, storing a bitmap pointer in ``clips`` and setting ``clipcount``
449to ``VIDEO_CLIP_BITMAP`` (-1) requests bitmap clipping, using a fixed
450size bitmap of 1024 × 625 bits. Struct :c:type:`v4l2_window`
451has a separate ``bitmap`` pointer field for this purpose and the bitmap
452size is determined by ``w.width`` and ``w.height``.
453
454The ``VIDIOCCAPTURE`` ioctl to enable or disable overlay was renamed to
455:ref:`VIDIOC_OVERLAY`.
456
457Cropping
458========
459
460To capture only a subsection of the full picture V4L defines the
461``VIDIOCGCAPTURE`` and ``VIDIOCSCAPTURE`` ioctls using struct
462``video_capture``. The equivalent V4L2 ioctls are
463:ref:`VIDIOC_G_CROP <VIDIOC_G_CROP>` and
464:ref:`VIDIOC_S_CROP <VIDIOC_G_CROP>` using struct
465:c:type:`v4l2_crop`, and the related
466:ref:`VIDIOC_CROPCAP` ioctl. This is a rather
467complex matter, see :ref:`crop` for details.
468
469The ``x``, ``y``, ``width`` and ``height`` fields moved into struct
470:c:type:`v4l2_rect` substructure ``c`` of struct
471:c:type:`v4l2_crop`. The ``decimation`` field was dropped. In
472the V4L2 API the scaling factor is implied by the size of the cropping
473rectangle and the size of the captured or overlaid image.
474
475The ``VIDEO_CAPTURE_ODD`` and ``VIDEO_CAPTURE_EVEN`` flags to capture
476only the odd or even field, respectively, were replaced by
477``V4L2_FIELD_TOP`` and ``V4L2_FIELD_BOTTOM`` in the field named
478``field`` of struct :c:type:`v4l2_pix_format` and
479struct :c:type:`v4l2_window`. These structures are used to
480select a capture or overlay format with the
481:ref:`VIDIOC_S_FMT <VIDIOC_G_FMT>` ioctl.
482
483Reading Images, Memory Mapping
484==============================
485
486Capturing using the read method
487-------------------------------
488
489There is no essential difference between reading images from a V4L or
490V4L2 device using the :c:func:`read()` function, however V4L2
491drivers are not required to support this I/O method. Applications can
492determine if the function is available with the
493:ref:`VIDIOC_QUERYCAP` ioctl. All V4L2 devices
494exchanging data with applications must support the
495:c:func:`select()` and :c:func:`poll()`
496functions.
497
498To select an image format and size, V4L provides the ``VIDIOCSPICT`` and
499``VIDIOCSWIN`` ioctls. V4L2 uses the general-purpose data format
500negotiation ioctls :ref:`VIDIOC_G_FMT <VIDIOC_G_FMT>` and
501:ref:`VIDIOC_S_FMT <VIDIOC_G_FMT>`. They take a pointer to a struct
502:c:type:`v4l2_format` as argument, here the struct
503:c:type:`v4l2_pix_format` named ``pix`` of its
504``fmt`` union is used.
505
506For more information about the V4L2 read interface see :ref:`rw`.
507
508Capturing using memory mapping
509------------------------------
510
511Applications can read from V4L devices by mapping buffers in device
512memory, or more often just buffers allocated in DMA-able system memory,
513into their address space. This avoids the data copying overhead of the
514read method. V4L2 supports memory mapping as well, with a few
515differences.
516
517
518.. flat-table::
519    :header-rows:  1
520    :stub-columns: 0
521
522    * - V4L
523      - V4L2
524    * -
525      - The image format must be selected before buffers are allocated,
526	with the :ref:`VIDIOC_S_FMT <VIDIOC_G_FMT>` ioctl. When no
527	format is selected the driver may use the last, possibly by
528	another application requested format.
529    * - Applications cannot change the number of buffers. The it is built
530	into the driver, unless it has a module option to change the
531	number when the driver module is loaded.
532      - The :ref:`VIDIOC_REQBUFS` ioctl allocates the
533	desired number of buffers, this is a required step in the
534	initialization sequence.
535    * - Drivers map all buffers as one contiguous range of memory. The
536	``VIDIOCGMBUF`` ioctl is available to query the number of buffers,
537	the offset of each buffer from the start of the virtual file, and
538	the overall amount of memory used, which can be used as arguments
539	for the :c:func:`mmap()` function.
540      - Buffers are individually mapped. The offset and size of each
541	buffer can be determined with the
542	:ref:`VIDIOC_QUERYBUF` ioctl.
543    * - The ``VIDIOCMCAPTURE`` ioctl prepares a buffer for capturing. It
544	also determines the image format for this buffer. The ioctl
545	returns immediately, eventually with an ``EAGAIN`` error code if no
546	video signal had been detected. When the driver supports more than
547	one buffer applications can call the ioctl multiple times and thus
548	have multiple outstanding capture requests.
549
550	The ``VIDIOCSYNC`` ioctl suspends execution until a particular
551	buffer has been filled.
552      - Drivers maintain an incoming and outgoing queue.
553	:ref:`VIDIOC_QBUF` enqueues any empty buffer into
554	the incoming queue. Filled buffers are dequeued from the outgoing
555	queue with the :ref:`VIDIOC_DQBUF <VIDIOC_QBUF>` ioctl. To wait
556	until filled buffers become available this function,
557	:c:func:`select()` or :c:func:`poll()` can
558	be used. The :ref:`VIDIOC_STREAMON` ioctl
559	must be called once after enqueuing one or more buffers to start
560	capturing. Its counterpart
561	:ref:`VIDIOC_STREAMOFF <VIDIOC_STREAMON>` stops capturing and
562	dequeues all buffers from both queues. Applications can query the
563	signal status, if known, with the
564	:ref:`VIDIOC_ENUMINPUT` ioctl.
565
566For a more in-depth discussion of memory mapping and examples, see
567:ref:`mmap`.
568
569Reading Raw VBI Data
570====================
571
572Originally the V4L API did not specify a raw VBI capture interface, only
573the device file ``/dev/vbi`` was reserved for this purpose. The only
574driver supporting this interface was the BTTV driver, de-facto defining
575the V4L VBI interface. Reading from the device yields a raw VBI image
576with the following parameters:
577
578
579.. flat-table::
580    :header-rows:  1
581    :stub-columns: 0
582
583    * - struct :c:type:`v4l2_vbi_format`
584      - V4L, BTTV driver
585    * - sampling_rate
586      - 28636363 Hz NTSC (or any other 525-line standard); 35468950 Hz PAL
587	and SECAM (625-line standards)
588    * - offset
589      - ?
590    * - samples_per_line
591      - 2048
592    * - sample_format
593      - V4L2_PIX_FMT_GREY. The last four bytes (a machine endianness
594	integer) contain a frame counter.
595    * - start[]
596      - 10, 273 NTSC; 22, 335 PAL and SECAM
597    * - count[]
598      - 16, 16 [#f9]_
599    * - flags
600      - 0
601
602Undocumented in the V4L specification, in Linux 2.3 the
603``VIDIOCGVBIFMT`` and ``VIDIOCSVBIFMT`` ioctls using struct
604``vbi_format`` were added to determine the VBI image
605parameters. These ioctls are only partially compatible with the V4L2 VBI
606interface specified in :ref:`raw-vbi`.
607
608An ``offset`` field does not exist, ``sample_format`` is supposed to be
609``VIDEO_PALETTE_RAW``, equivalent to ``V4L2_PIX_FMT_GREY``. The
610remaining fields are probably equivalent to struct
611:c:type:`v4l2_vbi_format`.
612
613Apparently only the Zoran (ZR 36120) driver implements these ioctls. The
614semantics differ from those specified for V4L2 in two ways. The
615parameters are reset on :c:func:`open()` and
616``VIDIOCSVBIFMT`` always returns an ``EINVAL`` error code if the parameters
617are invalid.
618
619Miscellaneous
620=============
621
622V4L2 has no equivalent of the ``VIDIOCGUNIT`` ioctl. Applications can
623find the VBI device associated with a video capture device (or vice
624versa) by reopening the device and requesting VBI data. For details see
625:ref:`open`.
626
627No replacement exists for ``VIDIOCKEY``, and the V4L functions for
628microcode programming. A new interface for MPEG compression and playback
629devices is documented in :ref:`extended-controls`.
630
631.. [#f1]
632   According to Documentation/admin-guide/devices.rst these should be symbolic links
633   to ``/dev/video0``. Note the original bttv interface is not
634   compatible with V4L or V4L2.
635
636.. [#f2]
637   According to ``Documentation/admin-guide/devices.rst`` a symbolic link to
638   ``/dev/radio0``.
639
640.. [#f3]
641   This is a custom format used by the BTTV driver, not one of the V4L2
642   standard formats.
643
644.. [#f4]
645   Presumably all V4L RGB formats are little-endian, although some
646   drivers might interpret them according to machine endianness. V4L2
647   defines little-endian, big-endian and red/blue swapped variants. For
648   details see :ref:`pixfmt-rgb`.
649
650.. [#f5]
651   ``VIDEO_PALETTE_YUV422`` and ``VIDEO_PALETTE_YUYV`` are the same
652   formats. Some V4L drivers respond to one, some to the other.
653
654.. [#f6]
655   Not to be confused with ``V4L2_PIX_FMT_YUV411P``, which is a planar
656   format.
657
658.. [#f7]
659   V4L explains this as: "RAW capture (BT848)"
660
661.. [#f8]
662   Not to be confused with ``V4L2_PIX_FMT_Y41P``, which is a packed
663   format.
664
665.. [#f9]
666   Old driver versions used different values, eventually the custom
667   ``BTTV_VBISIZE`` ioctl was added to query the correct values.
668