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
11 lines
353 B
Makefile
11 lines
353 B
Makefile
noinst_LTLIBRARIES = libagc.la
|
|
|
|
libagc_la_SOURCES = interface/gain_control.h \
|
|
analog_agc.c \
|
|
analog_agc.h \
|
|
digital_agc.c \
|
|
digital_agc.h
|
|
libagc_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
|