2016-06-30 21:18:56 +08:00
|
|
|
.. -*- coding: utf-8; mode: rst -*-
|
|
|
|
|
|
|
|
.. _V4L2-PIX-FMT-YUV420M:
|
2016-07-08 03:16:21 +08:00
|
|
|
.. _v4l2-pix-fmt-yvu420m:
|
2016-06-30 21:18:56 +08:00
|
|
|
|
|
|
|
************************************************************
|
|
|
|
V4L2_PIX_FMT_YUV420M ('YM12'), V4L2_PIX_FMT_YVU420M ('YM21')
|
|
|
|
************************************************************
|
|
|
|
|
|
|
|
|
|
|
|
V4L2_PIX_FMT_YVU420M
|
|
|
|
Variation of ``V4L2_PIX_FMT_YUV420`` and ``V4L2_PIX_FMT_YVU420`` with
|
|
|
|
planes non contiguous in memory.
|
|
|
|
|
|
|
|
|
|
|
|
Description
|
|
|
|
===========
|
|
|
|
|
|
|
|
This is a multi-planar format, as opposed to a packed format. The three
|
|
|
|
components are separated into three sub-images or planes.
|
|
|
|
|
|
|
|
The Y plane is first. The Y plane has one byte per pixel. For
|
|
|
|
``V4L2_PIX_FMT_YUV420M`` the Cb data constitutes the second plane which
|
|
|
|
is half the width and half the height of the Y plane (and of the image).
|
|
|
|
Each Cb belongs to four pixels, a two-by-two square of the image. For
|
|
|
|
example, Cb\ :sub:`0` belongs to Y'\ :sub:`00`, Y'\ :sub:`01`,
|
|
|
|
Y'\ :sub:`10`, and Y'\ :sub:`11`. The Cr data, just like the Cb plane,
|
|
|
|
is in the third plane.
|
|
|
|
|
|
|
|
``V4L2_PIX_FMT_YVU420M`` is the same except the Cr data is stored in the
|
|
|
|
second plane and the Cb data in the third plane.
|
|
|
|
|
|
|
|
If the Y plane has pad bytes after each row, then the Cb and Cr planes
|
|
|
|
have half as many pad bytes after their rows. In other words, two Cx
|
|
|
|
rows (including padding) is exactly as long as one Y row (including
|
|
|
|
padding).
|
|
|
|
|
|
|
|
``V4L2_PIX_FMT_YUV420M`` and ``V4L2_PIX_FMT_YVU420M`` are intended to be
|
|
|
|
used only in drivers and applications that support the multi-planar API,
|
|
|
|
described in :ref:`planar-apis`.
|
|
|
|
|
2016-07-05 00:58:01 +08:00
|
|
|
**Byte Order.**
|
2016-06-30 21:18:56 +08:00
|
|
|
Each cell is one byte.
|
|
|
|
|
|
|
|
|
|
|
|
|
[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 19:14:19 +08:00
|
|
|
|
2016-06-30 21:18:56 +08:00
|
|
|
.. flat-table::
|
|
|
|
:header-rows: 0
|
|
|
|
:stub-columns: 0
|
|
|
|
|
|
|
|
|
|
|
|
- .. row 1
|
|
|
|
|
|
|
|
- start0 + 0:
|
|
|
|
|
|
|
|
- Y'\ :sub:`00`
|
|
|
|
|
|
|
|
- Y'\ :sub:`01`
|
|
|
|
|
|
|
|
- Y'\ :sub:`02`
|
|
|
|
|
|
|
|
- Y'\ :sub:`03`
|
|
|
|
|
|
|
|
- .. row 2
|
|
|
|
|
|
|
|
- start0 + 4:
|
|
|
|
|
|
|
|
- Y'\ :sub:`10`
|
|
|
|
|
|
|
|
- Y'\ :sub:`11`
|
|
|
|
|
|
|
|
- Y'\ :sub:`12`
|
|
|
|
|
|
|
|
- Y'\ :sub:`13`
|
|
|
|
|
|
|
|
- .. row 3
|
|
|
|
|
|
|
|
- start0 + 8:
|
|
|
|
|
|
|
|
- Y'\ :sub:`20`
|
|
|
|
|
|
|
|
- Y'\ :sub:`21`
|
|
|
|
|
|
|
|
- Y'\ :sub:`22`
|
|
|
|
|
|
|
|
- Y'\ :sub:`23`
|
|
|
|
|
|
|
|
- .. row 4
|
|
|
|
|
|
|
|
- start0 + 12:
|
|
|
|
|
|
|
|
- Y'\ :sub:`30`
|
|
|
|
|
|
|
|
- Y'\ :sub:`31`
|
|
|
|
|
|
|
|
- Y'\ :sub:`32`
|
|
|
|
|
|
|
|
- Y'\ :sub:`33`
|
|
|
|
|
|
|
|
- .. row 5
|
|
|
|
|
2016-07-05 03:25:48 +08:00
|
|
|
-
|
2016-06-30 21:18:56 +08:00
|
|
|
|
|
|
|
- .. row 6
|
|
|
|
|
|
|
|
- start1 + 0:
|
|
|
|
|
|
|
|
- Cb\ :sub:`00`
|
|
|
|
|
|
|
|
- Cb\ :sub:`01`
|
|
|
|
|
|
|
|
- .. row 7
|
|
|
|
|
|
|
|
- start1 + 2:
|
|
|
|
|
|
|
|
- Cb\ :sub:`10`
|
|
|
|
|
|
|
|
- Cb\ :sub:`11`
|
|
|
|
|
|
|
|
- .. row 8
|
|
|
|
|
2016-07-05 03:25:48 +08:00
|
|
|
-
|
2016-06-30 21:18:56 +08:00
|
|
|
|
|
|
|
- .. row 9
|
|
|
|
|
|
|
|
- start2 + 0:
|
|
|
|
|
|
|
|
- Cr\ :sub:`00`
|
|
|
|
|
|
|
|
- Cr\ :sub:`01`
|
|
|
|
|
|
|
|
- .. row 10
|
|
|
|
|
|
|
|
- start2 + 2:
|
|
|
|
|
|
|
|
- Cr\ :sub:`10`
|
|
|
|
|
|
|
|
- Cr\ :sub:`11`
|
|
|
|
|
|
|
|
|
|
|
|
**Color Sample Location..**
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.. flat-table::
|
|
|
|
:header-rows: 0
|
|
|
|
:stub-columns: 0
|
|
|
|
|
|
|
|
|
|
|
|
- .. row 1
|
|
|
|
|
2016-07-05 03:25:48 +08:00
|
|
|
-
|
2016-06-30 21:18:56 +08:00
|
|
|
- 0
|
|
|
|
|
2016-07-05 03:25:48 +08:00
|
|
|
-
|
2016-06-30 21:18:56 +08:00
|
|
|
- 1
|
|
|
|
|
2016-07-05 03:25:48 +08:00
|
|
|
-
|
2016-06-30 21:18:56 +08:00
|
|
|
- 2
|
|
|
|
|
2016-07-05 03:25:48 +08:00
|
|
|
-
|
2016-06-30 21:18:56 +08:00
|
|
|
- 3
|
|
|
|
|
|
|
|
- .. row 2
|
|
|
|
|
|
|
|
- 0
|
|
|
|
|
|
|
|
- Y
|
|
|
|
|
2016-07-05 03:25:48 +08:00
|
|
|
-
|
2016-06-30 21:18:56 +08:00
|
|
|
- Y
|
|
|
|
|
2016-07-05 03:25:48 +08:00
|
|
|
-
|
2016-06-30 21:18:56 +08:00
|
|
|
- Y
|
|
|
|
|
2016-07-05 03:25:48 +08:00
|
|
|
-
|
2016-06-30 21:18:56 +08:00
|
|
|
- Y
|
|
|
|
|
|
|
|
- .. row 3
|
|
|
|
|
2016-07-05 03:25:48 +08:00
|
|
|
-
|
|
|
|
-
|
2016-06-30 21:18:56 +08:00
|
|
|
- C
|
|
|
|
|
2016-07-05 03:25:48 +08:00
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
2016-06-30 21:18:56 +08:00
|
|
|
- C
|
|
|
|
|
2016-07-05 03:25:48 +08:00
|
|
|
-
|
2016-06-30 21:18:56 +08:00
|
|
|
|
|
|
|
- .. row 4
|
|
|
|
|
|
|
|
- 1
|
|
|
|
|
|
|
|
- Y
|
|
|
|
|
2016-07-05 03:25:48 +08:00
|
|
|
-
|
2016-06-30 21:18:56 +08:00
|
|
|
- Y
|
|
|
|
|
2016-07-05 03:25:48 +08:00
|
|
|
-
|
2016-06-30 21:18:56 +08:00
|
|
|
- Y
|
|
|
|
|
2016-07-05 03:25:48 +08:00
|
|
|
-
|
2016-06-30 21:18:56 +08:00
|
|
|
- Y
|
|
|
|
|
|
|
|
- .. row 5
|
|
|
|
|
2016-07-05 03:25:48 +08:00
|
|
|
-
|
2016-06-30 21:18:56 +08:00
|
|
|
|
|
|
|
- .. row 6
|
|
|
|
|
|
|
|
- 2
|
|
|
|
|
|
|
|
- Y
|
|
|
|
|
2016-07-05 03:25:48 +08:00
|
|
|
-
|
2016-06-30 21:18:56 +08:00
|
|
|
- Y
|
|
|
|
|
2016-07-05 03:25:48 +08:00
|
|
|
-
|
2016-06-30 21:18:56 +08:00
|
|
|
- Y
|
|
|
|
|
2016-07-05 03:25:48 +08:00
|
|
|
-
|
2016-06-30 21:18:56 +08:00
|
|
|
- Y
|
|
|
|
|
|
|
|
- .. row 7
|
|
|
|
|
2016-07-05 03:25:48 +08:00
|
|
|
-
|
|
|
|
-
|
2016-06-30 21:18:56 +08:00
|
|
|
- C
|
|
|
|
|
2016-07-05 03:25:48 +08:00
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
2016-06-30 21:18:56 +08:00
|
|
|
- C
|
|
|
|
|
2016-07-05 03:25:48 +08:00
|
|
|
-
|
2016-06-30 21:18:56 +08:00
|
|
|
|
|
|
|
- .. row 8
|
|
|
|
|
|
|
|
- 3
|
|
|
|
|
|
|
|
- Y
|
|
|
|
|
2016-07-05 03:25:48 +08:00
|
|
|
-
|
2016-06-30 21:18:56 +08:00
|
|
|
- Y
|
|
|
|
|
2016-07-05 03:25:48 +08:00
|
|
|
-
|
2016-06-30 21:18:56 +08:00
|
|
|
- Y
|
|
|
|
|
2016-07-05 03:25:48 +08:00
|
|
|
-
|
2016-06-30 21:18:56 +08:00
|
|
|
- Y
|