mirror of
https://github.com/eried/portapack-mayhem.git
synced 2024-10-01 01:26:06 -04:00
Merge pull request #603 from GullCode/proc_pocsag-warning-fix
Fix warning for proc_pocsag
This commit is contained in:
commit
4f58be737a
@ -68,6 +68,16 @@ public:
|
|||||||
delete[] m_lastVals;
|
delete[] m_lastVals;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
SmoothVals(const SmoothVals<float, float>&)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
SmoothVals & operator=(const SmoothVals<float, float>&)
|
||||||
|
{
|
||||||
|
return *this ;
|
||||||
|
}
|
||||||
|
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
||||||
// Set size of smoothing
|
// Set size of smoothing
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
||||||
@ -154,7 +164,7 @@ private:
|
|||||||
dsp::decimate::FIRC16xR16x32Decim8 decim_1 { };
|
dsp::decimate::FIRC16xR16x32Decim8 decim_1 { };
|
||||||
dsp::decimate::FIRAndDecimateComplex channel_filter { };
|
dsp::decimate::FIRAndDecimateComplex channel_filter { };
|
||||||
dsp::demodulate::FM demod { };
|
dsp::demodulate::FM demod { };
|
||||||
SmoothVals<float, float> smooth;
|
SmoothVals<float, float> smooth = { };
|
||||||
|
|
||||||
AudioOutput audio_output { };
|
AudioOutput audio_output { };
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user