mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-02-03 09:44:01 -05:00
Fix gcc warnings
This commit is contained in:
parent
bc29c5105d
commit
3ca1d1cb11
@ -41,12 +41,12 @@ RttyDemodSink::RttyDemodSink(RttyDemod *packetDemod) :
|
|||||||
m_prods1(nullptr),
|
m_prods1(nullptr),
|
||||||
m_prods2(nullptr),
|
m_prods2(nullptr),
|
||||||
m_exp(nullptr),
|
m_exp(nullptr),
|
||||||
|
m_sampleIdx(0),
|
||||||
m_clockHistogram(100),
|
m_clockHistogram(100),
|
||||||
m_shiftEstMag(m_fftSize),
|
m_shiftEstMag(m_fftSize),
|
||||||
m_fftSequence(-1),
|
m_fftSequence(-1),
|
||||||
m_fft(nullptr),
|
m_fft(nullptr),
|
||||||
m_fftCounter(0),
|
m_fftCounter(0),
|
||||||
m_sampleIdx(0),
|
|
||||||
m_sampleBufferIndex(0)
|
m_sampleBufferIndex(0)
|
||||||
{
|
{
|
||||||
m_magsq = 0.0;
|
m_magsq = 0.0;
|
||||||
|
@ -139,7 +139,7 @@ private:
|
|||||||
BaudotDecoder m_rttyDecoder;
|
BaudotDecoder m_rttyDecoder;
|
||||||
|
|
||||||
// For baud rate estimation
|
// For baud rate estimation
|
||||||
int m_cycleCount;
|
unsigned int m_cycleCount;
|
||||||
std::vector<int> m_clockHistogram;
|
std::vector<int> m_clockHistogram;
|
||||||
int m_edgeCount;
|
int m_edgeCount;
|
||||||
MovingAverageUtil<Real, Real, 5> m_baudRateAverage;
|
MovingAverageUtil<Real, Real, 5> m_baudRateAverage;
|
||||||
|
Loading…
Reference in New Issue
Block a user