From 6c5c08c6a45a7868a75487568a8d15a8300af7b7 Mon Sep 17 00:00:00 2001 From: f4exb Date: Thu, 11 May 2017 23:40:43 +0200 Subject: [PATCH] AM demod: Use double for moving average storage type --- plugins/channelrx/demodam/amdemod.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/channelrx/demodam/amdemod.h b/plugins/channelrx/demodam/amdemod.h index 9d9e08706..a247a5c99 100644 --- a/plugins/channelrx/demodam/amdemod.h +++ b/plugins/channelrx/demodam/amdemod.h @@ -130,7 +130,7 @@ private: Real m_magsqPeak; int m_magsqCount; - MovingAverage m_movingAverage; + MovingAverage m_movingAverage; SimpleAGC m_volumeAGC; AudioVector m_audioBuffer;