2018-08-30 21:15:26 +07:00
|
|
|
.. Permission is granted to copy, distribute and/or modify this
|
|
|
|
.. document under the terms of the GNU Free Documentation License,
|
|
|
|
.. Version 1.1 or any later version published by the Free Software
|
|
|
|
.. Foundation, with no Invariant Sections, no Front-Cover Texts
|
|
|
|
.. and no Back-Cover Texts. A copy of the license is included at
|
|
|
|
.. Documentation/media/uapi/fdl-appendix.rst.
|
|
|
|
..
|
|
|
|
.. TODO: replace it to GFDL-1.1-or-later WITH no-invariant-sections
|
|
|
|
|
2016-07-01 23:42:29 +07:00
|
|
|
.. _VIDIOC_DV_TIMINGS_CAP:
|
2016-06-30 20:18:56 +07:00
|
|
|
|
|
|
|
*********************************************************
|
|
|
|
ioctl VIDIOC_DV_TIMINGS_CAP, VIDIOC_SUBDEV_DV_TIMINGS_CAP
|
|
|
|
*********************************************************
|
|
|
|
|
2016-07-06 01:14:35 +07:00
|
|
|
Name
|
2016-07-05 17:58:48 +07:00
|
|
|
====
|
2016-06-30 20:18:56 +07:00
|
|
|
|
2016-07-05 17:58:48 +07:00
|
|
|
VIDIOC_DV_TIMINGS_CAP - VIDIOC_SUBDEV_DV_TIMINGS_CAP - The capabilities of the Digital Video receiver/transmitter
|
2016-06-30 20:18:56 +07:00
|
|
|
|
2016-07-06 01:14:35 +07:00
|
|
|
|
|
|
|
Synopsis
|
2016-06-30 20:18:56 +07:00
|
|
|
========
|
|
|
|
|
2016-08-20 02:53:38 +07:00
|
|
|
.. c:function:: int ioctl( int fd, VIDIOC_DV_TIMINGS_CAP, struct v4l2_dv_timings_cap *argp )
|
|
|
|
:name: VIDIOC_DV_TIMINGS_CAP
|
|
|
|
|
|
|
|
.. c:function:: int ioctl( int fd, VIDIOC_SUBDEV_DV_TIMINGS_CAP, struct v4l2_dv_timings_cap *argp )
|
|
|
|
:name: VIDIOC_SUBDEV_DV_TIMINGS_CAP
|
2016-06-30 20:18:56 +07:00
|
|
|
|
2016-07-05 17:58:48 +07:00
|
|
|
|
2016-07-06 01:14:35 +07:00
|
|
|
Arguments
|
2016-06-30 20:18:56 +07:00
|
|
|
=========
|
|
|
|
|
|
|
|
``fd``
|
|
|
|
File descriptor returned by :ref:`open() <func-open>`.
|
|
|
|
|
|
|
|
``argp``
|
2017-09-02 20:54:48 +07:00
|
|
|
Pointer to struct :c:type:`v4l2_dv_timings_cap`.
|
2016-06-30 20:18:56 +07:00
|
|
|
|
|
|
|
|
2016-07-06 01:14:35 +07:00
|
|
|
Description
|
2016-06-30 20:18:56 +07:00
|
|
|
===========
|
|
|
|
|
|
|
|
To query the capabilities of the DV receiver/transmitter applications
|
|
|
|
initialize the ``pad`` field to 0, zero the reserved array of struct
|
2016-08-30 03:37:59 +07:00
|
|
|
:c:type:`v4l2_dv_timings_cap` and call the
|
2016-06-30 20:18:56 +07:00
|
|
|
``VIDIOC_DV_TIMINGS_CAP`` ioctl on a video node and the driver will fill
|
2016-07-10 21:57:43 +07:00
|
|
|
in the structure.
|
|
|
|
|
2016-08-16 03:49:50 +07:00
|
|
|
.. note::
|
|
|
|
|
|
|
|
Drivers may return different values after
|
2016-07-10 21:57:43 +07:00
|
|
|
switching the video input or output.
|
2016-06-30 20:18:56 +07:00
|
|
|
|
|
|
|
When implemented by the driver DV capabilities of subdevices can be
|
|
|
|
queried by calling the ``VIDIOC_SUBDEV_DV_TIMINGS_CAP`` ioctl directly
|
|
|
|
on a subdevice node. The capabilities are specific to inputs (for DV
|
|
|
|
receivers) or outputs (for DV transmitters), applications must specify
|
|
|
|
the desired pad number in the struct
|
2016-08-30 03:37:59 +07:00
|
|
|
:c:type:`v4l2_dv_timings_cap` ``pad`` field and
|
2016-06-30 20:18:56 +07:00
|
|
|
zero the ``reserved`` array. Attempts to query capabilities on a pad
|
2016-07-03 21:53:09 +07:00
|
|
|
that doesn't support them will return an ``EINVAL`` error code.
|
2016-06-30 20:18:56 +07:00
|
|
|
|
|
|
|
|
2016-08-18 23:59:24 +07:00
|
|
|
.. tabularcolumns:: |p{1.2cm}|p{3.0cm}|p{13.3cm}|
|
[media] docs-rst: add tabularcolumns to all tables
LaTeX doesn't handle too well auto-width on tables, and ReST
markup requires an special tag to give it the needed hints.
As we're using A4 paper, we have 17cm of useful spaces. As
most media tables have widths, let's use it to generate the
needed via the following perl script:
my ($line_size, $table_header, $has_cols) = (17.5, 0, 0);
my $out;
my $header = "";
my @widths = ();
sub round { $_[0] > 0 ? int($_[0] + .5) : -int(-$_[0] + .5) }
while (<>) {
if (!$table_header) {
$has_cols = 1 if (m/..\s+tabularcolumns::/);
if (m/..\s+flat-table::/) {
$table_header = 1;
$header = $_;
next;
}
$out .= $_;
next;
}
$header .= $_;
@widths = split(/ /, $1) if (m/:widths:\s+(.*)/);
if (m/^\n$/) {
if (!$has_cols && @widths) {
my ($tot, $t, $i) = (0, 0, 0);
foreach my $v(@widths) { $tot += $v; };
$out .= ".. tabularcolumns:: |";
for ($i = 0; $i < scalar @widths - 1; $i++) {
my $v = $widths[$i];
my $w = round(10 * ($v * $line_size) / $tot) / 10;
$out .= sprintf "p{%.1fcm}|", $w;
$t += $w;
}
my $w = $line_size - $t;
$out .= sprintf "p{%.1fcm}|\n\n", $w;
}
$out .= $header;
$table_header = 0;
$has_cols = 0;
$header = "";
@widths = ();
}
}
print $out;
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
2016-08-17 18:14:19 +07:00
|
|
|
|
2016-08-30 03:37:59 +07:00
|
|
|
.. c:type:: v4l2_bt_timings_cap
|
2016-08-19 21:14:23 +07:00
|
|
|
|
2016-06-30 20:18:56 +07:00
|
|
|
.. flat-table:: struct v4l2_bt_timings_cap
|
|
|
|
:header-rows: 0
|
|
|
|
:stub-columns: 0
|
|
|
|
:widths: 1 1 2
|
|
|
|
|
[media] v4l: doc: Remove row numbers from tables
Shorten the tables by removing row numbers in comments, allowing for
later insertion of rows with minimal diffs.
All changes have been generated by the following script.
import io
import re
import sys
def process_table(fname, data):
if fname.endswith('hist-v4l2.rst'):
data = re.sub(u'\n{1,2}\t( ?) -( ?) ?', u'\n\t\\1 -\\2', data, flags = re.MULTILINE)
data = re.sub(u'\n(\t| )- \.\. row [0-9]+\n\t ?-( ?) ?', u'\\1* -\\2', data, flags = re.MULTILINE)
else:
data = re.sub(u'\n{1,2} -( ?) ?', u'\n -\\1', data, flags = re.MULTILINE)
data = re.sub(u'(\n?)(\n\n - \.\. row 1\n)', u'\n\\2', data, flags = re.MULTILINE)
data = re.sub(u'\n - \.\. row [0-9]+\n -( ?) ?', u' * -\\1', data, flags = re.MULTILINE)
data = re.sub(u'\n - \.\. row [0-9]+\n \.\. (_[A-Z0-9_`-]*:)', u'\n - .. \\1', data, flags = re.MULTILINE)
data = re.sub(u'\n - \.\. (_[A-Z0-9_`-]*:)\n -', u' * .. \\1\n\n -', data, flags = re.MULTILINE)
data = re.sub(u'^ - ', u' -', data, flags = re.MULTILINE)
data = re.sub(u'^(\t{1,2}) ', u'\\1', data, flags = re.MULTILINE)
return data
def process_file(fname, data):
buf = io.StringIO(data)
output = ''
in_table = False
table_separator = 0
for line in buf.readlines():
if line.find('.. flat-table::') != -1:
in_table = True
table = ''
elif in_table and not re.match('^[\t\n]|( )', line):
in_table = False
output += process_table(fname, table)
if in_table:
table += line
else:
output += line
if in_table:
in_table = False
output += process_table(fname, table)
return output
fname = sys.argv[1]
data = file(fname, 'rb').read().decode('utf-8')
data = process_file(fname, data)
file(fname, 'wb').write(data.encode('utf-8'))
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2016-09-05 18:44:34 +07:00
|
|
|
* - __u32
|
|
|
|
- ``min_width``
|
|
|
|
- Minimum width of the active video in pixels.
|
|
|
|
* - __u32
|
|
|
|
- ``max_width``
|
|
|
|
- Maximum width of the active video in pixels.
|
|
|
|
* - __u32
|
|
|
|
- ``min_height``
|
|
|
|
- Minimum height of the active video in lines.
|
|
|
|
* - __u32
|
|
|
|
- ``max_height``
|
|
|
|
- Maximum height of the active video in lines.
|
|
|
|
* - __u64
|
|
|
|
- ``min_pixelclock``
|
|
|
|
- Minimum pixelclock frequency in Hz.
|
|
|
|
* - __u64
|
|
|
|
- ``max_pixelclock``
|
|
|
|
- Maximum pixelclock frequency in Hz.
|
|
|
|
* - __u32
|
|
|
|
- ``standards``
|
|
|
|
- The video standard(s) supported by the hardware. See
|
|
|
|
:ref:`dv-bt-standards` for a list of standards.
|
|
|
|
* - __u32
|
|
|
|
- ``capabilities``
|
|
|
|
- Several flags giving more information about the capabilities. See
|
|
|
|
:ref:`dv-bt-cap-capabilities` for a description of the flags.
|
|
|
|
* - __u32
|
|
|
|
- ``reserved``\ [16]
|
|
|
|
- Reserved for future extensions.
|
|
|
|
Drivers must set the array to zero.
|
2016-06-30 20:18:56 +07:00
|
|
|
|
|
|
|
|
|
|
|
|
media: fix pdf build with Spinx 1.6
Sphinx 1.6 generates some LaTeX code before each table,
starting its own environment before calling tabulary,
apparently to improve table layout.
The problem is that such environment is incompatible with
adjustbox. While, in thesis, it should be possible to override
it or to redefine tabulary, I was unable to produce such patch.
Also, that would likely break on some future Sphinx version.
So, instead, let's just change the font size on bigger tables,
in order for them to fit into the page size. That is not as
good as adjustbox, and require some manual work, but it should
be less sensitive to Sphinx changes.
While here, adjust a few other tables whose text is exceeding
the cell boundaries.
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
2017-08-26 16:28:26 +07:00
|
|
|
.. tabularcolumns:: |p{1.0cm}|p{4.0cm}|p{3.5cm}|p{9.2cm}|
|
[media] docs-rst: add tabularcolumns to all tables
LaTeX doesn't handle too well auto-width on tables, and ReST
markup requires an special tag to give it the needed hints.
As we're using A4 paper, we have 17cm of useful spaces. As
most media tables have widths, let's use it to generate the
needed via the following perl script:
my ($line_size, $table_header, $has_cols) = (17.5, 0, 0);
my $out;
my $header = "";
my @widths = ();
sub round { $_[0] > 0 ? int($_[0] + .5) : -int(-$_[0] + .5) }
while (<>) {
if (!$table_header) {
$has_cols = 1 if (m/..\s+tabularcolumns::/);
if (m/..\s+flat-table::/) {
$table_header = 1;
$header = $_;
next;
}
$out .= $_;
next;
}
$header .= $_;
@widths = split(/ /, $1) if (m/:widths:\s+(.*)/);
if (m/^\n$/) {
if (!$has_cols && @widths) {
my ($tot, $t, $i) = (0, 0, 0);
foreach my $v(@widths) { $tot += $v; };
$out .= ".. tabularcolumns:: |";
for ($i = 0; $i < scalar @widths - 1; $i++) {
my $v = $widths[$i];
my $w = round(10 * ($v * $line_size) / $tot) / 10;
$out .= sprintf "p{%.1fcm}|", $w;
$t += $w;
}
my $w = $line_size - $t;
$out .= sprintf "p{%.1fcm}|\n\n", $w;
}
$out .= $header;
$table_header = 0;
$has_cols = 0;
$header = "";
@widths = ();
}
}
print $out;
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
2016-08-17 18:14:19 +07:00
|
|
|
|
2016-08-30 03:37:59 +07:00
|
|
|
.. c:type:: v4l2_dv_timings_cap
|
2016-08-19 21:14:23 +07:00
|
|
|
|
2016-06-30 20:18:56 +07:00
|
|
|
.. flat-table:: struct v4l2_dv_timings_cap
|
|
|
|
:header-rows: 0
|
|
|
|
:stub-columns: 0
|
|
|
|
:widths: 1 1 2 1
|
|
|
|
|
[media] v4l: doc: Remove row numbers from tables
Shorten the tables by removing row numbers in comments, allowing for
later insertion of rows with minimal diffs.
All changes have been generated by the following script.
import io
import re
import sys
def process_table(fname, data):
if fname.endswith('hist-v4l2.rst'):
data = re.sub(u'\n{1,2}\t( ?) -( ?) ?', u'\n\t\\1 -\\2', data, flags = re.MULTILINE)
data = re.sub(u'\n(\t| )- \.\. row [0-9]+\n\t ?-( ?) ?', u'\\1* -\\2', data, flags = re.MULTILINE)
else:
data = re.sub(u'\n{1,2} -( ?) ?', u'\n -\\1', data, flags = re.MULTILINE)
data = re.sub(u'(\n?)(\n\n - \.\. row 1\n)', u'\n\\2', data, flags = re.MULTILINE)
data = re.sub(u'\n - \.\. row [0-9]+\n -( ?) ?', u' * -\\1', data, flags = re.MULTILINE)
data = re.sub(u'\n - \.\. row [0-9]+\n \.\. (_[A-Z0-9_`-]*:)', u'\n - .. \\1', data, flags = re.MULTILINE)
data = re.sub(u'\n - \.\. (_[A-Z0-9_`-]*:)\n -', u' * .. \\1\n\n -', data, flags = re.MULTILINE)
data = re.sub(u'^ - ', u' -', data, flags = re.MULTILINE)
data = re.sub(u'^(\t{1,2}) ', u'\\1', data, flags = re.MULTILINE)
return data
def process_file(fname, data):
buf = io.StringIO(data)
output = ''
in_table = False
table_separator = 0
for line in buf.readlines():
if line.find('.. flat-table::') != -1:
in_table = True
table = ''
elif in_table and not re.match('^[\t\n]|( )', line):
in_table = False
output += process_table(fname, table)
if in_table:
table += line
else:
output += line
if in_table:
in_table = False
output += process_table(fname, table)
return output
fname = sys.argv[1]
data = file(fname, 'rb').read().decode('utf-8')
data = process_file(fname, data)
file(fname, 'wb').write(data.encode('utf-8'))
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2016-09-05 18:44:34 +07:00
|
|
|
* - __u32
|
|
|
|
- ``type``
|
|
|
|
- Type of DV timings as listed in :ref:`dv-timing-types`.
|
|
|
|
* - __u32
|
|
|
|
- ``pad``
|
|
|
|
- Pad number as reported by the media controller API. This field is
|
|
|
|
only used when operating on a subdevice node. When operating on a
|
|
|
|
video node applications must set this field to zero.
|
|
|
|
* - __u32
|
|
|
|
- ``reserved``\ [2]
|
|
|
|
- Reserved for future extensions.
|
|
|
|
|
|
|
|
Drivers and applications must set the array to zero.
|
|
|
|
* - union
|
|
|
|
-
|
|
|
|
-
|
|
|
|
* -
|
|
|
|
- struct :c:type:`v4l2_bt_timings_cap`
|
|
|
|
- ``bt``
|
|
|
|
- BT.656/1120 timings capabilities of the hardware.
|
|
|
|
* -
|
|
|
|
- __u32
|
|
|
|
- ``raw_data``\ [32]
|
|
|
|
-
|
2016-06-30 20:18:56 +07:00
|
|
|
|
2016-08-18 23:59:24 +07:00
|
|
|
.. tabularcolumns:: |p{7.0cm}|p{10.5cm}|
|
2016-06-30 20:18:56 +07:00
|
|
|
|
|
|
|
.. _dv-bt-cap-capabilities:
|
|
|
|
|
|
|
|
.. flat-table:: DV BT Timing capabilities
|
|
|
|
:header-rows: 0
|
|
|
|
:stub-columns: 0
|
|
|
|
|
[media] v4l: doc: Remove row numbers from tables
Shorten the tables by removing row numbers in comments, allowing for
later insertion of rows with minimal diffs.
All changes have been generated by the following script.
import io
import re
import sys
def process_table(fname, data):
if fname.endswith('hist-v4l2.rst'):
data = re.sub(u'\n{1,2}\t( ?) -( ?) ?', u'\n\t\\1 -\\2', data, flags = re.MULTILINE)
data = re.sub(u'\n(\t| )- \.\. row [0-9]+\n\t ?-( ?) ?', u'\\1* -\\2', data, flags = re.MULTILINE)
else:
data = re.sub(u'\n{1,2} -( ?) ?', u'\n -\\1', data, flags = re.MULTILINE)
data = re.sub(u'(\n?)(\n\n - \.\. row 1\n)', u'\n\\2', data, flags = re.MULTILINE)
data = re.sub(u'\n - \.\. row [0-9]+\n -( ?) ?', u' * -\\1', data, flags = re.MULTILINE)
data = re.sub(u'\n - \.\. row [0-9]+\n \.\. (_[A-Z0-9_`-]*:)', u'\n - .. \\1', data, flags = re.MULTILINE)
data = re.sub(u'\n - \.\. (_[A-Z0-9_`-]*:)\n -', u' * .. \\1\n\n -', data, flags = re.MULTILINE)
data = re.sub(u'^ - ', u' -', data, flags = re.MULTILINE)
data = re.sub(u'^(\t{1,2}) ', u'\\1', data, flags = re.MULTILINE)
return data
def process_file(fname, data):
buf = io.StringIO(data)
output = ''
in_table = False
table_separator = 0
for line in buf.readlines():
if line.find('.. flat-table::') != -1:
in_table = True
table = ''
elif in_table and not re.match('^[\t\n]|( )', line):
in_table = False
output += process_table(fname, table)
if in_table:
table += line
else:
output += line
if in_table:
in_table = False
output += process_table(fname, table)
return output
fname = sys.argv[1]
data = file(fname, 'rb').read().decode('utf-8')
data = process_file(fname, data)
file(fname, 'wb').write(data.encode('utf-8'))
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2016-09-05 18:44:34 +07:00
|
|
|
* - Flag
|
|
|
|
- Description
|
|
|
|
* -
|
|
|
|
-
|
|
|
|
* - ``V4L2_DV_BT_CAP_INTERLACED``
|
|
|
|
- Interlaced formats are supported.
|
|
|
|
* - ``V4L2_DV_BT_CAP_PROGRESSIVE``
|
|
|
|
- Progressive formats are supported.
|
|
|
|
* - ``V4L2_DV_BT_CAP_REDUCED_BLANKING``
|
|
|
|
- CVT/GTF specific: the timings can make use of reduced blanking
|
|
|
|
(CVT) or the 'Secondary GTF' curve (GTF).
|
|
|
|
* - ``V4L2_DV_BT_CAP_CUSTOM``
|
|
|
|
- Can support non-standard timings, i.e. timings not belonging to
|
|
|
|
the standards set in the ``standards`` field.
|
2016-06-30 20:18:56 +07:00
|
|
|
|
|
|
|
|
2016-07-06 01:14:35 +07:00
|
|
|
Return Value
|
2016-06-30 20:18:56 +07:00
|
|
|
============
|
|
|
|
|
|
|
|
On success 0 is returned, on error -1 and the ``errno`` variable is set
|
|
|
|
appropriately. The generic error codes are described at the
|
|
|
|
:ref:`Generic Error Codes <gen-errors>` chapter.
|