From 363bd1c62c1bcbac2dcb56f3dc47824f075888d2 Mon Sep 17 00:00:00 2001 From: Janne Grunau Date: Fri, 9 Mar 2012 15:21:15 +0100 Subject: remove iwmmxt optimizations The were broken since August of 2010 without anyone noticing until three weeks ago. Nobody cares about it anymore and hopefully Marvell will support NEON like in the PXA978 from now on. --- libavutil/cpu.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'libavutil/cpu.c') diff --git a/libavutil/cpu.c b/libavutil/cpu.c index c44075be29..6fc13adbca 100644 --- a/libavutil/cpu.c +++ b/libavutil/cpu.c @@ -28,7 +28,6 @@ int av_get_cpu_flags(void) if (checked) return flags; - if (ARCH_ARM) flags = ff_get_cpu_flags_arm(); if (ARCH_PPC) flags = ff_get_cpu_flags_ppc(); if (ARCH_X86) flags = ff_get_cpu_flags_x86(); @@ -53,9 +52,7 @@ static const struct { int flag; const char *name; } cpu_flag_tab[] = { -#if ARCH_ARM - { AV_CPU_FLAG_IWMMXT, "iwmmxt" }, -#elif ARCH_PPC +#if ARCH_PPC { AV_CPU_FLAG_ALTIVEC, "altivec" }, #elif ARCH_X86 { AV_CPU_FLAG_MMX, "mmx" }, -- cgit v1.2.3