summaryrefslogtreecommitdiff
path: root/src/post/audio/dsp.h
diff options
context:
space:
mode:
authorJames Courtier-Dutton <jcdutton@users.sourceforge.net>2004-05-15 18:22:26 +0000
committerJames Courtier-Dutton <jcdutton@users.sourceforge.net>2004-05-15 18:22:26 +0000
commit1861b5d7bdf9fb669633b9ee471f6c57a5633b83 (patch)
treeb0092eaa4751d8f380375e8442c6728b23f6d447 /src/post/audio/dsp.h
parentca40c07778b4b6ad3814225fed05006f48c8477e (diff)
downloadxine-lib-1861b5d7bdf9fb669633b9ee471f6c57a5633b83.tar.gz
xine-lib-1861b5d7bdf9fb669633b9ee471f6c57a5633b83.tar.bz2
Port subwoofer filter from mplayer.
CVS patchset: 6543 CVS date: 2004/05/15 18:22:26
Diffstat (limited to 'src/post/audio/dsp.h')
-rw-r--r--src/post/audio/dsp.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/post/audio/dsp.h b/src/post/audio/dsp.h
new file mode 100644
index 000000000..8f5d5eb51
--- /dev/null
+++ b/src/post/audio/dsp.h
@@ -0,0 +1,22 @@
+/*=============================================================================
+//
+// This software has been released under the terms of the GNU Public
+// license. See http://www.gnu.org/copyleft/gpl.html for details.
+//
+// Copyright 2002 Anders Johansson ajh@atri.curtin.edu.au
+//
+//=============================================================================
+*/
+
+#ifndef _DSP_H
+#define _DSP_H 1
+
+/* Implementation of routines used for DSP */
+
+/* Size of floating point type used in routines */
+#define _ftype_t float
+
+#include <window.h>
+#include <filter.h>
+
+#endif