New audio resampling library, created from code in the audioscale plugin.
authorDavid Schleef <ds@schleef.org>
Tue, 6 Nov 2001 11:17:13 +0000 (11:17 +0000)
committerDavid Schleef <ds@schleef.org>
Tue, 6 Nov 2001 11:17:13 +0000 (11:17 +0000)
Original commit message from CVS:
New audio resampling library, created from code in the audioscale
plugin.

libs/resample/Makefile.am [new file with mode: 0644]

diff --git a/libs/resample/Makefile.am b/libs/resample/Makefile.am
new file mode 100644 (file)
index 0000000..02c664d
--- /dev/null
@@ -0,0 +1,19 @@
+
+filterdir = $(libdir)/gst
+
+filter_LTLIBRARIES = libresample.la
+
+
+libresample_la_SOURCES = dtos.c functable.c resample.c resample.h
+
+
+noinst_HEADERS = resample.h
+
+check_PROGRAMS = test
+
+test_SOURCES = test.c
+test_LDADD = libresample.la
+
+
+CFLAGS += -O2 -ffast-math
+