1 .. SPDX-License-Identifier: GFDL-1.1-no-invariants-or-later
4 .. _VIDIOC_G_SLICED_VBI_CAP:
6 *****************************
7 ioctl VIDIOC_G_SLICED_VBI_CAP
8 *****************************
13 VIDIOC_G_SLICED_VBI_CAP - Query sliced VBI capabilities
18 .. c:macro:: VIDIOC_G_SLICED_VBI_CAP
20 ``int ioctl(int fd, VIDIOC_G_SLICED_VBI_CAP, struct v4l2_sliced_vbi_cap *argp)``
26 File descriptor returned by :c:func:`open()`.
29 Pointer to struct :c:type:`v4l2_sliced_vbi_cap`.
34 To find out which data services are supported by a sliced VBI capture or
35 output device, applications initialize the ``type`` field of a struct
36 :c:type:`v4l2_sliced_vbi_cap`, clear the
37 ``reserved`` array and call the :ref:`VIDIOC_G_SLICED_VBI_CAP <VIDIOC_G_SLICED_VBI_CAP>` ioctl. The
38 driver fills in the remaining fields or returns an ``EINVAL`` error code if
39 the sliced VBI API is unsupported or ``type`` is invalid.
43 The ``type`` field was added, and the ioctl changed from read-only
44 to write-read, in Linux 2.6.19.
46 .. c:type:: v4l2_sliced_vbi_cap
48 .. tabularcolumns:: |p{1.2cm}|p{4.2cm}|p{4.1cm}|p{4.0cm}|p{4.0cm}|
50 .. flat-table:: struct v4l2_sliced_vbi_cap
57 - :cspan:`2` A set of all data services supported by the driver.
59 Equal to the union of all elements of the ``service_lines`` array.
61 - ``service_lines``\ [2][24]
62 - :cspan:`2` Each element of this array contains a set of data
63 services the hardware can look for or insert into a particular
64 scan line. Data services are defined in :ref:`vbi-services`.
65 Array indices map to ITU-R line numbers\ [#f1]_ as follows:
73 - ``service_lines``\ [0][1]
78 - ``service_lines``\ [0][23]
83 - ``service_lines``\ [1][1]
88 - ``service_lines``\ [1][23]
94 - :cspan:`2` The number of VBI lines the hardware can capture or
95 output per frame, or the number of services it can identify on a
96 given line may be limited. For example on PAL line 16 the hardware
97 may be able to look for a VPS or Teletext signal, but not both at
98 the same time. Applications can learn about these limits using the
99 :ref:`VIDIOC_S_FMT <VIDIOC_G_FMT>` ioctl as described in
104 - :cspan:`2` Drivers must set ``service_lines`` [0][0] and
105 ``service_lines``\ [1][0] to zero.
108 - Type of the data stream, see :c:type:`v4l2_buf_type`. Should be
109 ``V4L2_BUF_TYPE_SLICED_VBI_CAPTURE`` or
110 ``V4L2_BUF_TYPE_SLICED_VBI_OUTPUT``.
113 - :cspan:`2` This array is reserved for future extensions.
115 Applications and drivers must set it to zero.
119 See also :ref:`vbi-525` and :ref:`vbi-625`.
125 .. tabularcolumns:: |p{3.5cm}|p{1.0cm}|p{2.0cm}|p{2.0cm}|p{8.0cm}|
129 .. flat-table:: Sliced VBI services
139 * - ``V4L2_SLICED_TELETEXT_B`` (Teletext System B)
144 - PAL/SECAM line 7-22, 320-335 (second field 7-22)
145 - Last 42 of the 45 byte Teletext packet, that is without clock
146 run-in and framing code, lsb first transmitted.
147 * - ``V4L2_SLICED_VPS``
151 - Byte number 3 to 15 according to Figure 9 of ETS 300 231, lsb
153 * - ``V4L2_SLICED_CAPTION_525``
156 - NTSC line 21, 284 (second field 21)
157 - Two bytes in transmission order, including parity bit, lsb first
159 * - ``V4L2_SLICED_WSS_625``
171 Bit 7 6 5 4 3 2 1 0 x x 13 12 11 10 9
172 * - ``V4L2_SLICED_VBI_525``
174 - :cspan:`2` Set of services applicable to 525 line systems.
175 * - ``V4L2_SLICED_VBI_625``
177 - :cspan:`2` Set of services applicable to 625 line systems.
186 On success 0 is returned, on error -1 and the ``errno`` variable is set
187 appropriately. The generic error codes are described at the
188 :ref:`Generic Error Codes <gen-errors>` chapter.
191 The value in the ``type`` field is wrong.