From 627a7f91d20b17a7294f3663f4f10a8b4109008d Mon Sep 17 00:00:00 2001 From: f4exb Date: Thu, 24 Dec 2015 16:20:41 +0100 Subject: [PATCH] BFM demod: suppress LSB stereo balance adjustement --- plugins/channel/bfm/bfmdemod.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/channel/bfm/bfmdemod.cpp b/plugins/channel/bfm/bfmdemod.cpp index fe0b62c1c..c7290b647 100644 --- a/plugins/channel/bfm/bfmdemod.cpp +++ b/plugins/channel/bfm/bfmdemod.cpp @@ -208,8 +208,8 @@ void BFMDemod::feed(const SampleVector::const_iterator& begin, const SampleVecto m_deemphasisFilterY.process(ci.real() - sampleStereo, deemph_r); if (m_running.m_lsbStereo) { - m_audioBuffer[m_audioBufferFill].l = (qint16)(deemph_l * (1<<12) * m_running.m_volume * 0.93); - m_audioBuffer[m_audioBufferFill].r = (qint16)(deemph_r * (1<<12) * m_running.m_volume * 1.075); + m_audioBuffer[m_audioBufferFill].l = (qint16)(deemph_l * (1<<12) * m_running.m_volume); + m_audioBuffer[m_audioBufferFill].r = (qint16)(deemph_r * (1<<12) * m_running.m_volume); } else {