diff options
author | Oskar Arvidsson <oskar@irock.se> | 2011-07-12 10:52:19 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-09-11 12:33:25 +0200 |
commit | dc3ab8ca438e7033cd7e049398f78d87d3b6fc55 (patch) | |
tree | 90e30a1bced37627f6b3c6c90306c7c4e516eae7 | |
parent | e308a91c9cf3d93188cd30fc5ec7ef2ce0fbfc45 (diff) | |
download | ffmpeg-dc3ab8ca438e7033cd7e049398f78d87d3b6fc55.tar.gz |
pix_fmt: Fix number of bits per component in yuv444p9be
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
(cherry picked from commit e59d6b4d7255d6d3dc89580f534e18af1433fe25)
Signed-off-by: Anton Khirnov <anton@khirnov.net>
-rw-r--r-- | libavutil/pixdesc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavutil/pixdesc.c b/libavutil/pixdesc.c index efc7c7ea0e..c70a41347b 100644 --- a/libavutil/pixdesc.c +++ b/libavutil/pixdesc.c @@ -918,9 +918,9 @@ const AVPixFmtDescriptor av_pix_fmt_descriptors[PIX_FMT_NB] = { .log2_chroma_w= 0, .log2_chroma_h= 0, .comp = { - {0,1,1,0,9}, /* Y */ - {1,1,1,0,9}, /* U */ - {2,1,1,0,9}, /* V */ + {0,1,1,0,8}, /* Y */ + {1,1,1,0,8}, /* U */ + {2,1,1,0,8}, /* V */ }, .flags = PIX_FMT_BE, }, |