vlc | branch: master | Vikram Fugro <[email protected]> | 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 <[email protected]> > 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"), _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
