1 .. -*- coding: utf-8; mode: rst -*-
3 .. _VIDIOC_G_SLICED_VBI_CAP:
5 *****************************
6 ioctl VIDIOC_G_SLICED_VBI_CAP
7 *****************************
12 VIDIOC_G_SLICED_VBI_CAP - Query sliced VBI capabilities
18 .. c:function:: int ioctl( int fd, VIDIOC_G_SLICED_VBI_CAP, struct v4l2_sliced_vbi_cap *argp )
19 :name: VIDIOC_G_SLICED_VBI_CAP
26 File descriptor returned by :ref:`open() <func-open>`.
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.
47 .. c:type:: v4l2_sliced_vbi_cap
49 .. tabularcolumns:: |p{1.2cm}|p{4.2cm}|p{4.1cm}|p{4.0cm}|p{4.0cm}|
51 .. flat-table:: struct v4l2_sliced_vbi_cap
58 - :cspan:`2` A set of all data services supported by the driver.
60 Equal to the union of all elements of the ``service_lines`` array.
62 - ``service_lines``\ [2][24]
63 - :cspan:`2` Each element of this array contains a set of data
64 services the hardware can look for or insert into a particular
65 scan line. Data services are defined in :ref:`vbi-services`.
66 Array indices map to ITU-R line numbers\ [#f1]_ as follows:
74 - ``service_lines``\ [0][1]
79 - ``service_lines``\ [0][23]
84 - ``service_lines``\ [1][1]
89 - ``service_lines``\ [1][23]
95 - :cspan:`2` The number of VBI lines the hardware can capture or
96 output per frame, or the number of services it can identify on a
97 given line may be limited. For example on PAL line 16 the hardware
98 may be able to look for a VPS or Teletext signal, but not both at
99 the same time. Applications can learn about these limits using the
100 :ref:`VIDIOC_S_FMT <VIDIOC_G_FMT>` ioctl as described in
105 - :cspan:`2` Drivers must set ``service_lines`` [0][0] and
106 ``service_lines``\ [1][0] to zero.
109 - Type of the data stream, see :c:type:`v4l2_buf_type`. Should be
110 ``V4L2_BUF_TYPE_SLICED_VBI_CAPTURE`` or
111 ``V4L2_BUF_TYPE_SLICED_VBI_OUTPUT``.
114 - :cspan:`2` This array is reserved for future extensions.
116 Applications and drivers must set it to zero.
120 See also :ref:`vbi-525` and :ref:`vbi-625`.
125 \begin{adjustbox}{width=\columnwidth}
127 .. tabularcolumns:: |p{5.0cm}|p{1.4cm}|p{3.0cm}|p{2.5cm}|p{9.0cm}|
131 .. flat-table:: Sliced VBI services
141 * - ``V4L2_SLICED_TELETEXT_B`` (Teletext System B)
146 - PAL/SECAM line 7-22, 320-335 (second field 7-22)
147 - Last 42 of the 45 byte Teletext packet, that is without clock
148 run-in and framing code, lsb first transmitted.
149 * - ``V4L2_SLICED_VPS``
153 - Byte number 3 to 15 according to Figure 9 of ETS 300 231, lsb
155 * - ``V4L2_SLICED_CAPTION_525``
158 - NTSC line 21, 284 (second field 21)
159 - Two bytes in transmission order, including parity bit, lsb first
161 * - ``V4L2_SLICED_WSS_625``
173 Bit 7 6 5 4 3 2 1 0 x x 13 12 11 10 9
174 * - ``V4L2_SLICED_VBI_525``
176 - :cspan:`2` Set of services applicable to 525 line systems.
177 * - ``V4L2_SLICED_VBI_625``
179 - :cspan:`2` Set of services applicable to 625 line systems.
183 \end{adjustbox}\newline\newline
189 On success 0 is returned, on error -1 and the ``errno`` variable is set
190 appropriately. The generic error codes are described at the
191 :ref:`Generic Error Codes <gen-errors>` chapter.
194 The value in the ``type`` field is wrong.