[vlc-devel] [PATCH] contrib: speexdsp: fix build with android-ndk10c
Thomas Guillem
tom at gllm.fr
Mon Oct 20 14:50:27 CEST 2014
In android-ndk10c, there is a "arm_neon.h" for all archs. The arm_neon.h for
x86* contains correspondence between neon and sse. In speexdsp, There is a
conflict between resample_sse.h and resample_neon.h. So disable neon if arch is
known to don't have neon.
---
contrib/src/speexdsp/rules.mak | 3 +++
1 file changed, 3 insertions(+)
diff --git a/contrib/src/speexdsp/rules.mak b/contrib/src/speexdsp/rules.mak
index b8a0fd6..3cc2b15 100644
--- a/contrib/src/speexdsp/rules.mak
+++ b/contrib/src/speexdsp/rules.mak
@@ -27,6 +27,9 @@ ifeq ($(ARCH),aarch64)
# old neon, not compatible with aarch64
SPEEXDSP_CONF += --disable-neon
endif
+ifndef HAVE_NEON
+SPEEXDSP_CONF += --disable-neon
+endif
ifndef HAVE_FPU
SPEEXDSP_CONF += --enable-fixed-point
ifeq ($(ARCH),arm)
--
2.1.0
More information about the vlc-devel
mailing list