WIP FPC-III support
[linux/fpc-iii.git] / Documentation / userspace-api / media / dvb / video-get-size.rst
blobde34331c5bd168ae4b4d4e95d25277d14cbe638b
1 .. SPDX-License-Identifier: GFDL-1.1-no-invariants-or-later
2 .. c:namespace:: DTV.video
4 .. _VIDEO_GET_SIZE:
6 ==============
7 VIDEO_GET_SIZE
8 ==============
10 Name
11 ----
13 VIDEO_GET_SIZE
15 .. attention:: This ioctl is deprecated.
17 Synopsis
18 --------
20 .. c:macro:: VIDEO_GET_SIZE
22 ``int ioctl(int fd, VIDEO_GET_SIZE, video_size_t *size)``
24 Arguments
25 ---------
27 .. flat-table::
28     :header-rows:  0
29     :stub-columns: 0
31     -  .. row 1
33        -  int fd
35        -  File descriptor returned by a previous call to open().
37     -  .. row 2
39        -  int request
41        -  Equals VIDEO_GET_SIZE for this command.
43     -  .. row 3
45        -  video_size_t \*size
47        -  Returns the size and aspect ratio.
49 Description
50 -----------
52 This ioctl returns the size and aspect ratio.
54 .. c:type:: video_size_t
56 .. code-block::c
58         typedef struct {
59                 int w;
60                 int h;
61                 video_format_t aspect_ratio;
62         } video_size_t;
64 Return Value
65 ------------
67 On success 0 is returned, on error -1 and the ``errno`` variable is set
68 appropriately. The generic error codes are described at the
69 :ref:`Generic Error Codes <gen-errors>` chapter.