Skip to content
Snippets Groups Projects
Commit b8e72e4c authored by Steve Lhomme's avatar Steve Lhomme
Browse files

avcodec/chroma: map VLC_CODEC_XYZ12 to AV_PIX_FMT_XYZ12BE

It's not an RGB chroma and has a fixed memory layout as Big-Endian
according to the string in fourcc_list.
parent bdb93210
No related branches found
No related tags found
1 merge request!4239avcodec/chroma: map VLC_CODEC_XYZ12 to AV_PIX_FMT_XYZ12BE
Pipeline #383188 passed with stages
in 26 minutes and 11 seconds
......@@ -212,7 +212,7 @@ static const struct
{VLC_CODEC_GBRA_PLANAR_16B, AV_PIX_FMT_GBRAP16BE, 0, 0, 0 },
/* XYZ */
{VLC_CODEC_XYZ12, AV_PIX_FMT_XYZ12, 0xfff0, 0xfff0, 0xfff0},
{VLC_CODEC_XYZ12, AV_PIX_FMT_XYZ12BE, 0, 0, 0 },
{ 0, 0, 0, 0, 0 }
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment