summaryrefslogtreecommitdiff
path: root/sndobj/IFFT.h
diff options
context:
space:
mode:
authorJohn Glover <glover.john@gmail.com>2010-10-21 13:39:28 +0100
committerJohn Glover <glover.john@gmail.com>2010-10-21 13:39:28 +0100
commitce65c30264be9683dd3a59b35730d2f31e02d37f (patch)
tree90aaf2e77526af9ba099e76175956d0dd6a37633 /sndobj/IFFT.h
parentb46b988f164f983fc889c7bc0c96953e4609d27a (diff)
downloadsimpl-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/IFFT.h')
-rw-r--r--sndobj/IFFT.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/sndobj/IFFT.h b/sndobj/IFFT.h
index b7ae3ff..e748a68 100644
--- a/sndobj/IFFT.h
+++ b/sndobj/IFFT.h
@@ -46,11 +46,11 @@ class IFFT : public SndObj {
int m_halfsize; // 1/2 fftsize
int *m_counter; // counter
rfftw_plan m_plan; // FFTW initialisation
- float m_fund;
+ double m_fund;
int m_frames; // frame overlaps
- float** m_sigframe; // signal frames
- float* m_ffttmp; // tmp vector for fft transform
+ double** m_sigframe; // signal frames
+ double* m_ffttmp; // tmp vector for fft transform
int m_cur; // index into current frame
Table* m_table; // window
@@ -60,7 +60,7 @@ class IFFT : public SndObj {
private:
// ifft wrapper method
- void inline ifft(float* signal);
+ void inline ifft(double* signal);
@@ -68,7 +68,7 @@ class IFFT : public SndObj {
IFFT();
IFFT(Table* window, SndObj* input, int fftsize = DEF_FFTSIZE,
- int hopsize=DEF_VECSIZE, float sr=DEF_SR);
+ int hopsize=DEF_VECSIZE, double sr=DEF_SR);
~IFFT();
@@ -76,7 +76,7 @@ class IFFT : public SndObj {
int GetHopSize() { return m_hopsize; }
void SetWindow(Table* window){ m_table = window;}
int Connect(char* mess, void* input);
- int Set(char* mess, float value);
+ int Set(char* mess, double value);
virtual void SetFFTSize(int fftsize);
virtual void SetHopSize(int hopsize);