micknoise / Maximilian

C++ Audio and Music DSP Library

Home Page:http://www.maximilian.strangeloop.co.uk

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

maxiConvolve trying to access private member of maxFFT

PavlosChatz opened this issue · comments

It seems that maxiConvolve code tries to access private member of maxiFFT/ maxiIFFT "bins". There is a public member function of maxiFFT returning the number of bins. Such a member function does not exist for maxiIFFT. Can I work on this to add a getNumBins member function to maxiIFFT and change the code in maxConvolve from fft.bins to fft.getNumBins?

Hi Pavlos, thanks that would be really helpful. Chris

Hello Chris, I created a pull request with this fix. Pavlos