diff --git a/sdrbase/dsp/agc.h b/sdrbase/dsp/agc.h index 405769f3d..3db6f99ef 100644 --- a/sdrbase/dsp/agc.h +++ b/sdrbase/dsp/agc.h @@ -24,7 +24,7 @@ public: protected: Real m_u0; Real m_R; // objective mag - MovingAverage m_moving_average; // Averaging engine. The stack length conditions the smoothness of AGC. + MovingAverage m_moving_average; // Averaging engine. The stack length conditions the smoothness of AGC. int m_historySize; int m_count; }; @@ -109,7 +109,7 @@ private: Real m_fill; // refill average at this level Real m_cutoff; // consider samples only above this level Real m_clip; // never go below this level - MovingAverage m_moving_average; // Averaging engine. The stack length conditions the smoothness of AGC. + MovingAverage m_moving_average; // Averaging engine. The stack length conditions the smoothness of AGC. }; #endif /* INCLUDE_GPL_DSP_AGC_H_ */