1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2025-05-30 22:02:26 -04:00

NFM demod: assymetrical fade in and fade out for the squelch

This commit is contained in:
f4exb 2018-04-17 09:15:02 +02:00
parent 31eb02ab74
commit aa3f12ec46

View File

@ -193,7 +193,7 @@ void NFMDemod::feed(const SampleVector::const_iterator& begin, const SampleVecto
{ {
if (m_squelchCount > 0) if (m_squelchCount > 0)
{ {
m_squelchCount--; m_squelchCount -= 10;
} }
} }
} }
@ -203,7 +203,7 @@ void NFMDemod::feed(const SampleVector::const_iterator& begin, const SampleVecto
{ {
if (m_squelchCount > 0) if (m_squelchCount > 0)
{ {
m_squelchCount--; m_squelchCount -= 10;
} }
} }
else else