From ce65c30264be9683dd3a59b35730d2f31e02d37f Mon Sep 17 00:00:00 2001 From: John Glover Date: Thu, 21 Oct 2010 13:39:28 +0100 Subject: 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. --- sndobj/IFGram.cpp | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) (limited to 'sndobj/IFGram.cpp') diff --git a/sndobj/IFGram.cpp b/sndobj/IFGram.cpp index eb6684a..fcd73b1 100644 --- a/sndobj/IFGram.cpp +++ b/sndobj/IFGram.cpp @@ -29,22 +29,22 @@ #include "IFGram.h" IFGram::IFGram(){ - m_diffwin = new float[m_fftsize]; - m_fftdiff = new float[m_fftsize]; - m_diffsig = new float[m_fftsize]; + m_diffwin = new double[m_fftsize]; + m_fftdiff = new double[m_fftsize]; + m_diffsig = new double[m_fftsize]; m_factor = m_sr/TWOPI; - m_pdiff = new float[m_halfsize]; + m_pdiff = new double[m_halfsize]; } -IFGram::IFGram(Table* window, SndObj* input, float scale, - int fftsize, int hopsize, float sr) +IFGram::IFGram(Table* window, SndObj* input, double scale, + int fftsize, int hopsize, double sr) :PVA(window, input, scale, fftsize, hopsize, sr) { - m_diffwin = new float[m_fftsize]; - m_fftdiff = new float[m_fftsize]; - m_diffsig = new float[m_fftsize]; - m_pdiff = new float[m_halfsize]; + m_diffwin = new double[m_fftsize]; + m_fftdiff = new double[m_fftsize]; + m_diffsig = new double[m_fftsize]; + m_pdiff = new double[m_halfsize]; for(int i=0; iLookup(i) - m_table->Lookup(i+1); m_factor = m_sr/TWOPI; @@ -60,7 +60,7 @@ IFGram::~IFGram(){ int -IFGram::Set(char* mess, float value){ +IFGram::Set(char* mess, double value){ switch(FindMsg(mess)){ @@ -103,9 +103,9 @@ IFGram::SetFFTSize(int fftsize){ delete[] m_phases; m_factor = m_sr*TWOPI/m_fftsize; - m_diffwin = new float[m_fftsize]; - m_fftdiff = new float[m_fftsize]; - m_phases = new float[m_halfsize]; + m_diffwin = new double[m_fftsize]; + m_fftdiff = new double[m_fftsize]; + m_phases = new double[m_halfsize]; for(int i=0; iLookup(i) - m_table->Lookup(i+1); @@ -113,7 +113,7 @@ IFGram::SetFFTSize(int fftsize){ } void -IFGram::IFAnalysis(float* signal){ +IFGram::IFAnalysis(double* signal){ double powerspec, da,db, a, b, ph,d; int i2, i; @@ -123,7 +123,7 @@ IFGram::IFAnalysis(float* signal){ signal[i] = signal[i]*m_table->Lookup(i); } - float tmp1, tmp2; + double tmp1, tmp2; for(i=0; i PI) d -= TWOPI; while(d < -PI) d += TWOPI; @@ -174,14 +174,14 @@ IFGram::DoProcess(){ if(!m_error){ if(m_input){ if(m_enable){ - int i; float sig = 0.f; + int i; double sig = 0.f; for(m_vecpos = 0; m_vecpos < m_hopsize; m_vecpos++) { // signal input sig = m_input->Output(m_vecpos); // distribute to the signal input frames // according to a time pointer (kept by counter[n]) for(i=0;i < m_frames; i++){ - m_sigframe[i][m_counter[i]]= (float) sig; + m_sigframe[i][m_counter[i]]= (double) sig; m_counter[i]++; } } -- cgit v1.2.3