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>
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)
+
+