This wrapper implements the interworking layer between the audio effect interface defined by the effect framework for audio preprocessing and the native interface of webrtc audio processing module. Change-Id: I3f9319730c102599cdf0dda520a53d90b4165114
33 lines
735 B
Makefile
Executable File
33 lines
735 B
Makefile
Executable File
LOCAL_PATH:= $(call my-dir)
|
|
|
|
# audio preprocessing wrapper
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE:= libaudiopreprocessing
|
|
LOCAL_MODULE_TAGS := optional
|
|
LOCAL_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)/soundfx
|
|
|
|
LOCAL_SRC_FILES:= \
|
|
PreProcessing.cpp
|
|
|
|
LOCAL_C_INCLUDES += \
|
|
external/webrtc/src \
|
|
external/webrtc/src/modules/interface \
|
|
external/webrtc/src/modules/audio_processing/main/interface \
|
|
system/media/audio_effects/include
|
|
|
|
LOCAL_C_INCLUDES += $(call include-path-for, speex)
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libwebrtc_audio_preprocessing \
|
|
libspeexresampler \
|
|
libutils
|
|
|
|
ifeq ($(TARGET_SIMULATOR),true)
|
|
LOCAL_LDLIBS += -ldl
|
|
else
|
|
LOCAL_SHARED_LIBRARIES += libdl
|
|
endif
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|