Fix compilation with MSVC 2013
This commit is contained in:
parent
bbc71083c1
commit
570a8e6b40
1 changed files with 5 additions and 1 deletions
6
thirdparty/libvpx/vpx_config.h
vendored
6
thirdparty/libvpx/vpx_config.h
vendored
|
@ -9,7 +9,11 @@
|
||||||
#ifndef VPX_CONFIG_H
|
#ifndef VPX_CONFIG_H
|
||||||
#define VPX_CONFIG_H
|
#define VPX_CONFIG_H
|
||||||
#define RESTRICT
|
#define RESTRICT
|
||||||
#define INLINE inline
|
#if defined(_MSC_VER) && (_MSC_VER < 1900)
|
||||||
|
#define INLINE __inline
|
||||||
|
#else
|
||||||
|
#define INLINE inline
|
||||||
|
#endif
|
||||||
|
|
||||||
#define HAVE_MIPS32 0
|
#define HAVE_MIPS32 0
|
||||||
#define HAVE_MEDIA 0
|
#define HAVE_MEDIA 0
|
||||||
|
|
Loading…
Reference in a new issue