diff options
Diffstat (limited to 'thirdparty/libvpx/vp8_rtcd.h')
-rw-r--r-- | thirdparty/libvpx/vp8_rtcd.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/thirdparty/libvpx/vp8_rtcd.h b/thirdparty/libvpx/vp8_rtcd.h new file mode 100644 index 0000000000..c5eeb5e579 --- /dev/null +++ b/thirdparty/libvpx/vp8_rtcd.h @@ -0,0 +1,9 @@ +#include "vpx_config.h" + +#if defined(WEBM_X86ASM) && (ARCH_X86 || ARCH_X86_64) + #include "rtcd/vp8_rtcd_x86.h" +#elif defined(WEBM_ARMASM) && ARCH_ARM + #include "rtcd/vp8_rtcd_arm.h" +#else + #include "rtcd/vp8_rtcd_c.h" +#endif |