1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2025-02-03 09:44:01 -05:00

BFM demod: fixed mono

This commit is contained in:
f4exb 2015-12-08 08:30:45 +01:00
parent 9fdff1e028
commit 4aaaad2fe9

View File

@ -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;