1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-02-12 20:53:42 -05:00

Remove unused variables.

This commit is contained in:
Jon Beniston 2026-01-23 12:11:12 +00:00
parent 7cc44d3878
commit ebc8afa64c
2 changed files with 0 additions and 4 deletions

View File

@ -325,7 +325,6 @@ InmarsatDemodSink::InmarsatDemodSink(InmarsatDemod *stdCDemod) :
m_adjustedSPS = MAX_SAMPLES_PER_SYMBOL;
m_adjustment = 0;
m_totalSampleCount = 0;
m_error = 0;
m_errorSum = 0;
m_mu = 0.0;
@ -512,7 +511,6 @@ void InmarsatDemodSink::processOneSample(Complex &ci)
m_adjustedSPS = SAMPLES_PER_SYMBOL - m_adjustment; // Positve mu indicates late, so reduce time to next sample
m_adjustment = adjustment;
m_prevTotalSampleCount = m_totalSampleCount;
// Costas loop for fine phase/freq correction - runs at symbol rate

View File

@ -232,8 +232,6 @@ private:
Real m_mu;
int m_adjustedSPS;
int m_adjustment;
qint64 m_totalSampleCount;
qint64 m_prevTotalSampleCount;
int m_bit;
uint8_t m_bits[DEMODULATOR_SYMBOLSPERCHUNK];
int m_bitCount;