Full Range V.S. LIMITED Range - tonykwok/made-mistakes-again GitHub Wiki
In summary, see the table below:
RANGE | DEPTH (b ) |
Luma (Y ) |
Chroma (Cb , Cr ) |
---|---|---|---|
FULL |
8 |
[0, 255] |
[0, 255] |
FULL |
10 |
[0, 1023] |
[0, 1023] |
FULL |
12 |
[0, 4095] |
[0, 4095] |
--- | --- | --- | --- |
LIMITED |
8 |
[16, 235] |
[16, 240] |
LIMITED |
10 |
[64, 940] |
[64, 960] |
LIMITED |
12 |
[255, 3760] |
[256, 3840] |
-
Full range uses all values for
Y
,Cb
andCr
from0
to2^b-1
, whereb
is the bit depth of the color format. -
Limited range uses values
16/256*2^b
to235/256*2^b
forY
, and1/16*2^b
to15/16*2^b
forCb
,Cr
,R
,G
andB
, whereb
is the bit depth of the color format.