Skip to content

Commit

Permalink
Define I444
Browse files Browse the repository at this point in the history
  • Loading branch information
padenot committed Jul 15, 2021
1 parent 7a5337d commit 5e070b6
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions index.src.html
Original file line number Diff line number Diff line change
Expand Up @@ -3438,6 +3438,8 @@
"I420A",
// 4:2:2 Y, U, V
"I422",
// 4:4:4 Y, U, V
"I444",
};
</xmp>

Expand Down Expand Up @@ -3520,6 +3522,21 @@
coordinates ({{VideoFrame/displayWidth}} and {{VideoFrame/displayHeight}})
MUST be even.
</dd>
<dt><dfn enum-value for=PixelFormat>I444</dfn></dt>
<dd>

This format is composed of three distinct planes, one plane of Luma and two
planes of Chroma, denoted Y, U and V, and present in this order. It is also
often refered to as Planar YUV 4:4:4.

Each sample in this format is 8 bits. This format does not use
[=sub-sampling=].

There are {{VideoFrame/codedWidth}} * {{VideoFrame/codedHeight}} samples (and
therefore bytes) in all three planes, arranged starting at the top left in the
image, in {{VideoFrame/codedHeight}} lines of {{VideoFrame/codedWidth}}
samples.
</dd>
</dl>

Image Decoding {#image-decoding}
Expand Down

0 comments on commit 5e070b6

Please sign in to comment.