Linux 4.8.3
[linux/fpc-iii.git] / Documentation / media / uapi / v4l / vidioc-enum-framesizes.rst
blob8b268354d44270cc9b419ca0164bcf8a7f68512c
1 .. -*- coding: utf-8; mode: rst -*-
3 .. _VIDIOC_ENUM_FRAMESIZES:
5 ****************************
6 ioctl VIDIOC_ENUM_FRAMESIZES
7 ****************************
9 Name
10 ====
12 VIDIOC_ENUM_FRAMESIZES - Enumerate frame sizes
15 Synopsis
16 ========
18 .. cpp:function:: int ioctl( int fd, int request, struct v4l2_frmsizeenum *argp )
21 Arguments
22 =========
24 ``fd``
25     File descriptor returned by :ref:`open() <func-open>`.
27 ``request``
28     VIDIOC_ENUM_FRAMESIZES
30 ``argp``
31     Pointer to a struct :ref:`v4l2_frmsizeenum <v4l2-frmsizeenum>`
32     that contains an index and pixel format and receives a frame width
33     and height.
36 Description
37 ===========
39 This ioctl allows applications to enumerate all frame sizes (i. e. width
40 and height in pixels) that the device supports for the given pixel
41 format.
43 The supported pixel formats can be obtained by using the
44 :ref:`VIDIOC_ENUM_FMT` function.
46 The return value and the content of the ``v4l2_frmsizeenum.type`` field
47 depend on the type of frame sizes the device supports. Here are the
48 semantics of the function for the different cases:
50 -  **Discrete:** The function returns success if the given index value
51    (zero-based) is valid. The application should increase the index by
52    one for each call until ``EINVAL`` is returned. The
53    ``v4l2_frmsizeenum.type`` field is set to
54    ``V4L2_FRMSIZE_TYPE_DISCRETE`` by the driver. Of the union only the
55    ``discrete`` member is valid.
57 -  **Step-wise:** The function returns success if the given index value
58    is zero and ``EINVAL`` for any other index value. The
59    ``v4l2_frmsizeenum.type`` field is set to
60    ``V4L2_FRMSIZE_TYPE_STEPWISE`` by the driver. Of the union only the
61    ``stepwise`` member is valid.
63 -  **Continuous:** This is a special case of the step-wise type above.
64    The function returns success if the given index value is zero and
65    ``EINVAL`` for any other index value. The ``v4l2_frmsizeenum.type``
66    field is set to ``V4L2_FRMSIZE_TYPE_CONTINUOUS`` by the driver. Of
67    the union only the ``stepwise`` member is valid and the
68    ``step_width`` and ``step_height`` values are set to 1.
70 When the application calls the function with index zero, it must check
71 the ``type`` field to determine the type of frame size enumeration the
72 device supports. Only for the ``V4L2_FRMSIZE_TYPE_DISCRETE`` type does
73 it make sense to increase the index value to receive more frame sizes.
75 .. note:: The order in which the frame sizes are returned has no special
76    meaning. In particular does it not say anything about potential default
77    format sizes.
79 Applications can assume that the enumeration data does not change
80 without any interaction from the application itself. This means that the
81 enumeration data is consistent if the application does not perform any
82 other ioctl calls while it runs the frame size enumeration.
85 Structs
86 =======
88 In the structs below, *IN* denotes a value that has to be filled in by
89 the application, *OUT* denotes values that the driver fills in. The
90 application should zero out all members except for the *IN* fields.
93 .. _v4l2-frmsize-discrete:
95 .. flat-table:: struct v4l2_frmsize_discrete
96     :header-rows:  0
97     :stub-columns: 0
98     :widths:       1 1 2
101     -  .. row 1
103        -  __u32
105        -  ``width``
107        -  Width of the frame [pixel].
109     -  .. row 2
111        -  __u32
113        -  ``height``
115        -  Height of the frame [pixel].
119 .. _v4l2-frmsize-stepwise:
121 .. flat-table:: struct v4l2_frmsize_stepwise
122     :header-rows:  0
123     :stub-columns: 0
124     :widths:       1 1 2
127     -  .. row 1
129        -  __u32
131        -  ``min_width``
133        -  Minimum frame width [pixel].
135     -  .. row 2
137        -  __u32
139        -  ``max_width``
141        -  Maximum frame width [pixel].
143     -  .. row 3
145        -  __u32
147        -  ``step_width``
149        -  Frame width step size [pixel].
151     -  .. row 4
153        -  __u32
155        -  ``min_height``
157        -  Minimum frame height [pixel].
159     -  .. row 5
161        -  __u32
163        -  ``max_height``
165        -  Maximum frame height [pixel].
167     -  .. row 6
169        -  __u32
171        -  ``step_height``
173        -  Frame height step size [pixel].
177 .. _v4l2-frmsizeenum:
179 .. flat-table:: struct v4l2_frmsizeenum
180     :header-rows:  0
181     :stub-columns: 0
184     -  .. row 1
186        -  __u32
188        -  ``index``
190        -
191        -  IN: Index of the given frame size in the enumeration.
193     -  .. row 2
195        -  __u32
197        -  ``pixel_format``
199        -
200        -  IN: Pixel format for which the frame sizes are enumerated.
202     -  .. row 3
204        -  __u32
206        -  ``type``
208        -
209        -  OUT: Frame size type the device supports.
211     -  .. row 4
213        -  union
215        -
216        -
217        -  OUT: Frame size with the given index.
219     -  .. row 5
221        -
222        -  struct :ref:`v4l2_frmsize_discrete <v4l2-frmsize-discrete>`
224        -  ``discrete``
226        -
228     -  .. row 6
230        -
231        -  struct :ref:`v4l2_frmsize_stepwise <v4l2-frmsize-stepwise>`
233        -  ``stepwise``
235        -
237     -  .. row 7
239        -  __u32
241        -  ``reserved[2]``
243        -
244        -  Reserved space for future use. Must be zeroed by drivers and
245           applications.
249 Enums
250 =====
253 .. _v4l2-frmsizetypes:
255 .. flat-table:: enum v4l2_frmsizetypes
256     :header-rows:  0
257     :stub-columns: 0
258     :widths:       3 1 4
261     -  .. row 1
263        -  ``V4L2_FRMSIZE_TYPE_DISCRETE``
265        -  1
267        -  Discrete frame size.
269     -  .. row 2
271        -  ``V4L2_FRMSIZE_TYPE_CONTINUOUS``
273        -  2
275        -  Continuous frame size.
277     -  .. row 3
279        -  ``V4L2_FRMSIZE_TYPE_STEPWISE``
281        -  3
283        -  Step-wise defined frame size.
286 Return Value
287 ============
289 On success 0 is returned, on error -1 and the ``errno`` variable is set
290 appropriately. The generic error codes are described at the
291 :ref:`Generic Error Codes <gen-errors>` chapter.