Commit d032dc43 authored by Vikram Fugro's avatar Vikram Fugro Committed by Jean-Baptiste Kempf

fourcc: add fourcc aliases for YUV formats

Add fourcc aliases for 422 planar and 411 planar.
These are Y42B & Y41B respectively.
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 11dd4958
......@@ -761,11 +761,13 @@ static const staticentry_t p_list_video[] = {
A("I410"),
B(VLC_CODEC_I411, "Planar 4:1:1 YUV"),
A("I411"),
A("Y41B"),
B(VLC_CODEC_I420, "Planar 4:2:0 YUV"),
A("I420"),
A("IYUV"),
B(VLC_CODEC_I422, "Planar 4:2:2 YUV"),
A("I422"),
A("Y42B"),
B(VLC_CODEC_I440, "Planar 4:4:0 YUV"),
A("I440"),
B(VLC_CODEC_I444, "Planar 4:4:4 YUV"),
......
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