Linux 4.8.3
[linux/fpc-iii.git] / Documentation / media / uapi / v4l / vidioc-enum-fmt.rst
blob90996f69d6ae7885e89084abddb7bd825e3118a2
1 .. -*- coding: utf-8; mode: rst -*-
3 .. _VIDIOC_ENUM_FMT:
5 *********************
6 ioctl VIDIOC_ENUM_FMT
7 *********************
9 Name
10 ====
12 VIDIOC_ENUM_FMT - Enumerate image formats
15 Synopsis
16 ========
18 .. cpp:function:: int ioctl( int fd, int request, struct v4l2_fmtdesc *argp )
21 Arguments
22 =========
24 ``fd``
25     File descriptor returned by :ref:`open() <func-open>`.
27 ``request``
28     VIDIOC_ENUM_FMT
30 ``argp``
33 Description
34 ===========
36 To enumerate image formats applications initialize the ``type`` and
37 ``index`` field of struct :ref:`v4l2_fmtdesc <v4l2-fmtdesc>` and call
38 the :ref:`VIDIOC_ENUM_FMT` ioctl with a pointer to this structure. Drivers
39 fill the rest of the structure or return an ``EINVAL`` error code. All
40 formats are enumerable by beginning at index zero and incrementing by
41 one until ``EINVAL`` is returned.
43 .. note:: After switching input or output the list of enumerated image
44    formats may be different.
47 .. _v4l2-fmtdesc:
49 .. flat-table:: struct v4l2_fmtdesc
50     :header-rows:  0
51     :stub-columns: 0
52     :widths:       1 1 2
55     -  .. row 1
57        -  __u32
59        -  ``index``
61        -  Number of the format in the enumeration, set by the application.
62           This is in no way related to the ``pixelformat`` field.
64     -  .. row 2
66        -  __u32
68        -  ``type``
70        -  Type of the data stream, set by the application. Only these types
71           are valid here: ``V4L2_BUF_TYPE_VIDEO_CAPTURE``,
72           ``V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE``,
73           ``V4L2_BUF_TYPE_VIDEO_OUTPUT``,
74           ``V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE`` and
75           ``V4L2_BUF_TYPE_VIDEO_OVERLAY``. See :ref:`v4l2-buf-type`.
77     -  .. row 3
79        -  __u32
81        -  ``flags``
83        -  See :ref:`fmtdesc-flags`
85     -  .. row 4
87        -  __u8
89        -  ``description``\ [32]
91        -  Description of the format, a NUL-terminated ASCII string. This
92           information is intended for the user, for example: "YUV 4:2:2".
94     -  .. row 5
96        -  __u32
98        -  ``pixelformat``
100        -  The image format identifier. This is a four character code as
101           computed by the v4l2_fourcc() macro:
103     -  .. row 6
105        -  :cspan:`2`
108           .. _v4l2-fourcc:
109           .. code-block:: c
111               #define v4l2_fourcc(a,b,c,d) (((__u32)(a)<<0)|((__u32)(b)<<8)|((__u32)(c)<<16)|((__u32)(d)<<24))
113           Several image formats are already defined by this specification in
114           :ref:`pixfmt`.
116           .. attention:: These codes are not the same as those used
117              in the Windows world.
119     -  .. row 7
121        -  __u32
123        -  ``reserved``\ [4]
125        -  Reserved for future extensions. Drivers must set the array to
126           zero.
130 .. _fmtdesc-flags:
132 .. flat-table:: Image Format Description Flags
133     :header-rows:  0
134     :stub-columns: 0
135     :widths:       3 1 4
138     -  .. row 1
140        -  ``V4L2_FMT_FLAG_COMPRESSED``
142        -  0x0001
144        -  This is a compressed format.
146     -  .. row 2
148        -  ``V4L2_FMT_FLAG_EMULATED``
150        -  0x0002
152        -  This format is not native to the device but emulated through
153           software (usually libv4l2), where possible try to use a native
154           format instead for better performance.
157 Return Value
158 ============
160 On success 0 is returned, on error -1 and the ``errno`` variable is set
161 appropriately. The generic error codes are described at the
162 :ref:`Generic Error Codes <gen-errors>` chapter.
164 EINVAL
165     The struct :ref:`v4l2_fmtdesc <v4l2-fmtdesc>` ``type`` is not
166     supported or the ``index`` is out of bounds.