diff options
author | John Glover <glover.john@gmail.com> | 2010-10-21 13:39:28 +0100 |
---|---|---|
committer | John Glover <glover.john@gmail.com> | 2010-10-21 13:39:28 +0100 |
commit | ce65c30264be9683dd3a59b35730d2f31e02d37f (patch) | |
tree | 90aaf2e77526af9ba099e76175956d0dd6a37633 /sndobj/rfftw | |
parent | b46b988f164f983fc889c7bc0c96953e4609d27a (diff) | |
download | simpl-ce65c30264be9683dd3a59b35730d2f31e02d37f.tar.gz simpl-ce65c30264be9683dd3a59b35730d2f31e02d37f.tar.bz2 simpl-ce65c30264be9683dd3a59b35730d2f31e02d37f.zip |
Changed from floats to doubles in the C/C++ code, makes Python integration a bit easier. Fixed a bug that would cause SndObjSynthesis to crash if peak values were floats.
Diffstat (limited to 'sndobj/rfftw')
-rw-r--r-- | sndobj/rfftw/fftw.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sndobj/rfftw/fftw.h b/sndobj/rfftw/fftw.h index 92d04e9..41af839 100644 --- a/sndobj/rfftw/fftw.h +++ b/sndobj/rfftw/fftw.h @@ -37,7 +37,7 @@ extern "C" { * flag directly */ /* #undef FFTW_ENABLE_FLOAT*/ -#define FFTW_ENABLE_FLOAT +//#define FFTW_ENABLE_FLOAT /* our real numbers */ #ifdef FFTW_ENABLE_FLOAT |