2010-06-08 16:31:28 -07:00
|
|
|
#if defined(VPX_X86_ASM)
|
|
|
|
|
2012-05-16 01:47:59 -07:00
|
|
|
#if defined(_WIN64)
|
|
|
|
/* 64 bit Windows */
|
2014-02-20 08:22:23 -08:00
|
|
|
#ifdef _MSC_VER
|
2012-05-16 01:47:59 -07:00
|
|
|
#include "vpx_config_x86_64-win64-vs8.h"
|
2014-02-20 08:22:23 -08:00
|
|
|
#else
|
|
|
|
#include "vpx_config_x86_64-win64-gcc.h"
|
|
|
|
#endif
|
2012-05-16 01:47:59 -07:00
|
|
|
|
|
|
|
#elif defined(_WIN32)
|
2010-06-08 16:31:28 -07:00
|
|
|
/* 32 bit Windows, MSVC. */
|
2014-02-20 08:22:23 -08:00
|
|
|
#ifdef _MSC_VER
|
2010-06-08 16:31:28 -07:00
|
|
|
#include "vpx_config_x86-win32-vs8.h"
|
2014-02-20 08:22:23 -08:00
|
|
|
#else
|
|
|
|
#include "vpx_config_x86-win32-gcc.h"
|
|
|
|
#endif
|
2010-06-08 16:31:28 -07:00
|
|
|
|
|
|
|
#elif defined(__APPLE__) && defined(__x86_64__)
|
|
|
|
/* 64 bit MacOS. */
|
|
|
|
#include "vpx_config_x86_64-darwin9-gcc.h"
|
|
|
|
|
|
|
|
#elif defined(__APPLE__) && defined(__i386__)
|
|
|
|
/* 32 bit MacOS. */
|
|
|
|
#include "vpx_config_x86-darwin9-gcc.h"
|
|
|
|
|
2012-08-27 16:34:30 -07:00
|
|
|
#elif defined(__ELF__) && (defined(__i386) || defined(__i386__))
|
|
|
|
/* 32 bit ELF platforms. */
|
2010-06-08 16:31:28 -07:00
|
|
|
#include "vpx_config_x86-linux-gcc.h"
|
|
|
|
|
2012-08-27 16:34:30 -07:00
|
|
|
#elif defined(__ELF__) && (defined(__x86_64) || defined(__x86_64__))
|
|
|
|
/* 64 bit ELF platforms. */
|
2010-08-06 00:03:02 -07:00
|
|
|
#include "vpx_config_x86_64-linux-gcc.h"
|
|
|
|
|
2010-06-08 16:31:28 -07:00
|
|
|
#else
|
|
|
|
#error VPX_X86_ASM is defined, but assembly not supported on this platform!
|
|
|
|
#endif
|
|
|
|
|
2010-11-07 23:47:17 -08:00
|
|
|
#elif defined(VPX_ARM_ASM)
|
|
|
|
|
2013-11-29 06:02:00 -08:00
|
|
|
/* Android */
|
|
|
|
#include "vpx_config_armv7-android-gcc.h"
|
2010-11-07 23:47:17 -08:00
|
|
|
|
2010-06-08 16:31:28 -07:00
|
|
|
#else
|
|
|
|
/* Assume generic GNU/GCC configuration. */
|
|
|
|
#include "vpx_config_generic-gnu.h"
|
|
|
|
#endif
|
|
|
|
|
2011-10-13 17:37:29 -07:00
|
|
|
/* Control error-concealment support using our own #define rather than
|
|
|
|
hard-coding it. */
|
2013-12-06 05:16:00 -08:00
|
|
|
#if defined(MOZ_VPX_ERROR_CONCEALMENT)
|
2011-10-13 17:37:29 -07:00
|
|
|
#undef CONFIG_ERROR_CONCEALMENT
|
|
|
|
#define CONFIG_ERROR_CONCEALMENT 1
|
|
|
|
#endif
|