[FFmpeg-cvslog] pix_fmt: Fix number of bits per component in yuv444p9be

Oskar Arvidsson git at videolan.org
Thu Sep 22 01:17:22 CEST 2011


ffmpeg | branch: release/0.8 | Oskar Arvidsson <oskar at irock.se> | Tue Jul 12 10:52:19 2011 +0200| [dc3ab8ca438e7033cd7e049398f78d87d3b6fc55] | committer: Anton Khirnov

pix_fmt: Fix number of bits per component in yuv444p9be

Signed-off-by: Ronald S. Bultje <rsbultje at gmail.com>
(cherry picked from commit e59d6b4d7255d6d3dc89580f534e18af1433fe25)

Signed-off-by: Anton Khirnov <anton at khirnov.net>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=dc3ab8ca438e7033cd7e049398f78d87d3b6fc55
---

 libavutil/pixdesc.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/libavutil/pixdesc.c b/libavutil/pixdesc.c
index efc7c7e..c70a413 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,
     },



More information about the ffmpeg-cvslog mailing list