(NEON) Change WANT_NEON define back to HAVE_NEON

This commit is contained in:
twinaphex 2012-12-04 07:57:31 +01:00
parent d03b6afeb8
commit 2c2328d8a0
2 changed files with 6 additions and 6 deletions

View File

@ -2,7 +2,7 @@ RARCH_VERSION = "0.9.8-beta3"
LOCAL_PATH := $(call my-dir)
PERF_TEST := 1
HAVE_OPENSL := 1
WANT_NEON := 1
HAVE_NEON := 1
HAVE_SINC := 1
include $(CLEAR_VARS)
@ -18,12 +18,12 @@ endif
ifeq ($(TARGET_ARCH_ABI),armeabi-v7a)
ifeq ($(WANT_NEON),1)
LOCAL_CFLAGS += -DWANT_NEON
ifeq ($(HAVE_NEON),1)
LOCAL_CFLAGS += -DHAVE_NEON
endif
ifeq ($(HAVE_SINC),1)
ifeq ($(WANT_NEON),1)
ifeq ($(HAVE_NEON),1)
LOCAL_SRC_FILES += ../../../audio/sinc_neon.S.neon
endif
LOCAL_CFLAGS += -DHAVE_SINC

View File

@ -123,7 +123,7 @@ rarch_resampler_t *resampler_new(void)
RARCH_LOG("Sinc resampler [AVX]\n");
#elif defined(__SSE__)
RARCH_LOG("Sinc resampler [SSE]\n");
#elif defined(WANT_NEON)
#elif defined(HAVE_NEON)
RARCH_LOG("Sinc resampler [NEON]\n");
#else
RARCH_LOG("Sinc resampler [C]\n");
@ -210,7 +210,7 @@ static void process_sinc(rarch_resampler_t *resamp, float *out_buffer)
// movehl { X, R, X, L } == { X, R, X, R }
_mm_store_ss(out_buffer + 1, _mm_movehl_ps(sum, sum));
}
#elif defined(WANT_NEON)
#elif defined(HAVE_NEON)
void process_sinc_neon_asm(float *out, const float *left, const float *right, const float *coeff);
static void process_sinc(rarch_resampler_t *resamp, float *out_buffer)
{