From 4aaaad2fe95c6e2fc70285e15bfdf652917b854b Mon Sep 17 00:00:00 2001 From: f4exb Date: Tue, 8 Dec 2015 08:30:45 +0100 Subject: [PATCH] BFM demod: fixed mono --- plugins/channel/bfm/bfmdemod.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/channel/bfm/bfmdemod.cpp b/plugins/channel/bfm/bfmdemod.cpp index 0541c33ac..4a87278f2 100644 --- a/plugins/channel/bfm/bfmdemod.cpp +++ b/plugins/channel/bfm/bfmdemod.cpp @@ -158,7 +158,7 @@ void BFMDemod::feed(const SampleVector::const_iterator& begin, const SampleVecto else { Real deemph; - m_deemphasisFilterX.process(ci.real() + sampleStereo, deemph); + m_deemphasisFilterX.process(ci.real(), deemph); quint16 sample = (qint16)(deemph * 3000 * m_running.m_volume); m_audioBuffer[m_audioBufferFill].l = sample; m_audioBuffer[m_audioBufferFill].r = sample;