Commit 8310bccc authored by Michael Niedermayer's avatar Michael Niedermayer

avutil/pixdesc: try to fix NV20* descriptors

They where inconsistent (overlapping fields and wrong sizes)
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 90ca5a9b
......@@ -1824,9 +1824,9 @@ const AVPixFmtDescriptor av_pix_fmt_descriptors[AV_PIX_FMT_NB] = {
.log2_chroma_w = 1,
.log2_chroma_h = 0,
.comp = {
{ 0, 0, 1, 0, 9 }, /* Y */
{ 1, 1, 1, 0, 9 }, /* U */
{ 1, 1, 3, 0, 9 }, /* V */
{ 0, 1, 1, 0, 9 }, /* Y */
{ 1, 3, 1, 0, 9 }, /* U */
{ 1, 3, 3, 0, 9 }, /* V */
},
.flags = AV_PIX_FMT_FLAG_PLANAR,
},
......@@ -1836,9 +1836,9 @@ const AVPixFmtDescriptor av_pix_fmt_descriptors[AV_PIX_FMT_NB] = {
.log2_chroma_w = 1,
.log2_chroma_h = 0,
.comp = {
{ 0, 0, 1, 0, 9 }, /* Y */
{ 1, 1, 1, 0, 9 }, /* U */
{ 1, 1, 3, 0, 9 }, /* V */
{ 0, 1, 1, 0, 9 }, /* Y */
{ 1, 3, 1, 0, 9 }, /* U */
{ 1, 3, 3, 0, 9 }, /* V */
},
.flags = AV_PIX_FMT_FLAG_PLANAR | AV_PIX_FMT_FLAG_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