summaryrefslogtreecommitdiff
path: root/thirdparty/libvpx/vp9_rtcd.h
diff options
context:
space:
mode:
authorBłażej Szczygieł <spaz16@wp.pl>2016-09-14 22:10:55 +0200
committerBłażej Szczygieł <spaz16@wp.pl>2016-10-19 13:34:46 +0200
commit1556d0d377ec376dd02db80a1bee7fc81eb684d9 (patch)
tree551cff697c38c4ba5269a32db5e2f796666bff9c /thirdparty/libvpx/vp9_rtcd.h
parent5268443fdfd6f9f8172cede1140810ae21f7990a (diff)
libvpx: Necessary modifications
- convert ARM assembly (NEON) files, - add rtcd for run-time CPU features detection, - modify "system_state.h", - "arm_cpudetect.c" fixes.
Diffstat (limited to 'thirdparty/libvpx/vp9_rtcd.h')
-rw-r--r--thirdparty/libvpx/vp9_rtcd.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/thirdparty/libvpx/vp9_rtcd.h b/thirdparty/libvpx/vp9_rtcd.h
new file mode 100644
index 0000000000..cf2b463d63
--- /dev/null
+++ b/thirdparty/libvpx/vp9_rtcd.h
@@ -0,0 +1,9 @@
+#include "vpx_config.h"
+
+#if defined(WEBM_X86ASM) && (ARCH_X86 || ARCH_X86_64)
+ #include "rtcd/vp9_rtcd_x86.h"
+#elif defined(WEBM_ARMASM) && ARCH_ARM
+ #include "rtcd/vp9_rtcd_arm.h"
+#else
+ #include "rtcd/vp9_rtcd_c.h"
+#endif