summaryrefslogtreecommitdiffstats
path: root/services/audioflinger/Android.mk
diff options
context:
space:
mode:
authorMathias Agopian <mathias@google.com>2012-10-21 01:01:38 -0700
committerMathias Agopian <mathias@google.com>2012-10-26 14:58:43 -0700
commit0fc2cb59d5f77412f5922540d67fea81f4d1744b (patch)
tree91a495d745f9d1a68ad74bce4b0bda7fb3461fbc /services/audioflinger/Android.mk
parent93d0767a8a9ee9d649eea9afac59f778e29a6a54 (diff)
downloadframeworks_av-0fc2cb59d5f77412f5922540d67fea81f4d1744b.zip
frameworks_av-0fc2cb59d5f77412f5922540d67fea81f4d1744b.tar.gz
frameworks_av-0fc2cb59d5f77412f5922540d67fea81f4d1744b.tar.bz2
a test app for the resamplers
Change-Id: I66852d90d384f1d9e77b51ad1a1ebdbaf61d0607
Diffstat (limited to 'services/audioflinger/Android.mk')
-rw-r--r--services/audioflinger/Android.mk23
1 files changed, 23 insertions, 0 deletions
diff --git a/services/audioflinger/Android.mk b/services/audioflinger/Android.mk
index 60f231e..2899953 100644
--- a/services/audioflinger/Android.mk
+++ b/services/audioflinger/Android.mk
@@ -78,4 +78,27 @@ LOCAL_CFLAGS += -UFAST_TRACKS_AT_NON_NATIVE_SAMPLE_RATE
include $(BUILD_SHARED_LIBRARY)
+#
+# build audio resampler test tool
+#
+include $(CLEAR_VARS)
+
+LOCAL_SRC_FILES:= \
+ test-resample.cpp \
+ AudioResampler.cpp.arm \
+ AudioResamplerCubic.cpp.arm \
+ AudioResamplerSinc.cpp.arm
+
+LOCAL_SHARED_LIBRARIES := \
+ libdl \
+ libcutils \
+ libutils
+
+LOCAL_MODULE:= test-resample
+
+LOCAL_MODULE_TAGS := optional
+
+include $(BUILD_EXECUTABLE)
+
+
include $(call all-makefiles-under,$(LOCAL_PATH))