mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-08-06 05:34:50 -04:00
Fix warning for proc_pocsag
This commit is contained in:
parent
d617618dcd
commit
3fa190324b
1 changed files with 11 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue