summaryrefslogtreecommitdiff
path: root/src/sndobj/IFGram.h
diff options
context:
space:
mode:
authorJohn Glover <j@johnglover.net>2012-08-21 18:31:07 +0100
committerJohn Glover <j@johnglover.net>2012-08-21 18:31:07 +0100
commit39e0005e226ed6f04562e9d5d7548782fef81c20 (patch)
tree5f4b23a8563a47ac8740525acc2f96565e88d002 /src/sndobj/IFGram.h
parent4f0a4f251ddbc466f14200202eff2213e30a5919 (diff)
downloadsimpl-39e0005e226ed6f04562e9d5d7548782fef81c20.tar.gz
simpl-39e0005e226ed6f04562e9d5d7548782fef81c20.tar.bz2
simpl-39e0005e226ed6f04562e9d5d7548782fef81c20.zip
[sndobj] Update SndObj to use FFTW v3 (was using v2). Remove unused SndObj files. Whitespace clean up.
Diffstat (limited to 'src/sndobj/IFGram.h')
-rw-r--r--src/sndobj/IFGram.h16
1 files changed, 2 insertions, 14 deletions
diff --git a/src/sndobj/IFGram.h b/src/sndobj/IFGram.h
index 609ebca..51cb0ab 100644
--- a/src/sndobj/IFGram.h
+++ b/src/sndobj/IFGram.h
@@ -1,4 +1,3 @@
-
////////////////////////////////////////////////////////////////////////
// This file is part of the SndObj library
//
@@ -32,37 +31,26 @@
#include "PVA.h"
class IFGram : public PVA {
-
protected:
-
-
double* m_diffwin; // difference window
- double* m_fftdiff; // holds fft of diff window
double* m_diffsig;
double* m_pdiff;
+ fftw_complex* m_fftdiff; // fft of diff window
+ fftw_plan m_diffplan;
private:
-
void inline IFAnalysis(double* signal);
public:
-
IFGram();
IFGram(Table* window, SndObj* input, double scale=1.f,
int fftsize=DEF_FFTSIZE, int hopsize=DEF_VECSIZE, double sr=DEF_SR);
-
~IFGram();
int Set(const char* mess, double value);
int Connect(const char* mess, void* input);
void SetFFTSize(int fftsize);
short DoProcess();
-
};
#endif
-
-
-
-
-