summaryrefslogtreecommitdiff
path: root/libavutil/cpu.c
diff options
context:
space:
mode:
authorJanne Grunau <janne-libav@jannau.net>2012-03-09 15:21:15 +0100
committerJanne Grunau <janne-libav@jannau.net>2012-03-12 22:46:56 +0100
commit363bd1c62c1bcbac2dcb56f3dc47824f075888d2 (patch)
tree0632378b2cb9e40d80586c5bf02d738d7ac82297 /libavutil/cpu.c
parent33c5c3ad070bc1203e48c8af9c6272d71f1d8b4d (diff)
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.
Diffstat (limited to 'libavutil/cpu.c')
-rw-r--r--libavutil/cpu.c5
1 files changed, 1 insertions, 4 deletions
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" },