shithub: libvpx

Download patch

ref: 8015a9aedc2358135940180884f0b9bba9509009
parent: 907016fdc748f3511c5c847c2f4c00e8ccce2577
author: Dmitry Kovalev <dkovalev@google.com>
date: Fri Mar 22 07:56:02 EDT 2013

Fixing fourcc for VP8 and VP9.

Changing 0x00 ('') fourcc byte to 0x30 ('0'). For VP8 from
0x00385056 to 0x30385056, for VP9 from 0x00395056 to 0x30395056.

Change-Id: I26b1b603c20dd41f7aeabf8cd7893dfd5b1c8b59

--- a/vpxenc.c
+++ b/vpxenc.c
@@ -89,8 +89,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 codec_item {
   char const              *name;
   const vpx_codec_iface_t *(*iface)(void);