2014-11-16 17:39:50 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2012 maintech GmbH, Otto-Hahn-Str. 15, 97204 Hoechberg, Germany //
|
|
|
|
// written by Christian Daniel //
|
|
|
|
// //
|
|
|
|
// This program is free software; you can redistribute it and/or modify //
|
|
|
|
// it under the terms of the GNU General Public License as published by //
|
|
|
|
// the Free Software Foundation as version 3 of the License, or //
|
|
|
|
// //
|
|
|
|
// This program is distributed in the hope that it will be useful, //
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of //
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
|
|
|
|
// GNU General Public License V3 for more details. //
|
|
|
|
// //
|
|
|
|
// You should have received a copy of the GNU General Public License //
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include <QTime>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "wfmdemod.h"
|
|
|
|
#include "audio/audiooutput.h"
|
|
|
|
#include "dsp/dspcommands.h"
|
|
|
|
|
|
|
|
MESSAGE_CLASS_DEFINITION(WFMDemod::MsgConfigureWFMDemod, Message)
|
|
|
|
|
|
|
|
WFMDemod::WFMDemod(AudioFifo* audioFifo, SampleSink* sampleSink) :
|
|
|
|
m_sampleSink(sampleSink),
|
|
|
|
m_audioFifo(audioFifo)
|
|
|
|
{
|
|
|
|
m_volume = 2.0;
|
|
|
|
m_sampleRate = 250000;
|
|
|
|
m_frequency = 0;
|
|
|
|
|
|
|
|
m_interpolator.create(16, m_sampleRate, 16000);
|
|
|
|
m_sampleDistanceRemain = (Real)m_sampleRate / 48000.0;
|
|
|
|
|
|
|
|
m_audioBuffer.resize(256);
|
|
|
|
m_audioBufferFill = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
WFMDemod::~WFMDemod()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void WFMDemod::configure(MessageQueue* messageQueue, Real afBandwidth, Real volume)
|
|
|
|
{
|
|
|
|
Message* cmd = MsgConfigureWFMDemod::create(afBandwidth, volume);
|
|
|
|
cmd->submit(messageQueue, this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void WFMDemod::feed(SampleVector::const_iterator begin, SampleVector::const_iterator end, bool positiveOnly)
|
|
|
|
{
|
|
|
|
qint16 sample;
|
|
|
|
|
|
|
|
for(SampleVector::const_iterator it = begin; it < end; ++it) {
|
2014-12-21 17:46:24 -05:00
|
|
|
Real a = (0.005) * m_this.real() * (m_last.imag() - it->imag());
|
|
|
|
Real b = (0.005) * m_this.imag() * (m_last.real() - it->real());
|
|
|
|
m_last = m_this;
|
|
|
|
m_this = Complex(it->real(), it->imag());
|
|
|
|
Complex e(b - a, 0);
|
|
|
|
Complex c;
|
2014-11-16 17:39:50 -05:00
|
|
|
|
2014-11-25 03:31:44 -05:00
|
|
|
if(m_interpolator.interpolate(&m_sampleDistanceRemain, e, &c)) {
|
2014-12-21 17:46:24 -05:00
|
|
|
// TODO: Volume is a function of bandwidth
|
|
|
|
sample = (qint16)(c.real() * m_volume * m_volume);
|
2014-11-16 17:39:50 -05:00
|
|
|
m_sampleBuffer.push_back(Sample(sample, sample));
|
|
|
|
m_audioBuffer[m_audioBufferFill].l = sample;
|
|
|
|
m_audioBuffer[m_audioBufferFill].r = sample;
|
|
|
|
++m_audioBufferFill;
|
|
|
|
if(m_audioBufferFill >= m_audioBuffer.size()) {
|
|
|
|
uint res = m_audioFifo->write((const quint8*)&m_audioBuffer[0], m_audioBufferFill, 1);
|
|
|
|
if(res != m_audioBufferFill)
|
|
|
|
qDebug("lost %u samples", m_audioBufferFill - res);
|
|
|
|
m_audioBufferFill = 0;
|
|
|
|
}
|
|
|
|
m_sampleDistanceRemain += (Real)m_sampleRate / 48000.0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(m_audioFifo->write((const quint8*)&m_audioBuffer[0], m_audioBufferFill, 0) != m_audioBufferFill)
|
2014-11-21 10:41:58 -05:00
|
|
|
qDebug("lost samples");
|
2014-11-16 17:39:50 -05:00
|
|
|
m_audioBufferFill = 0;
|
|
|
|
|
|
|
|
if(m_sampleSink != NULL)
|
|
|
|
m_sampleSink->feed(m_sampleBuffer.begin(), m_sampleBuffer.end(), true);
|
|
|
|
m_sampleBuffer.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
void WFMDemod::start() {}
|
|
|
|
void WFMDemod::stop() {}
|
|
|
|
|
|
|
|
bool WFMDemod::handleMessage(Message* cmd)
|
|
|
|
{
|
|
|
|
if(DSPSignalNotification::match(cmd)) {
|
|
|
|
DSPSignalNotification* signal = (DSPSignalNotification*)cmd;
|
|
|
|
qDebug("%d samples/sec, %lld Hz offset", signal->getSampleRate(), signal->getFrequencyOffset());
|
|
|
|
m_sampleRate = signal->getSampleRate();
|
|
|
|
m_interpolator.create(16, m_sampleRate, m_afBandwidth);
|
|
|
|
m_sampleDistanceRemain = m_sampleRate / 48000.0;
|
|
|
|
cmd->completed();
|
|
|
|
return true;
|
|
|
|
} else if(MsgConfigureWFMDemod::match(cmd)) {
|
|
|
|
MsgConfigureWFMDemod* cfg = (MsgConfigureWFMDemod*)cmd;
|
|
|
|
m_afBandwidth = cfg->getAFBandwidth();
|
|
|
|
m_interpolator.create(16, m_sampleRate, m_afBandwidth);
|
|
|
|
m_volume = cfg->getVolume();
|
|
|
|
cmd->completed();
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
if(m_sampleSink != NULL)
|
|
|
|
return m_sampleSink->handleMessage(cmd);
|
|
|
|
else return false;
|
|
|
|
}
|
|
|
|
}
|