mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
1d50c84dd8
Remove upstreamed patches, rebase stdint.patch. Update script to work with the most recent chrome pull, upstream hasn't been doing releases, so this is the next best way to stay current. It's no longer possible to build vp8 and vp9 in the same unified source file, so most of the vp9 code is moved out of unified sources.
21 lines
528 B
Diff
21 lines
528 B
Diff
--- vpx/vpx_integer.h- 2014-09-17 15:49:58.000000000 -0700
|
|
+++ vpx/vpx_integer.h 2014-09-17 15:52:59.000000000 -0700
|
|
@@ -15,6 +15,8 @@
|
|
/* get ptrdiff_t, size_t, wchar_t, NULL */
|
|
#include <stddef.h>
|
|
|
|
+#if !defined(VPX_DONT_DEFINE_STDINT_TYPES)
|
|
+
|
|
#if defined(_MSC_VER)
|
|
#define VPX_FORCE_INLINE __forceinline
|
|
#define VPX_INLINE __inline
|
|
@@ -56,6 +58,8 @@
|
|
|
|
#endif
|
|
|
|
+#endif // VPX_DONT_DEFINE_STDINT_TYPES
|
|
+
|
|
/* VS2010 defines stdint.h, but not inttypes.h */
|
|
#if defined(_MSC_VER) && _MSC_VER < 1800
|
|
#define PRId64 "I64d"
|