audio-resampler: disable neon on arm64
authorAlessandro Decina <alessandro.d@gmail.com>
Wed, 30 Mar 2016 00:16:49 +0000 (11:16 +1100)
committerAlessandro Decina <alessandro.d@gmail.com>
Wed, 30 Mar 2016 00:16:49 +0000 (11:16 +1100)
Fix the build on arm64 by using HAVE_ARM_NEON instead of __ARM_NEON__.

gst-libs/gst/audio/audio-resampler.c

index 4d6303b..4e6ef43 100644 (file)
@@ -957,7 +957,7 @@ static ResampleFunc resample_funcs[] = {
 #define resample_gdouble_cubic_1 resample_funcs[15]
 
 #if defined HAVE_ORC && !defined DISABLE_ORC
-# if defined (__ARM_NEON__)
+# if defined (HAVE_ARM_NEON)
 #  define CHECK_NEON
 #  include "audio-resampler-neon.h"
 # endif