Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v4.9 656 lines 23 kB view raw
1.. -*- coding: utf-8; mode: rst -*- 2 3.. _sliced: 4 5************************* 6Sliced VBI Data Interface 7************************* 8 9VBI stands for Vertical Blanking Interval, a gap in the sequence of 10lines of an analog video signal. During VBI no picture information is 11transmitted, allowing some time while the electron beam of a cathode ray 12tube TV returns to the top of the screen. 13 14Sliced VBI devices use hardware to demodulate data transmitted in the 15VBI. V4L2 drivers shall *not* do this by software, see also the 16:ref:`raw VBI interface <raw-vbi>`. The data is passed as short 17packets of fixed size, covering one scan line each. The number of 18packets per video frame is variable. 19 20Sliced VBI capture and output devices are accessed through the same 21character special files as raw VBI devices. When a driver supports both 22interfaces, the default function of a ``/dev/vbi`` device is *raw* VBI 23capturing or output, and the sliced VBI function is only available after 24calling the :ref:`VIDIOC_S_FMT <VIDIOC_G_FMT>` ioctl as defined 25below. Likewise a ``/dev/video`` device may support the sliced VBI API, 26however the default function here is video capturing or output. 27Different file descriptors must be used to pass raw and sliced VBI data 28simultaneously, if this is supported by the driver. 29 30 31Querying Capabilities 32===================== 33 34Devices supporting the sliced VBI capturing or output API set the 35``V4L2_CAP_SLICED_VBI_CAPTURE`` or ``V4L2_CAP_SLICED_VBI_OUTPUT`` flag 36respectively, in the ``capabilities`` field of struct 37:c:type:`v4l2_capability` returned by the 38:ref:`VIDIOC_QUERYCAP` ioctl. At least one of the 39read/write, streaming or asynchronous :ref:`I/O methods <io>` must be 40supported. Sliced VBI devices may have a tuner or modulator. 41 42 43Supplemental Functions 44====================== 45 46Sliced VBI devices shall support :ref:`video input or output <video>` 47and :ref:`tuner or modulator <tuner>` ioctls if they have these 48capabilities, and they may support :ref:`control` ioctls. 49The :ref:`video standard <standard>` ioctls provide information vital 50to program a sliced VBI device, therefore must be supported. 51 52 53.. _sliced-vbi-format-negotitation: 54 55Sliced VBI Format Negotiation 56============================= 57 58To find out which data services are supported by the hardware 59applications can call the 60:ref:`VIDIOC_G_SLICED_VBI_CAP <VIDIOC_G_SLICED_VBI_CAP>` ioctl. 61All drivers implementing the sliced VBI interface must support this 62ioctl. The results may differ from those of the 63:ref:`VIDIOC_S_FMT <VIDIOC_G_FMT>` ioctl when the number of VBI 64lines the hardware can capture or output per frame, or the number of 65services it can identify on a given line are limited. For example on PAL 66line 16 the hardware may be able to look for a VPS or Teletext signal, 67but not both at the same time. 68 69To determine the currently selected services applications set the 70``type`` field of struct :c:type:`v4l2_format` to 71``V4L2_BUF_TYPE_SLICED_VBI_CAPTURE`` or 72``V4L2_BUF_TYPE_SLICED_VBI_OUTPUT``, and the 73:ref:`VIDIOC_G_FMT <VIDIOC_G_FMT>` ioctl fills the ``fmt.sliced`` 74member, a struct 75:c:type:`v4l2_sliced_vbi_format`. 76 77Applications can request different parameters by initializing or 78modifying the ``fmt.sliced`` member and calling the 79:ref:`VIDIOC_S_FMT <VIDIOC_G_FMT>` ioctl with a pointer to the 80struct :c:type:`v4l2_format` structure. 81 82The sliced VBI API is more complicated than the raw VBI API because the 83hardware must be told which VBI service to expect on each scan line. Not 84all services may be supported by the hardware on all lines (this is 85especially true for VBI output where Teletext is often unsupported and 86other services can only be inserted in one specific line). In many 87cases, however, it is sufficient to just set the ``service_set`` field 88to the required services and let the driver fill the ``service_lines`` 89array according to hardware capabilities. Only if more precise control 90is needed should the programmer set the ``service_lines`` array 91explicitly. 92 93The :ref:`VIDIOC_S_FMT <VIDIOC_G_FMT>` ioctl modifies the parameters 94according to hardware capabilities. When the driver allocates resources 95at this point, it may return an ``EBUSY`` error code if the required 96resources are temporarily unavailable. Other resource allocation points 97which may return ``EBUSY`` can be the 98:ref:`VIDIOC_STREAMON` ioctl and the first 99:ref:`read() <func-read>`, :ref:`write() <func-write>` and 100:ref:`select() <func-select>` call. 101 102 103.. c:type:: v4l2_sliced_vbi_format 104 105struct v4l2_sliced_vbi_format 106----------------------------- 107 108.. tabularcolumns:: |p{1.0cm}|p{4.5cm}|p{4.0cm}|p{4.0cm}|p{4.0cm}| 109 110.. cssclass:: longtable 111 112.. flat-table:: 113 :header-rows: 0 114 :stub-columns: 0 115 :widths: 3 3 2 2 2 116 117 * - __u32 118 - ``service_set`` 119 - :cspan:`2` 120 121 If ``service_set`` is non-zero when passed with 122 :ref:`VIDIOC_S_FMT <VIDIOC_G_FMT>` or 123 :ref:`VIDIOC_TRY_FMT <VIDIOC_G_FMT>`, the ``service_lines`` 124 array will be filled by the driver according to the services 125 specified in this field. For example, if ``service_set`` is 126 initialized with ``V4L2_SLICED_TELETEXT_B | V4L2_SLICED_WSS_625``, 127 a driver for the cx25840 video decoder sets lines 7-22 of both 128 fields [#f1]_ to ``V4L2_SLICED_TELETEXT_B`` and line 23 of the first 129 field to ``V4L2_SLICED_WSS_625``. If ``service_set`` is set to 130 zero, then the values of ``service_lines`` will be used instead. 131 132 On return the driver sets this field to the union of all elements 133 of the returned ``service_lines`` array. It may contain less 134 services than requested, perhaps just one, if the hardware cannot 135 handle more services simultaneously. It may be empty (zero) if 136 none of the requested services are supported by the hardware. 137 * - __u16 138 - ``service_lines``\ [2][24] 139 - :cspan:`2` 140 141 Applications initialize this array with sets of data services the 142 driver shall look for or insert on the respective scan line. 143 Subject to hardware capabilities drivers return the requested set, 144 a subset, which may be just a single service, or an empty set. 145 When the hardware cannot handle multiple services on the same line 146 the driver shall choose one. No assumptions can be made on which 147 service the driver chooses. 148 149 Data services are defined in :ref:`vbi-services2`. Array indices 150 map to ITU-R line numbers\ [#f2]_ as follows: 151 * - 152 - 153 - Element 154 - 525 line systems 155 - 625 line systems 156 * - 157 - 158 - ``service_lines``\ [0][1] 159 - 1 160 - 1 161 * - 162 - 163 - ``service_lines``\ [0][23] 164 - 23 165 - 23 166 * - 167 - 168 - ``service_lines``\ [1][1] 169 - 264 170 - 314 171 * - 172 - 173 - ``service_lines``\ [1][23] 174 - 286 175 - 336 176 * - 177 - 178 - :cspan:`2` Drivers must set ``service_lines`` [0][0] and 179 ``service_lines``\ [1][0] to zero. The 180 ``V4L2_VBI_ITU_525_F1_START``, ``V4L2_VBI_ITU_525_F2_START``, 181 ``V4L2_VBI_ITU_625_F1_START`` and ``V4L2_VBI_ITU_625_F2_START`` 182 defines give the start line numbers for each field for each 525 or 183 625 line format as a convenience. Don't forget that ITU line 184 numbering starts at 1, not 0. 185 * - __u32 186 - ``io_size`` 187 - :cspan:`2` Maximum number of bytes passed by one 188 :ref:`read() <func-read>` or :ref:`write() <func-write>` call, 189 and the buffer size in bytes for the 190 :ref:`VIDIOC_QBUF` and 191 :ref:`VIDIOC_DQBUF <VIDIOC_QBUF>` ioctl. Drivers set this field 192 to the size of struct 193 :c:type:`v4l2_sliced_vbi_data` times the 194 number of non-zero elements in the returned ``service_lines`` 195 array (that is the number of lines potentially carrying data). 196 * - __u32 197 - ``reserved``\ [2] 198 - :cspan:`2` This array is reserved for future extensions. 199 200 Applications and drivers must set it to zero. 201 202 203.. _vbi-services2: 204 205Sliced VBI services 206------------------- 207 208.. raw:: latex 209 210 \begin{adjustbox}{width=\columnwidth} 211 212.. tabularcolumns:: |p{5.0cm}|p{1.4cm}|p{3.0cm}|p{2.5cm}|p{9.0cm}| 213 214.. flat-table:: 215 :header-rows: 1 216 :stub-columns: 0 217 :widths: 2 1 1 2 2 218 219 * - Symbol 220 - Value 221 - Reference 222 - Lines, usually 223 - Payload 224 * - ``V4L2_SLICED_TELETEXT_B`` (Teletext System B) 225 - 0x0001 226 - :ref:`ets300706`, 227 228 :ref:`itu653` 229 - PAL/SECAM line 7-22, 320-335 (second field 7-22) 230 - Last 42 of the 45 byte Teletext packet, that is without clock 231 run-in and framing code, lsb first transmitted. 232 * - ``V4L2_SLICED_VPS`` 233 - 0x0400 234 - :ref:`ets300231` 235 - PAL line 16 236 - Byte number 3 to 15 according to Figure 9 of ETS 300 231, lsb 237 first transmitted. 238 * - ``V4L2_SLICED_CAPTION_525`` 239 - 0x1000 240 - :ref:`cea608` 241 - NTSC line 21, 284 (second field 21) 242 - Two bytes in transmission order, including parity bit, lsb first 243 transmitted. 244 * - ``V4L2_SLICED_WSS_625`` 245 - 0x4000 246 - :ref:`itu1119`, 247 248 :ref:`en300294` 249 - PAL/SECAM line 23 250 - 251 252 :: 253 254 Byte 0 1 255 msb lsb msb lsb 256 Bit 7 6 5 4 3 2 1 0 x x 13 12 11 10 9 257 * - ``V4L2_SLICED_VBI_525`` 258 - 0x1000 259 - :cspan:`2` Set of services applicable to 525 line systems. 260 * - ``V4L2_SLICED_VBI_625`` 261 - 0x4401 262 - :cspan:`2` Set of services applicable to 625 line systems. 263 264.. raw:: latex 265 266 \end{adjustbox}\newline\newline 267 268 269Drivers may return an ``EINVAL`` error code when applications attempt to 270read or write data without prior format negotiation, after switching the 271video standard (which may invalidate the negotiated VBI parameters) and 272after switching the video input (which may change the video standard as 273a side effect). The :ref:`VIDIOC_S_FMT <VIDIOC_G_FMT>` ioctl may 274return an ``EBUSY`` error code when applications attempt to change the 275format while i/o is in progress (between a 276:ref:`VIDIOC_STREAMON` and 277:ref:`VIDIOC_STREAMOFF <VIDIOC_STREAMON>` call, and after the first 278:ref:`read() <func-read>` or :ref:`write() <func-write>` call). 279 280 281Reading and writing sliced VBI data 282=================================== 283 284A single :ref:`read() <func-read>` or :ref:`write() <func-write>` 285call must pass all data belonging to one video frame. That is an array 286of struct :c:type:`v4l2_sliced_vbi_data` structures with one or 287more elements and a total size not exceeding ``io_size`` bytes. Likewise 288in streaming I/O mode one buffer of ``io_size`` bytes must contain data 289of one video frame. The ``id`` of unused 290struct :c:type:`v4l2_sliced_vbi_data` elements must be zero. 291 292 293.. c:type:: v4l2_sliced_vbi_data 294 295struct v4l2_sliced_vbi_data 296--------------------------- 297 298.. tabularcolumns:: |p{6.6cm}|p{2.2cm}|p{8.7cm}| 299 300.. flat-table:: 301 :header-rows: 0 302 :stub-columns: 0 303 :widths: 3 1 4 304 305 * - __u32 306 - ``id`` 307 - A flag from :ref:`vbi-services` identifying the type of data in 308 this packet. Only a single bit must be set. When the ``id`` of a 309 captured packet is zero, the packet is empty and the contents of 310 other fields are undefined. Applications shall ignore empty 311 packets. When the ``id`` of a packet for output is zero the 312 contents of the ``data`` field are undefined and the driver must 313 no longer insert data on the requested ``field`` and ``line``. 314 * - __u32 315 - ``field`` 316 - The video field number this data has been captured from, or shall 317 be inserted at. ``0`` for the first field, ``1`` for the second 318 field. 319 * - __u32 320 - ``line`` 321 - The field (as opposed to frame) line number this data has been 322 captured from, or shall be inserted at. See :ref:`vbi-525` and 323 :ref:`vbi-625` for valid values. Sliced VBI capture devices can 324 set the line number of all packets to ``0`` if the hardware cannot 325 reliably identify scan lines. The field number must always be 326 valid. 327 * - __u32 328 - ``reserved`` 329 - This field is reserved for future extensions. Applications and 330 drivers must set it to zero. 331 * - __u8 332 - ``data``\ [48] 333 - The packet payload. See :ref:`vbi-services` for the contents and 334 number of bytes passed for each data type. The contents of padding 335 bytes at the end of this array are undefined, drivers and 336 applications shall ignore them. 337 338 339Packets are always passed in ascending line number order, without 340duplicate line numbers. The :ref:`write() <func-write>` function and 341the :ref:`VIDIOC_QBUF` ioctl must return an ``EINVAL`` 342error code when applications violate this rule. They must also return an 343EINVAL error code when applications pass an incorrect field or line 344number, or a combination of ``field``, ``line`` and ``id`` which has not 345been negotiated with the :ref:`VIDIOC_G_FMT <VIDIOC_G_FMT>` or 346:ref:`VIDIOC_S_FMT <VIDIOC_G_FMT>` ioctl. When the line numbers are 347unknown the driver must pass the packets in transmitted order. The 348driver can insert empty packets with ``id`` set to zero anywhere in the 349packet array. 350 351To assure synchronization and to distinguish from frame dropping, when a 352captured frame does not carry any of the requested data services drivers 353must pass one or more empty packets. When an application fails to pass 354VBI data in time for output, the driver must output the last VPS and WSS 355packet again, and disable the output of Closed Caption and Teletext 356data, or output data which is ignored by Closed Caption and Teletext 357decoders. 358 359A sliced VBI device may support :ref:`read/write <rw>` and/or 360streaming (:ref:`memory mapping <mmap>` and/or 361:ref:`user pointer <userp>`) I/O. The latter bears the possibility of 362synchronizing video and VBI data by using buffer timestamps. 363 364 365Sliced VBI Data in MPEG Streams 366=============================== 367 368If a device can produce an MPEG output stream, it may be capable of 369providing 370:ref:`negotiated sliced VBI services <sliced-vbi-format-negotitation>` 371as data embedded in the MPEG stream. Users or applications control this 372sliced VBI data insertion with the 373:ref:`V4L2_CID_MPEG_STREAM_VBI_FMT <v4l2-mpeg-stream-vbi-fmt>` 374control. 375 376If the driver does not provide the 377:ref:`V4L2_CID_MPEG_STREAM_VBI_FMT <v4l2-mpeg-stream-vbi-fmt>` 378control, or only allows that control to be set to 379:ref:`V4L2_MPEG_STREAM_VBI_FMT_NONE <v4l2-mpeg-stream-vbi-fmt>`, 380then the device cannot embed sliced VBI data in the MPEG stream. 381 382The 383:ref:`V4L2_CID_MPEG_STREAM_VBI_FMT <v4l2-mpeg-stream-vbi-fmt>` 384control does not implicitly set the device driver to capture nor cease 385capturing sliced VBI data. The control only indicates to embed sliced 386VBI data in the MPEG stream, if an application has negotiated sliced VBI 387service be captured. 388 389It may also be the case that a device can embed sliced VBI data in only 390certain types of MPEG streams: for example in an MPEG-2 PS but not an 391MPEG-2 TS. In this situation, if sliced VBI data insertion is requested, 392the sliced VBI data will be embedded in MPEG stream types when 393supported, and silently omitted from MPEG stream types where sliced VBI 394data insertion is not supported by the device. 395 396The following subsections specify the format of the embedded sliced VBI 397data. 398 399 400MPEG Stream Embedded, Sliced VBI Data Format: NONE 401-------------------------------------------------- 402 403The 404:ref:`V4L2_MPEG_STREAM_VBI_FMT_NONE <v4l2-mpeg-stream-vbi-fmt>` 405embedded sliced VBI format shall be interpreted by drivers as a control 406to cease embedding sliced VBI data in MPEG streams. Neither the device 407nor driver shall insert "empty" embedded sliced VBI data packets in the 408MPEG stream when this format is set. No MPEG stream data structures are 409specified for this format. 410 411 412MPEG Stream Embedded, Sliced VBI Data Format: IVTV 413-------------------------------------------------- 414 415The 416:ref:`V4L2_MPEG_STREAM_VBI_FMT_IVTV <v4l2-mpeg-stream-vbi-fmt>` 417embedded sliced VBI format, when supported, indicates to the driver to 418embed up to 36 lines of sliced VBI data per frame in an MPEG-2 *Private 419Stream 1 PES* packet encapsulated in an MPEG-2 *Program Pack* in the 420MPEG stream. 421 422*Historical context*: This format specification originates from a 423custom, embedded, sliced VBI data format used by the ``ivtv`` driver. 424This format has already been informally specified in the kernel sources 425in the file ``Documentation/video4linux/cx2341x/README.vbi`` . The 426maximum size of the payload and other aspects of this format are driven 427by the CX23415 MPEG decoder's capabilities and limitations with respect 428to extracting, decoding, and displaying sliced VBI data embedded within 429an MPEG stream. 430 431This format's use is *not* exclusive to the ``ivtv`` driver *nor* 432exclusive to CX2341x devices, as the sliced VBI data packet insertion 433into the MPEG stream is implemented in driver software. At least the 434``cx18`` driver provides sliced VBI data insertion into an MPEG-2 PS in 435this format as well. 436 437The following definitions specify the payload of the MPEG-2 *Private 438Stream 1 PES* packets that contain sliced VBI data when 439:ref:`V4L2_MPEG_STREAM_VBI_FMT_IVTV <v4l2-mpeg-stream-vbi-fmt>` 440is set. (The MPEG-2 *Private Stream 1 PES* packet header and 441encapsulating MPEG-2 *Program Pack* header are not detailed here. Please 442refer to the MPEG-2 specifications for details on those packet headers.) 443 444The payload of the MPEG-2 *Private Stream 1 PES* packets that contain 445sliced VBI data is specified by struct 446:c:type:`v4l2_mpeg_vbi_fmt_ivtv`. The 447payload is variable length, depending on the actual number of lines of 448sliced VBI data present in a video frame. The payload may be padded at 449the end with unspecified fill bytes to align the end of the payload to a 4504-byte boundary. The payload shall never exceed 1552 bytes (2 fields 451with 18 lines/field with 43 bytes of data/line and a 4 byte magic 452number). 453 454 455.. c:type:: v4l2_mpeg_vbi_fmt_ivtv 456 457struct v4l2_mpeg_vbi_fmt_ivtv 458----------------------------- 459 460.. tabularcolumns:: |p{1.0cm}|p{3.5cm}|p{1.0cm}|p{11.5cm}| 461 462.. flat-table:: 463 :header-rows: 0 464 :stub-columns: 0 465 :widths: 1 1 1 2 466 467 * - __u8 468 - ``magic``\ [4] 469 - 470 - A "magic" constant from :ref:`v4l2-mpeg-vbi-fmt-ivtv-magic` that 471 indicates this is a valid sliced VBI data payload and also 472 indicates which member of the anonymous union, ``itv0`` or 473 ``ITV0``, to use for the payload data. 474 * - union 475 - (anonymous) 476 * - 477 - struct :c:type:`v4l2_mpeg_vbi_itv0` 478 - ``itv0`` 479 - The primary form of the sliced VBI data payload that contains 480 anywhere from 1 to 35 lines of sliced VBI data. Line masks are 481 provided in this form of the payload indicating which VBI lines 482 are provided. 483 * - 484 - struct :ref:`v4l2_mpeg_vbi_ITV0 <v4l2-mpeg-vbi-itv0-1>` 485 - ``ITV0`` 486 - An alternate form of the sliced VBI data payload used when 36 487 lines of sliced VBI data are present. No line masks are provided 488 in this form of the payload; all valid line mask bits are 489 implcitly set. 490 491 492 493.. _v4l2-mpeg-vbi-fmt-ivtv-magic: 494 495Magic Constants for struct v4l2_mpeg_vbi_fmt_ivtv magic field 496------------------------------------------------------------- 497 498.. tabularcolumns:: |p{6.6cm}|p{2.2cm}|p{8.7cm}| 499 500.. flat-table:: 501 :header-rows: 1 502 :stub-columns: 0 503 :widths: 3 1 4 504 505 * - Defined Symbol 506 - Value 507 - Description 508 * - ``V4L2_MPEG_VBI_IVTV_MAGIC0`` 509 - "itv0" 510 - Indicates the ``itv0`` member of the union in struct 511 :c:type:`v4l2_mpeg_vbi_fmt_ivtv` is 512 valid. 513 * - ``V4L2_MPEG_VBI_IVTV_MAGIC1`` 514 - "ITV0" 515 - Indicates the ``ITV0`` member of the union in struct 516 :c:type:`v4l2_mpeg_vbi_fmt_ivtv` is 517 valid and that 36 lines of sliced VBI data are present. 518 519 520 521.. c:type:: v4l2_mpeg_vbi_itv0 522 523.. c:type:: v4l2_mpeg_vbi_ITV0 524 525structs v4l2_mpeg_vbi_itv0 and v4l2_mpeg_vbi_ITV0 526------------------------------------------------- 527 528.. tabularcolumns:: |p{4.4cm}|p{2.4cm}|p{10.7cm}| 529 530.. flat-table:: 531 :header-rows: 0 532 :stub-columns: 0 533 :widths: 1 1 2 534 535 * - __le32 536 - ``linemask``\ [2] 537 - Bitmasks indicating the VBI service lines present. These 538 ``linemask`` values are stored in little endian byte order in the 539 MPEG stream. Some reference ``linemask`` bit positions with their 540 corresponding VBI line number and video field are given below. 541 b\ :sub:`0` indicates the least significant bit of a ``linemask`` 542 value: 543 544 545 546 :: 547 548 linemask[0] b0: line 6 first field 549 linemask[0] b17: line 23 first field 550 linemask[0] b18: line 6 second field 551 linemask[0] b31: line 19 second field 552 linemask[1] b0: line 20 second field 553 linemask[1] b3: line 23 second field 554 linemask[1] b4-b31: unused and set to 0 555 * - struct 556 :c:type:`v4l2_mpeg_vbi_itv0_line` 557 - ``line``\ [35] 558 - This is a variable length array that holds from 1 to 35 lines of 559 sliced VBI data. The sliced VBI data lines present correspond to 560 the bits set in the ``linemask`` array, starting from b\ :sub:`0` 561 of ``linemask``\ [0] up through b\ :sub:`31` of ``linemask``\ [0], 562 and from b\ :sub:`0` of ``linemask``\ [1] up through b\ :sub:`3` of 563 ``linemask``\ [1]. ``line``\ [0] corresponds to the first bit 564 found set in the ``linemask`` array, ``line``\ [1] corresponds to 565 the second bit found set in the ``linemask`` array, etc. If no 566 ``linemask`` array bits are set, then ``line``\ [0] may contain 567 one line of unspecified data that should be ignored by 568 applications. 569 570 571 572.. _v4l2-mpeg-vbi-itv0-1: 573 574struct v4l2_mpeg_vbi_ITV0 575------------------------- 576 577.. tabularcolumns:: |p{4.4cm}|p{4.4cm}|p{8.7cm}| 578 579.. flat-table:: 580 :header-rows: 0 581 :stub-columns: 0 582 :widths: 1 1 2 583 584 * - struct 585 :c:type:`v4l2_mpeg_vbi_itv0_line` 586 - ``line``\ [36] 587 - A fixed length array of 36 lines of sliced VBI data. ``line``\ [0] 588 through ``line``\ [17] correspond to lines 6 through 23 of the 589 first field. ``line``\ [18] through ``line``\ [35] corresponds to 590 lines 6 through 23 of the second field. 591 592 593 594.. c:type:: v4l2_mpeg_vbi_itv0_line 595 596struct v4l2_mpeg_vbi_itv0_line 597------------------------------ 598 599.. tabularcolumns:: |p{4.4cm}|p{4.4cm}|p{8.7cm}| 600 601.. flat-table:: 602 :header-rows: 0 603 :stub-columns: 0 604 :widths: 1 1 2 605 606 * - __u8 607 - ``id`` 608 - A line identifier value from 609 :ref:`ITV0-Line-Identifier-Constants` that indicates the type of 610 sliced VBI data stored on this line. 611 * - __u8 612 - ``data``\ [42] 613 - The sliced VBI data for the line. 614 615 616 617.. _ITV0-Line-Identifier-Constants: 618 619Line Identifiers for struct v4l2_mpeg_vbi_itv0_line id field 620------------------------------------------------------------ 621 622.. tabularcolumns:: |p{6.6cm}|p{2.2cm}|p{8.7cm}| 623 624.. flat-table:: 625 :header-rows: 1 626 :stub-columns: 0 627 :widths: 3 1 4 628 629 * - Defined Symbol 630 - Value 631 - Description 632 * - ``V4L2_MPEG_VBI_IVTV_TELETEXT_B`` 633 - 1 634 - Refer to :ref:`Sliced VBI services <vbi-services2>` for a 635 description of the line payload. 636 * - ``V4L2_MPEG_VBI_IVTV_CAPTION_525`` 637 - 4 638 - Refer to :ref:`Sliced VBI services <vbi-services2>` for a 639 description of the line payload. 640 * - ``V4L2_MPEG_VBI_IVTV_WSS_625`` 641 - 5 642 - Refer to :ref:`Sliced VBI services <vbi-services2>` for a 643 description of the line payload. 644 * - ``V4L2_MPEG_VBI_IVTV_VPS`` 645 - 7 646 - Refer to :ref:`Sliced VBI services <vbi-services2>` for a 647 description of the line payload. 648 649 650 651.. [#f1] 652 According to :ref:`ETS 300 706 <ets300706>` lines 6-22 of the first 653 field and lines 5-22 of the second field may carry Teletext data. 654 655.. [#f2] 656 See also :ref:`vbi-525` and :ref:`vbi-625`.