Fix stereo sound in DAB demod

pull/1150/head
Jon Beniston 2022-02-14 13:54:28 +00:00
rodzic aca440935e
commit 290587c4a5
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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 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 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].l = l;
m_audioBuffer[m_audioBufferFill].r = r; m_audioBuffer[m_audioBufferFill].r = r;