Merge pull request #7122 from zaps166/webm_msvc2013

Fix compilation with MSVC 2013
This commit is contained in:
Rémi Verschelde 2016-11-21 11:53:32 +01:00 committed by GitHub
commit 6b2db2f1b6

View file

@ -9,7 +9,11 @@
#ifndef VPX_CONFIG_H
#define VPX_CONFIG_H
#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_MEDIA 0