godot/thirdparty/libvpx/vpx_dsp_rtcd.h
Błażej Szczygieł 1556d0d377 libvpx: Necessary modifications
- convert ARM assembly (NEON) files,
- add rtcd for run-time CPU features detection,
- modify "system_state.h",
- "arm_cpudetect.c" fixes.
2016-10-19 13:34:46 +02:00

10 lines
237 B
C++

#include "vpx_config.h"
#if defined(WEBM_X86ASM) && (ARCH_X86 || ARCH_X86_64)
#include "rtcd/vpx_dsp_rtcd_x86.h"
#elif defined(WEBM_ARMASM) && ARCH_ARM
#include "rtcd/vpx_dsp_rtcd_arm.h"
#else
#include "rtcd/vpx_dsp_rtcd_c.h"
#endif