mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-08 09:36:02 -05:00
129 lines
4.5 KiB
C++
129 lines
4.5 KiB
C++
///////////////////////////////////////////////////////////////////////////////////
|
|
// Copyright (C) 2012 maintech GmbH, Otto-Hahn-Str. 15, 97204 Hoechberg, Germany //
|
|
// written by Christian Daniel //
|
|
// (c) 2014 Modified by John Greb
|
|
// //
|
|
// 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 "ssbdemod.h"
|
|
#include "audio/audiooutput.h"
|
|
#include "dsp/dspcommands.h"
|
|
|
|
MESSAGE_CLASS_DEFINITION(SSBDemod::MsgConfigureSSBDemod, Message)
|
|
|
|
SSBDemod::SSBDemod(AudioFifo* audioFifo, SampleSink* sampleSink) :
|
|
m_sampleSink(sampleSink),
|
|
m_audioFifo(audioFifo)
|
|
{
|
|
m_Bandwidth = 5000;
|
|
m_volume = 2.0;
|
|
m_sampleRate = 96000;
|
|
m_frequency = 0;
|
|
m_nco.setFreq(m_frequency, m_sampleRate);
|
|
m_interpolator.create(16, m_sampleRate, 5000);
|
|
m_sampleDistanceRemain = (Real)m_sampleRate / 48000.0;
|
|
|
|
m_lowpass.create(21, 48000, 5000);
|
|
|
|
m_audioBuffer.resize(512);
|
|
m_audioBufferFill = 0;
|
|
}
|
|
|
|
SSBDemod::~SSBDemod()
|
|
{
|
|
}
|
|
|
|
void SSBDemod::configure(MessageQueue* messageQueue, Real Bandwidth, Real volume)
|
|
{
|
|
Message* cmd = MsgConfigureSSBDemod::create(Bandwidth, volume);
|
|
cmd->submit(messageQueue, this);
|
|
}
|
|
|
|
int undersamplecount = 0;
|
|
void SSBDemod::feed(SampleVector::const_iterator begin, SampleVector::const_iterator end, bool firstOfBurst)
|
|
{
|
|
Complex ci;
|
|
bool consumed;
|
|
|
|
for(SampleVector::const_iterator it = begin; it < end; ++it) {
|
|
Complex c(it->real() / 32768.0, it->imag() / 32768.0);
|
|
c *= m_nco.nextIQ();
|
|
|
|
consumed = false;
|
|
// could squelch audio if RTL_SDR samplerate is not being fully decimated.
|
|
if(m_interpolator.interpolate(&m_sampleDistanceRemain, c, &consumed, &ci)) {
|
|
Real demod = ci.imag() + ci.real();
|
|
demod = 32768.0 * m_lowpass.filter(demod * 0.7);
|
|
|
|
// Downsample by 4x for audio display
|
|
if (!(undersamplecount++ & 3))
|
|
m_sampleBuffer.push_back(Sample(demod, 0.0));
|
|
|
|
qint16 sample = (qint16)(demod * m_volume);
|
|
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);
|
|
m_audioBufferFill = 0;
|
|
}
|
|
m_sampleDistanceRemain += (Real)m_sampleRate / 48000.0;
|
|
}
|
|
}
|
|
if(m_audioFifo->write((const quint8*)&m_audioBuffer[0], m_audioBufferFill, 0) != m_audioBufferFill)
|
|
;//qDebug("lost samples");
|
|
m_audioBufferFill = 0;
|
|
|
|
if(m_sampleSink != NULL)
|
|
m_sampleSink->feed(m_sampleBuffer.begin(), m_sampleBuffer.end(), firstOfBurst);
|
|
m_sampleBuffer.clear();
|
|
}
|
|
|
|
void SSBDemod::start()
|
|
{
|
|
}
|
|
|
|
void SSBDemod::stop()
|
|
{
|
|
}
|
|
|
|
bool SSBDemod::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_nco.setFreq(-signal->getFrequencyOffset(), m_sampleRate);
|
|
m_interpolator.create(16, m_sampleRate, m_Bandwidth);
|
|
m_sampleDistanceRemain = m_sampleRate / 48000.0;
|
|
cmd->completed();
|
|
return true;
|
|
} else if(MsgConfigureSSBDemod::match(cmd)) {
|
|
MsgConfigureSSBDemod* cfg = (MsgConfigureSSBDemod*)cmd;
|
|
m_Bandwidth = cfg->getBandwidth();
|
|
m_interpolator.create(16, m_sampleRate, m_Bandwidth);
|
|
m_lowpass.create(21, 48000, cfg->getBandwidth());
|
|
m_volume = cfg->getVolume();
|
|
m_volume *= m_volume * 0.1;
|
|
cmd->completed();
|
|
return true;
|
|
} else {
|
|
if(m_sampleSink != NULL)
|
|
return m_sampleSink->handleMessage(cmd);
|
|
else return false;
|
|
}
|
|
}
|