aboutsummaryrefslogtreecommitdiff
path: root/tbext/source/main.cpp
diff options
context:
space:
mode:
authorTim Blechmann <timblech@users.sourceforge.net>2004-02-29 13:57:19 +0000
committerIOhannes m zmölnig <zmoelnig@iem.at>2015-10-14 15:11:54 +0200
commitb37d7f4d59d1ec038f6920e7a44436558d84befe (patch)
treeadfe1693abec354dc9d359f6875278ef858d1471 /tbext/source/main.cpp
parentce8d118561bd86df80eae140f2e0a64db55998e3 (diff)
*** empty log message ***
svn path=/trunk/externals/tb/; revision=1364
Diffstat (limited to 'tbext/source/main.cpp')
-rw-r--r--tbext/source/main.cpp15
1 files changed, 11 insertions, 4 deletions
diff --git a/tbext/source/main.cpp b/tbext/source/main.cpp
index 5a3bb14..07a0713 100644
--- a/tbext/source/main.cpp
+++ b/tbext/source/main.cpp
@@ -1,4 +1,4 @@
-/* Copyright (c) 2003 Tim Blechmann. */
+/* Copyright (c) 2003-2004 Tim Blechmann. */
/* For information on usage and redistribution, and for a DISCLAIMER OF ALL */
/* WARRANTIES, see the file, "COPYING" in this distribution. */
/* */
@@ -40,7 +40,7 @@
#include <flext.h>
-#define TBEXT_VERSION "0.03"
+#define TBEXT_VERSION "0.04"
#if !defined(FLEXT_VERSION) || (FLEXT_VERSION < 400)
#error upgrade your flext version!!!!!!
@@ -52,7 +52,7 @@ void ttbext_setup()
post("version "TBEXT_VERSION);
post("compiled on "__DATE__);
post("contains: tbroute(~), tbsig~, tbpow~, tbfft1~, tbfft2~, bufline~, fftgrrev~");
- post(" fftgrsort~, fftgrshuf~");
+ post(" fftgrsort~, fftgrshuf~, rfftw~, rifftw~");
FLEXT_SETUP(tbroute);
FLEXT_DSP_SETUP(tbsroute);
@@ -66,7 +66,14 @@ void ttbext_setup()
FLEXT_DSP_SETUP(fftgrsort);
FLEXT_DSP_SETUP(fftgrshuf);
FLEXT_DSP_SETUP(fftgrrev);
- FLEXT_DSP_SETUP(spigot_tilde);
+
+
+#if (FFTW == 1)
+ FLEXT_DSP_SETUP(rfftw);
+ FLEXT_DSP_SETUP(rifftw);
+#endif
+
+
}
FLEXT_LIB_SETUP(tbext,ttbext_setup)