From 39e0005e226ed6f04562e9d5d7548782fef81c20 Mon Sep 17 00:00:00 2001 From: John Glover Date: Tue, 21 Aug 2012 18:31:07 +0100 Subject: [sndobj] Update SndObj to use FFTW v3 (was using v2). Remove unused SndObj files. Whitespace clean up. --- src/sndobj/IFGram.h | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) (limited to 'src/sndobj/IFGram.h') 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 - - - - - -- cgit v1.2.3