1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-09 09:25:07 -04:00

Remved default constuctors in Moving average and AGC classes

This commit is contained in:
f4exb
2017-05-11 18:39:00 +02:00
parent 54eb56977d
commit 9fcc3cd426
14 changed files with 44 additions and 57 deletions
+3 -1
View File
@@ -52,7 +52,9 @@ SSBMod::SSBMod(BasebandSampleSink* sampleSink) :
m_afInput(SSBModInputNone),
m_levelCalcCount(0),
m_peakLevel(0.0f),
m_levelSum(0.0f)
m_levelSum(0.0f),
m_movingAverage(40, 0),
m_volumeAGC(40, 0)
{
setObjectName("SSBMod");