1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-12-17 23:28:50 -05:00

Set default Kaiser alpha factor at pi

This commit is contained in:
f4exb 2020-02-08 18:24:34 +01:00
parent 8a5daee1b8
commit 07db5c0f80

View File

@ -19,7 +19,7 @@
#include "dsp/fftwindow.h"
FFTWindow::FFTWindow() :
m_kaiserAlpha(2.15) // beta = 6.76 first sidelobe at -70dB
m_kaiserAlpha(M_PI) // first sidelobe at < -70dB
{
m_kaiserI0Alpha = zeroethOrderBessel(m_kaiserAlpha);
}