mirror of
https://github.com/f4exb/sdrangel.git
synced 2026-08-01 16:38:06 -04:00
Put more volume on SSB audio
This commit is contained in:
@@ -82,7 +82,7 @@ void SSBDemod::feed(SampleVector::const_iterator begin, SampleVector::const_iter
|
||||
if (!(m_undersampleCount++ & 3))
|
||||
m_sampleBuffer.push_back(Sample(demod, 0.0));
|
||||
|
||||
qint16 sample = (qint16)(demod * m_volume);
|
||||
qint16 sample = (qint16)(demod * m_volume * 10);
|
||||
m_audioBuffer[m_audioBufferFill].l = sample;
|
||||
m_audioBuffer[m_audioBufferFill].r = sample;
|
||||
++m_audioBufferFill;
|
||||
|
||||
Reference in New Issue
Block a user