1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-10-03 09:27:53 +02:00

pixdesc: fix gbr24p

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2011-10-09 00:59:59 +02:00
parent e084cad45f
commit cfabd35d5e

View File

@ -992,9 +992,9 @@ const AVPixFmtDescriptor av_pix_fmt_descriptors[PIX_FMT_NB] = {
.name = "gbr24p",
.nb_components= 3,
.comp = {
{0,1,1,0,7}, /* G */
{1,1,1,0,7}, /* B */
{2,1,1,0,7}, /* R */
{1,0,1,0,7}, /* B */
{0,0,1,0,7}, /* G */
{2,0,1,0,7}, /* R */
},
},
};