Fix stereo sound in DAB demod

This commit is contained in:
Jon Beniston 2022-02-14 13:54:28 +00:00
parent aca440935e
commit 290587c4a5
1 changed files with 1 additions and 1 deletions

View File

@ -423,7 +423,7 @@ void DABDemodSink::processOneAudioSample(Complex &ci)
float factor = m_settings.m_volume / 5.0f; // Should this be 5 or 10? 5 allows some positive gain
qint16 l = scale(ci.real(), factor);
qint16 r = scale(ci.real(), factor);
qint16 r = scale(ci.imag(), factor);
m_audioBuffer[m_audioBufferFill].l = l;
m_audioBuffer[m_audioBufferFill].r = r;