From: James Zern Date: Thu, 18 Apr 2013 20:01:57 +0000 (-0700) Subject: vpxdec: correct VP[89] fourccs X-Git-Tag: v1.3.0~1145^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dbd050c59f1969405958d00421af42fb0ad33a2a;p=libvpx vpxdec: correct VP[89] fourccs should have no effect as they are used in nestegg mappings, but aligns the defines with vpxenc.c Change-Id: Ic2295cd63701894c2963274239602b54cbb58631 --- diff --git a/vpxdec.c b/vpxdec.c index 41c654fae..df0b8199c 100644 --- a/vpxdec.c +++ b/vpxdec.c @@ -49,8 +49,8 @@ static const char *exec_name; -#define VP8_FOURCC (0x00385056) -#define VP9_FOURCC (0x00395056) +#define VP8_FOURCC (0x30385056) +#define VP9_FOURCC (0x30395056) static const struct { char const *name; const vpx_codec_iface_t *(*iface)(void);