Commit e59d6b4d authored by Oskar Arvidsson's avatar Oskar Arvidsson Committed by Ronald S. Bultje

pix_fmt: Fix number of bits per component in yuv444p9be

Signed-off-by: 's avatarRonald S. Bultje <rsbultje@gmail.com>
parent 5f847bf6
......@@ -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,
},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment