audio-resampler: disable neon on arm64

Fix the build on arm64 by using HAVE_ARM_NEON instead of __ARM_NEON__.
This commit is contained in:
Alessandro Decina 2016-03-30 11:16:49 +11:00
parent 1851777b94
commit 74efde50ad

View 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