1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-11-26 09:48:45 -05: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)
{
m_squelchCount--;
m_squelchCount -= 10;
}
}
}
@ -203,7 +203,7 @@ void NFMDemod::feed(const SampleVector::const_iterator& begin, const SampleVecto
{
if (m_squelchCount > 0)
{
m_squelchCount--;
m_squelchCount -= 10;
}
}
else