1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-27 23:36:35 -04:00

AM demod: Use double for moving average storage type

This commit is contained in:
f4exb 2017-05-11 23:40:43 +02:00
parent 55099c73c5
commit 6c5c08c6a4

View File

@ -130,7 +130,7 @@ private:
Real m_magsqPeak;
int m_magsqCount;
MovingAverage<Real> m_movingAverage;
MovingAverage<double> m_movingAverage;
SimpleAGC m_volumeAGC;
AudioVector m_audioBuffer;