これは本当に古い質問ですが、以前に受け入れられた回答は正しくないので、正しい回答を投稿してください。
ビデオレンジとフルレンジは、輝度と彩度のコンポーネントが占める範囲を指します。ビデオ範囲は、通常は占有されないが、信号のゲインまたは減衰を導入する可能性のあるさまざまなアナログプロセスを通過するときに信号を保持する「ヘッドルーム」、ルーマ、およびクロマの値を定義しました。
kCVPixelFormatType_420YpCbCr8BiPlanarVideoRange
8-bit 4:2:0 Component Y'CbCr format. Each 2x2 pixel block is represented
by 4 unsigned eight bit luminance values and two unsigned eight bit
chroma values. The chroma plane and luma plane are separated in memory. The
luminance components have a range of [16, 235], while the chroma value
has a range of [16, 240]. This is consistent with the CCIR601 spec.
'420v' is the Apple Core Video four-character code for this pixel format.
kCVPixelFormatType_420YpCbCr8BiPlanarFullRange
8-bit 4:2:0 Component Y'CbCr format. Each 2x2 pixel block is represented
by 4 unsigned eight bit luminance components and two unsigned eight bit
chroma components. The chroma plane and luma plane are separated in memory. The
luminance components have a range of [0, 255], while the chroma value
has a range of [1, 255].
'420f' is the Apple Core Video four-character code for this pixel format.
The equivalent Microsoft fourCC is 'NV12'.
フォーマットを選択できる場合は、信号値をより正確に量子化するため、フルレンジバリアントが推奨されます。