From 1e9265cd8f0821acbeca1db437be1361a3976b85 Mon Sep 17 00:00:00 2001 From: Janne Grunau Date: Mon, 13 Jan 2014 21:32:19 +0100 Subject: [PATCH] dct-test: test ff_simple_idct_neon only on ARM for now Signed-off-by: Janne Grunau --- libavcodec/dct-test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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