Corresponds to upstream commit 524e9b043e7e86fd72353b987c9d5f6a1ebf83e1 Update notes: * Moved src/ to webrtc/ to easily diff against the third_party/webrtc in the chromium tree * ARM/NEON/MIPS support is not yet hooked up * Tests have not been copied
17 lines
517 B
Makefile
17 lines
517 B
Makefile
noinst_LTLIBRARIES = libaec.la
|
|
|
|
libaec_la_SOURCES = interface/echo_cancellation.h \
|
|
echo_cancellation.c \
|
|
aec_core.h \
|
|
aec_core.c \
|
|
aec_core_sse2.c \
|
|
aec_rdft.h \
|
|
aec_rdft.c \
|
|
aec_rdft_sse2.c \
|
|
resampler.h \
|
|
resampler.c
|
|
libaec_la_CFLAGS = $(AM_CFLAGS) $(COMMON_CFLAGS) \
|
|
-I$(top_srcdir)/src/common_audio/signal_processing_library/main/interface \
|
|
-I$(top_srcdir)/src/system_wrappers/interface \
|
|
-I$(top_srcdir)/src/modules/audio_processing/utility
|