1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-27 15:26:33 -04:00

FFT factory: limit default preallocation up to 1k

This commit is contained in:
f4exb 2020-03-15 19:59:56 +01:00
parent 606d4fd756
commit cee7bfdb1d

View File

@ -199,5 +199,5 @@ void DSPEngine::createFFTFactory(const QString& fftWisdomFileName)
void DSPEngine::preAllocateFFTs()
{
m_fftFactory->preallocate(7, 12, 1, 0); // pre-acllocate forward FFT only 1 per size from 128 to 4096
m_fftFactory->preallocate(7, 10, 1, 0); // pre-acllocate forward FFT only 1 per size from 128 to 1024
}