aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorFrank Barchard <fbarchard@google.com>2020-05-21 11:33:45 -0700
committerCommit Bot <commit-bot@chromium.org>2020-05-26 18:48:00 +0000
commit94af5319f4ce014c47e5eb2167ef6aa1424db9ca (patch)
tree8291181d14ec46e7b9ef8357b000bb885db8c0db /docs
parentda41bca02b575354070666c49bfe885fdcdad528 (diff)
downloadlibyuv-94af5319f4ce014c47e5eb2167ef6aa1424db9ca.tar.gz
Remove M420 and refactor NV12ToI420
M420 is a row biplanar variation of NV12 supported on Microsoft webcams. The code was hardcoded to bt.601 and should be jpeg, but the format is very old and rare. Is a variation on NV12, so if someone needs it, it can be re-implemented easily. Bug: libyuv:858 Change-Id: I246167dba3c190cc76af741b8e91e58e68fde28f Reviewed-on: https://chromium-review.googlesource.com/c/libyuv/libyuv/+/2212608 Reviewed-by: richard winterton <rrwinterton@gmail.com> Commit-Queue: Frank Barchard <fbarchard@chromium.org>
Diffstat (limited to 'docs')
-rw-r--r--docs/formats.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/formats.md b/docs/formats.md
index 771fb460..a29ed5c3 100644
--- a/docs/formats.md
+++ b/docs/formats.md
@@ -50,7 +50,7 @@ The following is extracted from video_common.h as a complete list of formats sup
// 10 bit lsb
// 1 Secondary YUV format: row biplanar.
- FOURCC_M420 = FOURCC('M', '4', '2', '0'),
+ FOURCC_M420 = FOURCC('M', '4', '2', '0'), // deprecated.
// 11 Primary RGB formats: 4 32 bpp, 2 24 bpp, 3 16 bpp, 1 10 bpc
FOURCC_ARGB = FOURCC('A', 'R', 'G', 'B'),