SSB demod: fixed audio volume too low

This commit is contained in:
f4exb 2015-10-11 06:57:26 +02:00
parent e9f122fac1
commit dc3bdc62e1
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ void SSBDemod::feed(const SampleVector::const_iterator& begin, const SampleVecto
sum.imag() = 0.0;
}
qint16 sample = (qint16)(demod * m_volume * 10);
qint16 sample = (qint16)(demod * m_volume * 100);
m_audioBuffer[m_audioBufferFill].l = sample;
m_audioBuffer[m_audioBufferFill].r = sample;
++m_audioBufferFill;