[vlc-commits] fourcc: add fourcc aliases for YUV formats
    Vikram Fugro 
    git at videolan.org
       
    Mon Jun  9 13:18:27 CEST 2014
    
    
  
vlc | branch: master | Vikram Fugro <vikram.fugro at gmail.com> | Thu Jun  5 18:45:56 2014 +0000| [d032dc437c1e04d9a9355a7b52ee93c21ac1b116] | committer: 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: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=d032dc437c1e04d9a9355a7b52ee93c21ac1b116
---
 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"),
    
    
More information about the vlc-commits
mailing list