summaryrefslogtreecommitdiffstats
path: root/media/libvpx/libvpx/vp8/common/generic/systemdependent.c
diff options
context:
space:
mode:
Diffstat (limited to 'media/libvpx/libvpx/vp8/common/generic/systemdependent.c')
-rw-r--r--media/libvpx/libvpx/vp8/common/generic/systemdependent.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/media/libvpx/libvpx/vp8/common/generic/systemdependent.c b/media/libvpx/libvpx/vp8/common/generic/systemdependent.c
index 7c8e083f4f..4aef15eef0 100644
--- a/media/libvpx/libvpx/vp8/common/generic/systemdependent.c
+++ b/media/libvpx/libvpx/vp8/common/generic/systemdependent.c
@@ -64,19 +64,4 @@ void vp8_machine_specific_config(VP8_COMMON *ctx) {
#if CONFIG_MULTITHREAD
ctx->processor_core_count = get_cpu_count();
#endif /* CONFIG_MULTITHREAD */
-
-#if VPX_ARCH_ARM
- ctx->cpu_caps = arm_cpu_caps();
-#elif VPX_ARCH_X86 || VPX_ARCH_X86_64
- ctx->cpu_caps = x86_simd_caps();
-#elif VPX_ARCH_PPC
- ctx->cpu_caps = ppc_simd_caps();
-#elif VPX_ARCH_MIPS
- ctx->cpu_caps = mips_cpu_caps();
-#elif VPX_ARCH_LOONGARCH
- ctx->cpu_caps = loongarch_cpu_caps();
-#else
- // generic-gnu targets.
- ctx->cpu_caps = 0;
-#endif
}