Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOskar Arvidsson <oskar@irock.se>2011-07-12 12:52:19 +0400
committerAnton Khirnov <anton@khirnov.net>2011-09-11 14:33:25 +0400
commitdc3ab8ca438e7033cd7e049398f78d87d3b6fc55 (patch)
tree90e30a1bced37627f6b3c6c90306c7c4e516eae7 /libavutil
parente308a91c9cf3d93188cd30fc5ec7ef2ce0fbfc45 (diff)
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>
Diffstat (limited to 'libavutil')
-rw-r--r--libavutil/pixdesc.c6
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,
},