diff options
author | Oskar Arvidsson <oskar@irock.se> | 2011-07-12 10:52:19 +0200 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2011-07-12 08:13:56 -0700 |
commit | e59d6b4d7255d6d3dc89580f534e18af1433fe25 (patch) | |
tree | b8a5d375c2d4ef461ce15de970510abb2b83f016 /libavutil | |
parent | 5f847bf61dca1fd1a2f65a2f56c9a99d1cb716ab (diff) | |
download | ffmpeg-e59d6b4d7255d6d3dc89580f534e18af1433fe25.tar.gz |
pix_fmt: Fix number of bits per component in yuv444p9be
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
Diffstat (limited to 'libavutil')
-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, }, |