948235c06e
Added AudioEffect C++ class. AudioEffect is the base class for effect specific implementations, OpenSL ES effect interfaces and audio effect JNI. Added the AudioEffect JNI and AudioEffect JAVA class. AudioEffect is the base class to implement more specific JAVA classes to control audio effects from JAVA applications. Change-Id: If300a1b708f2e6605891261e67bfb4f8330a4624
17 lines
275 B
Makefile
17 lines
275 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES:= \
|
|
android_media_AudioEffect.cpp
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libcutils \
|
|
libutils \
|
|
libandroid_runtime \
|
|
libnativehelper \
|
|
libmedia
|
|
|
|
LOCAL_MODULE:= libaudioeffect_jni
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|