summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorJanne Grunau <janne-libav@jannau.net>2014-01-13 21:32:19 +0100
committerJanne Grunau <janne-libav@jannau.net>2014-01-15 11:58:39 +0100
commit1e9265cd8f0821acbeca1db437be1361a3976b85 (patch)
treec9acfefecf728229decfb8e0f009baa45810ae66 /libavcodec
parent2620df13104ddaa136158eb6bb1195adbf9d7692 (diff)
dct-test: test ff_simple_idct_neon only on ARM for now
Signed-off-by: Janne Grunau <janne-libav@jannau.net>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/dct-test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dct-test.c b/libavcodec/dct-test.c
index d71f7a3fb6..74a420615c 100644
--- a/libavcodec/dct-test.c
+++ b/libavcodec/dct-test.c
@@ -130,7 +130,7 @@ static const struct algo idct_tab[] = {
#if HAVE_ARMV6
{ "SIMPLE-ARMV6", ff_simple_idct_armv6, MMX_PERM, AV_CPU_FLAG_ARMV6 },
#endif
-#if HAVE_NEON
+#if HAVE_NEON && ARCH_ARM
{ "SIMPLE-NEON", ff_simple_idct_neon, PARTTRANS_PERM, AV_CPU_FLAG_NEON },
#endif