OK, it plays some crappy audio but crashes on quit and all that kind of great stuff

This commit is contained in:
xenakios
2017-11-13 18:15:07 +02:00
parent d7ca59b90a
commit d97975f27a
7 changed files with 60 additions and 53 deletions

View File

@ -20,8 +20,6 @@
#include <stdlib.h>
#include <math.h>
extern std::unique_ptr<PropertiesFile> g_propsfile;
FFT::FFT(int nsamples_)
{
nsamples=nsamples_;
@ -39,7 +37,7 @@ FFT::FFT(int nsamples_)
data.resize(nsamples,true);
bool allow_long_planning = g_propsfile->getBoolValue("fftw_allow_long_planning",false);
bool allow_long_planning = false; // g_propsfile->getBoolValue("fftw_allow_long_planning", false);
//double t0 = Time::getMillisecondCounterHiRes();
if (allow_long_planning)
{