1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-14 00:56:41 -04:00
sdrangel/plugins/channel/ssb/ssbdemod.cpp

166 lines
5.2 KiB
C++
Raw Normal View History

2014-05-21 13:31:14 -04:00
///////////////////////////////////////////////////////////////////////////////////
// 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"
#include <iostream>
2014-05-21 13:31:14 -04:00
MESSAGE_CLASS_DEFINITION(SSBDemod::MsgConfigureSSBDemod, Message)
SSBDemod::SSBDemod(AudioFifo* audioFifo, SampleSink* sampleSink) :
m_sampleSink(sampleSink),
m_audioFifo(audioFifo)
{
2014-05-22 07:58:17 -04:00
m_Bandwidth = 5000;
m_LowCutoff = 300;
2014-05-21 13:31:14 -04:00
m_volume = 2.0;
m_spanLog2 = 3;
2014-05-21 13:31:14 -04:00
m_sampleRate = 96000;
m_frequency = 0;
m_nco.setFreq(m_frequency, m_sampleRate);
2014-05-22 07:58:17 -04:00
m_interpolator.create(16, m_sampleRate, 5000);
2014-05-21 13:31:14 -04:00
m_sampleDistanceRemain = (Real)m_sampleRate / 48000.0;
2014-05-22 07:58:17 -04:00
m_audioBuffer.resize(512);
2014-05-21 13:31:14 -04:00
m_audioBufferFill = 0;
2014-06-27 13:46:14 -04:00
m_undersampleCount = 0;
2014-07-13 04:06:43 -04:00
m_usb = true;
SSBFilter = new fftfilt(m_LowCutoff / 48000.0, m_Bandwidth / 48000.0, ssbFftLen);
2014-07-13 04:06:43 -04:00
// if (!USBFilter) segfault;
2014-05-21 13:31:14 -04:00
}
SSBDemod::~SSBDemod()
{
2014-07-13 04:06:43 -04:00
if (SSBFilter) delete SSBFilter;
2014-05-21 13:31:14 -04:00
}
void SSBDemod::configure(MessageQueue* messageQueue, Real Bandwidth, Real LowCutoff, Real volume, int spanLog2)
2014-05-21 13:31:14 -04:00
{
Message* cmd = MsgConfigureSSBDemod::create(Bandwidth, LowCutoff, volume, spanLog2);
2014-05-21 13:31:14 -04:00
cmd->submit(messageQueue, this);
}
2014-06-15 04:32:25 -04:00
void SSBDemod::feed(SampleVector::const_iterator begin, SampleVector::const_iterator end, bool positiveOnly)
2014-05-21 13:31:14 -04:00
{
Complex ci;
fftfilt::cmplx *sideband;
2014-07-13 04:06:43 -04:00
int n_out;
2014-05-21 13:31:14 -04:00
for(SampleVector::const_iterator it = begin; it < end; ++it) {
Complex c(it->real() / 32768.0, it->imag() / 32768.0);
c *= m_nco.nextIQ();
2014-11-25 03:31:44 -05:00
if(m_interpolator.interpolate(&m_sampleDistanceRemain, c, &ci)) {
2014-12-22 15:23:55 -05:00
n_out = SSBFilter->runSSB(ci, &sideband, m_usb);
2014-07-13 04:06:43 -04:00
m_sampleDistanceRemain += (Real)m_sampleRate / 48000.0;
} else
n_out = 0;
for (int i = 0; i < n_out; i++) {
Real demod = (sideband[i].real() + sideband[i].imag()) * 0.7 * 32768.0;
2014-05-21 13:31:14 -04:00
2014-05-22 07:58:17 -04:00
// Downsample by 4x for audio display
2014-06-27 13:46:14 -04:00
if (!(m_undersampleCount++ & 3))
2014-05-22 07:58:17 -04:00
m_sampleBuffer.push_back(Sample(demod, 0.0));
2014-05-21 13:31:14 -04:00
2015-05-14 21:14:51 -04:00
qint16 sample = (qint16)(demod * m_volume * 10);
2014-05-21 13:31:14 -04:00
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);
2014-11-21 10:41:58 -05:00
if (res != m_audioBufferFill)
qDebug("lost %u samples", m_audioBufferFill - res);
2014-05-21 13:31:14 -04:00
m_audioBufferFill = 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)
2014-06-15 04:32:25 -04:00
m_sampleSink->feed(m_sampleBuffer.begin(), m_sampleBuffer.end(), true);
2014-05-21 13:31:14 -04:00
m_sampleBuffer.clear();
}
void SSBDemod::start()
{
}
void SSBDemod::stop()
{
}
bool SSBDemod::handleMessage(Message* cmd)
{
float band, lowCutoff;
2014-07-13 04:06:43 -04:00
2014-05-21 13:31:14 -04:00
if(DSPSignalNotification::match(cmd)) {
DSPSignalNotification* signal = (DSPSignalNotification*)cmd;
//fprintf(stderr, "%d samples/sec, %lld Hz offset", signal->getSampleRate(), signal->getFrequencyOffset());
2014-05-21 13:31:14 -04:00
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;
2014-07-13 04:06:43 -04:00
band = cfg->getBandwidth();
lowCutoff = cfg->getLoCutoff();
2014-07-13 04:06:43 -04:00
if (band < 0) {
band = -band;
lowCutoff = -lowCutoff;
2014-07-13 04:06:43 -04:00
m_usb = false;
} else
m_usb = true;
if (band < 100.0f)
{
band = 100.0f;
lowCutoff = 0;
}
2014-07-13 04:06:43 -04:00
m_Bandwidth = band;
m_LowCutoff = lowCutoff;
2014-07-13 04:06:43 -04:00
m_interpolator.create(16, m_sampleRate, band * 2.0f);
SSBFilter->create_filter(m_LowCutoff / 48000.0f, m_Bandwidth / 48000.0f);
2014-07-13 04:06:43 -04:00
2014-05-21 13:31:14 -04:00
m_volume = cfg->getVolume();
m_volume *= m_volume * 0.1;
m_spanLog2 = cfg->getSpanLog2();
2014-05-21 13:31:14 -04:00
cmd->completed();
return true;
} else {
if(m_sampleSink != NULL)
return m_sampleSink->handleMessage(cmd);
else return false;
}
}