mirror of
https://github.com/libretro/RetroArch
synced 2025-01-30 03:32:46 +00:00
(qb) Add HAVE_CC_RESAMPLER
This commit is contained in:
parent
0b6e66f109
commit
2f2c53586c
1
Makefile
1
Makefile
@ -1,5 +1,4 @@
|
||||
HAVE_FILE_LOGGER=1
|
||||
HAVE_CC_RESAMPLER=1
|
||||
NEED_CXX_LINKER=0
|
||||
MISSING_DECLS =0
|
||||
|
||||
|
@ -285,6 +285,10 @@ endif
|
||||
ifeq ($(HAVE_CC_RESAMPLER), 1)
|
||||
DEFINES += -DHAVE_CC_RESAMPLER
|
||||
OBJ += audio/drivers_resampler/cc_resampler.o
|
||||
|
||||
ifeq ($(HAVE_NEON),1)
|
||||
OBJ += audio/drivers_resampler/cc_resampler_neon.o
|
||||
endif
|
||||
endif
|
||||
|
||||
ifeq ($(HAVE_LANGEXTRA), 1)
|
||||
@ -662,7 +666,6 @@ endif
|
||||
|
||||
ifeq ($(HAVE_NEON),1)
|
||||
OBJ += $(LIBRETRO_COMM_DIR)/audio/resampler/drivers/sinc_resampler_neon.o \
|
||||
audio/drivers_resampler/cc_resampler_neon.o \
|
||||
memory/neon/memcpy-neon.o
|
||||
|
||||
DEFINES += -DHAVE_NEON
|
||||
|
@ -20,6 +20,7 @@ HAVE_RUNAHEAD=yes # Runahead support
|
||||
HAVE_DSOUND=auto # DirectSound support
|
||||
HAVE_WASAPI=auto # WASAPI support
|
||||
HAVE_WINMM=auto # WinMM support
|
||||
HAVE_CC_RESAMPLER=yes # CC Resampler
|
||||
HAVE_SSL=auto # SSL/mbedtls support
|
||||
C89_SSL=no
|
||||
HAVE_BUILTINMBEDTLS=auto # Bake in the mbedtls library
|
||||
|
Loading…
x
Reference in New Issue
Block a user