shithub: libvpx

Download patch

ref: c4aeff94b16a6f71d6bea91c442d8b94056d9a75
parent: 20573f0640e181e8363fd1efc52f16569715eb97
parent: a4e410a3cacab1d8cafa93fdddeddead256b27c5
author: John Koleszar <jkoleszar@google.com>
date: Tue Dec 13 07:55:46 EST 2011

Merge "vpx_integer.h: fix incorrect type emulation"

--- a/vpx/vpx_integer.h
+++ b/vpx/vpx_integer.h
@@ -29,16 +29,8 @@
 typedef unsigned __int64 uint64_t;
 #endif
 
-#ifdef HAVE_ARMV6
-typedef unsigned int int_fast16_t;
-#else
-typedef signed short int_fast16_t;
-#endif
-typedef signed char int_fast8_t;
-typedef unsigned char uint_fast8_t;
-
 #ifndef _UINTPTR_T_DEFINED
-typedef unsigned int   uintptr_t;
+typedef size_t uintptr_t;
 #endif
 
 #else