[vlc-devel] [PATCH] fourcc: add fourcc aliases for YUV formats

Vikram Fugro vikram.fugro at gmail.com
Thu Jun 5 21:45:56 CEST 2014


Add fourcc aliases for 422 planar and 411 planar.
These are Y42B & Y41B respectively.
---
 src/misc/fourcc.c |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/misc/fourcc.c b/src/misc/fourcc.c
index 536b958..9adefca 100644
--- a/src/misc/fourcc.c
+++ b/src/misc/fourcc.c
@@ -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"),
-- 
1.7.9.5




More information about the vlc-devel mailing list