From 3f07cf447b6373f7c620f731014f4b0c0677f98e Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Kempf Date: Wed, 19 May 2010 18:27:57 +0200 Subject: [PATCH] Add VP8 fourcc VP80 (cherry picked from commit 889482503f86645c39960f7cfc1e4dcdbbc43e1c) Signed-off-by: Jean-Baptiste Kempf --- include/vlc_fourcc.h | 1 + src/misc/fourcc.c | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/include/vlc_fourcc.h b/include/vlc_fourcc.h index 407b57d894..d3e52e29e2 100644 --- a/include/vlc_fourcc.h +++ b/include/vlc_fourcc.h @@ -113,6 +113,7 @@ #define VLC_CODEC_FRWU VLC_FOURCC('F','R','W','U') #define VLC_CODEC_AMV VLC_FOURCC('A','M','V',' ') #define VLC_CODEC_INDEO5 VLC_FOURCC('I','V','5','0') +#define VLC_CODEC_VP8 VLC_FOURCC('V','P','8','0') /* Planar YUV 4:1:0 Y:V:U */ diff --git a/src/misc/fourcc.c b/src/misc/fourcc.c index 34a931d5b5..34517891c8 100644 --- a/src/misc/fourcc.c +++ b/src/misc/fourcc.c @@ -448,6 +448,10 @@ static const entry_t p_list_video[] = { B(VLC_CODEC_VP6A, "On2's VP6 A Video"), A("VP6A"), + B(VLC_CODEC_VP8, "On2's VP8 Video"), + A("VP80"), + + /* Xiph.org theora */ B(VLC_CODEC_THEORA, "Xiph.org's Theora Video"), A("theo"), -- 2.11.4.GIT