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
21 lines
740 B
Makefile
21 lines
740 B
Makefile
noinst_LTLIBRARIES = libns.la libns_fix.la
|
|
|
|
libns_la_SOURCES = interface/noise_suppression.h \
|
|
noise_suppression.c \
|
|
windows_private.h \
|
|
defines.h \
|
|
ns_core.c \
|
|
ns_core.h
|
|
libns_la_CFLAGS = $(AM_CFLAGS) $(COMMON_CFLAGS) \
|
|
-I$(top_srcdir)/src/common_audio/signal_processing_library/main/interface \
|
|
-I$(top_srcdir)/src/modules/audio_processing/utility
|
|
|
|
libns_fix_la_SOURCES = interface/noise_suppression_x.h \
|
|
noise_suppression_x.c \
|
|
nsx_defines.h \
|
|
nsx_core.c \
|
|
nsx_core.h
|
|
libns_fix_la_CFLAGS = $(AM_CFLAGS) $(COMMON_CFLAGS) \
|
|
-I$(top_srcdir)/src/common_audio/signal_processing_library/main/interface \
|
|
-I$(top_srcdir)/src/modules/audio_processing/utility
|