summaryrefslogtreecommitdiffstats
path: root/tools/resampler_tools/Makefile
diff options
context:
space:
mode:
authorMathias Agopian <mathias@google.com>2007-08-23 03:16:02 -0700
committerGlenn Kasten <gkasten@google.com>2012-10-17 11:24:23 -0700
commit4b8a3d8a89814dc3fb365f18d01733e26eb495a1 (patch)
treeb2332f82504febf88d9fa672f6833cf37a78d83d /tools/resampler_tools/Makefile
parenta923dd4e6c14f5cba2fc5f6f152619ec6bc70c5d (diff)
downloadframeworks_av-4b8a3d8a89814dc3fb365f18d01733e26eb495a1.zip
frameworks_av-4b8a3d8a89814dc3fb365f18d01733e26eb495a1.tar.gz
frameworks_av-4b8a3d8a89814dc3fb365f18d01733e26eb495a1.tar.bz2
This is a tool to compute the the reconstruction filter coefficients for a sinc audio resampler.
Change-Id: I99be2505139b8e0e7647200e1647509d4f7e6067 Signed-off-by: Glenn Kasten <gkasten@google.com>
Diffstat (limited to 'tools/resampler_tools/Makefile')
-rw-r--r--tools/resampler_tools/Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/tools/resampler_tools/Makefile b/tools/resampler_tools/Makefile
new file mode 100644
index 0000000..28bd993
--- /dev/null
+++ b/tools/resampler_tools/Makefile
@@ -0,0 +1,17 @@
+# Copyright 2005 Google Inc. All Rights Reserved.
+#
+# Makefile for resampler_tools
+#
+
+
+LOCAL_PATH:= $(call my-dir)
+include $(CLEAR_VARS)
+
+LOCAL_SRC_FILES := \
+ fir.cpp
+
+LOCAL_TARGET := fir
+
+include $(BUILD_HOST_EXECUTABLE)
+
+