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/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2016-10-02 07:18:07 -04:00
|
|
|
#include "../../channelrx/demodssb/ssbdemod.h"
|
|
|
|
|
2016-10-02 15:52:39 -04:00
|
|
|
#include <dsp/downchannelizer.h>
|
2014-05-21 13:31:14 -04:00
|
|
|
#include <QTime>
|
2015-08-17 02:29:34 -04:00
|
|
|
#include <QDebug>
|
2014-05-21 13:31:14 -04:00
|
|
|
#include <stdio.h>
|
|
|
|
#include "audio/audiooutput.h"
|
2015-08-23 20:40:02 -04:00
|
|
|
#include "dsp/dspengine.h"
|
2014-05-21 13:31:14 -04:00
|
|
|
|
|
|
|
MESSAGE_CLASS_DEFINITION(SSBDemod::MsgConfigureSSBDemod, Message)
|
|
|
|
|
2016-10-02 16:29:04 -04:00
|
|
|
SSBDemod::SSBDemod(BasebandSampleSink* sampleSink) :
|
2014-05-21 13:31:14 -04:00
|
|
|
m_sampleSink(sampleSink),
|
2015-08-24 17:23:45 -04:00
|
|
|
m_audioFifo(4, 24000),
|
2015-12-05 12:48:15 -05:00
|
|
|
m_settingsMutex(QMutex::Recursive),
|
2015-12-05 13:57:48 -05:00
|
|
|
m_audioBinaual(false),
|
|
|
|
m_audioFlipChannels(false)
|
2014-05-21 13:31:14 -04:00
|
|
|
{
|
2015-08-12 03:03:02 -04:00
|
|
|
setObjectName("SSBDemod");
|
|
|
|
|
2014-05-22 07:58:17 -04:00
|
|
|
m_Bandwidth = 5000;
|
2015-05-12 15:50:02 -04:00
|
|
|
m_LowCutoff = 300;
|
2014-05-21 13:31:14 -04:00
|
|
|
m_volume = 2.0;
|
2015-06-11 03:18:10 -04:00
|
|
|
m_spanLog2 = 3;
|
2014-05-21 13:31:14 -04:00
|
|
|
m_sampleRate = 96000;
|
|
|
|
m_frequency = 0;
|
|
|
|
m_nco.setFreq(m_frequency, m_sampleRate);
|
2015-08-23 20:40:02 -04:00
|
|
|
m_audioSampleRate = DSPEngine::instance()->getAudioSampleRate();
|
|
|
|
|
2014-05-22 07:58:17 -04:00
|
|
|
m_interpolator.create(16, m_sampleRate, 5000);
|
2015-08-23 20:40:02 -04:00
|
|
|
m_sampleDistanceRemain = (Real) m_sampleRate / m_audioSampleRate;
|
2014-05-21 13:31:14 -04:00
|
|
|
|
2015-08-23 20:40:02 -04:00
|
|
|
m_audioBuffer.resize(1<<9);
|
2014-05-21 13:31:14 -04:00
|
|
|
m_audioBufferFill = 0;
|
2014-06-27 13:46:14 -04:00
|
|
|
m_undersampleCount = 0;
|
2015-12-25 22:04:22 -05:00
|
|
|
m_sum = 0;
|
2014-07-13 04:06:43 -04:00
|
|
|
|
|
|
|
m_usb = true;
|
2015-10-04 20:18:32 -04:00
|
|
|
m_magsq = 0.0f;
|
2016-12-05 19:58:23 -05:00
|
|
|
m_magsqSum = 0.0f;
|
|
|
|
m_magsqPeak = 0.0f;
|
|
|
|
m_magsqCount = 0;
|
|
|
|
|
2015-08-23 20:40:02 -04:00
|
|
|
SSBFilter = new fftfilt(m_LowCutoff / m_audioSampleRate, m_Bandwidth / m_audioSampleRate, ssbFftLen);
|
2015-12-25 21:56:28 -05:00
|
|
|
DSBFilter = new fftfilt((2.0f * m_Bandwidth) / m_audioSampleRate, 2 * ssbFftLen);
|
2015-08-23 20:40:02 -04:00
|
|
|
|
|
|
|
DSPEngine::instance()->addAudioSink(&m_audioFifo);
|
2014-05-21 13:31:14 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
SSBDemod::~SSBDemod()
|
|
|
|
{
|
2015-12-25 21:56:28 -05:00
|
|
|
if (SSBFilter) delete SSBFilter;
|
|
|
|
if (DSBFilter) delete DSBFilter;
|
2015-08-23 20:40:02 -04:00
|
|
|
|
|
|
|
DSPEngine::instance()->removeAudioSink(&m_audioFifo);
|
2014-05-21 13:31:14 -04:00
|
|
|
}
|
|
|
|
|
2015-12-05 12:48:15 -05:00
|
|
|
void SSBDemod::configure(MessageQueue* messageQueue,
|
|
|
|
Real Bandwidth,
|
|
|
|
Real LowCutoff,
|
|
|
|
Real volume,
|
|
|
|
int spanLog2,
|
2015-12-05 13:57:48 -05:00
|
|
|
bool audioBinaural,
|
2015-12-05 18:43:40 -05:00
|
|
|
bool audioFlipChannel,
|
2016-04-05 03:20:02 -04:00
|
|
|
bool dsb,
|
|
|
|
bool audioMute)
|
2014-05-21 13:31:14 -04:00
|
|
|
{
|
2016-04-05 03:20:02 -04:00
|
|
|
Message* cmd = MsgConfigureSSBDemod::create(Bandwidth, LowCutoff, volume, spanLog2, audioBinaural, audioFlipChannel, dsb, audioMute);
|
2015-08-17 02:29:34 -04:00
|
|
|
messageQueue->push(cmd);
|
2014-05-21 13:31:14 -04:00
|
|
|
}
|
|
|
|
|
2015-08-25 02:24:23 -04:00
|
|
|
void SSBDemod::feed(const SampleVector::const_iterator& begin, const SampleVector::const_iterator& end, bool positiveOnly)
|
2014-05-21 13:31:14 -04:00
|
|
|
{
|
|
|
|
Complex ci;
|
2015-12-25 22:04:22 -05:00
|
|
|
fftfilt::cmplx *sideband;
|
2015-06-11 20:23:07 -04:00
|
|
|
Real avg;
|
2014-07-13 04:06:43 -04:00
|
|
|
int n_out;
|
2015-08-24 17:23:45 -04:00
|
|
|
|
|
|
|
m_settingsMutex.lock();
|
|
|
|
|
2015-06-11 20:23:07 -04:00
|
|
|
int decim = 1<<(m_spanLog2 - 1);
|
|
|
|
unsigned char decim_mask = decim - 1; // counter LSB bit mask for decimation by 2^(m_scaleLog2 - 1)
|
2014-05-21 13:31:14 -04:00
|
|
|
|
2015-08-17 02:29:34 -04:00
|
|
|
for(SampleVector::const_iterator it = begin; it < end; ++it)
|
|
|
|
{
|
2015-10-04 04:50:26 -04:00
|
|
|
//Complex c(it->real() / 32768.0, it->imag() / 32768.0);
|
|
|
|
Complex c(it->real(), it->imag());
|
2014-05-21 13:31:14 -04:00
|
|
|
c *= m_nco.nextIQ();
|
|
|
|
|
2016-10-09 19:53:32 -04:00
|
|
|
if(m_interpolator.decimate(&m_sampleDistanceRemain, c, &ci))
|
2015-08-17 02:29:34 -04:00
|
|
|
{
|
2015-12-25 22:50:29 -05:00
|
|
|
if (m_dsb)
|
|
|
|
{
|
|
|
|
n_out = DSBFilter->runDSB(ci, &sideband);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
n_out = SSBFilter->runSSB(ci, &sideband, m_usb);
|
|
|
|
}
|
|
|
|
|
2015-12-25 21:23:18 -05:00
|
|
|
m_sampleDistanceRemain += (Real)m_sampleRate / m_audioSampleRate;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
n_out = 0;
|
|
|
|
}
|
2014-05-21 13:31:14 -04:00
|
|
|
|
2015-12-25 21:23:18 -05:00
|
|
|
for (int i = 0; i < n_out; i++)
|
|
|
|
{
|
|
|
|
// Downsample by 2^(m_scaleLog2 - 1) for SSB band spectrum display
|
|
|
|
// smart decimation with bit gain using float arithmetic (23 bits significand)
|
2015-12-05 20:34:47 -05:00
|
|
|
|
2015-12-25 22:04:22 -05:00
|
|
|
m_sum += sideband[i];
|
2015-12-05 20:34:47 -05:00
|
|
|
|
2015-12-25 21:23:18 -05:00
|
|
|
if (!(m_undersampleCount++ & decim_mask))
|
|
|
|
{
|
2015-12-25 22:04:22 -05:00
|
|
|
Real avgr = m_sum.real() / decim;
|
|
|
|
Real avgi = m_sum.imag() / decim;
|
2015-12-25 21:23:18 -05:00
|
|
|
m_magsq = (avgr * avgr + avgi * avgi) / (1<<30);
|
2015-12-25 22:50:29 -05:00
|
|
|
|
2016-12-05 19:58:23 -05:00
|
|
|
m_magsqSum += m_magsq;
|
|
|
|
|
|
|
|
if (m_magsq > m_magsqPeak)
|
|
|
|
{
|
|
|
|
m_magsqPeak = m_magsq;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_magsqCount++;
|
|
|
|
|
2015-12-25 22:50:29 -05:00
|
|
|
if (!m_dsb & !m_usb)
|
|
|
|
{ // invert spectrum for LSB
|
|
|
|
m_sampleBuffer.push_back(Sample(avgi, avgr));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_sampleBuffer.push_back(Sample(avgr, avgi));
|
|
|
|
}
|
|
|
|
|
2016-03-21 01:18:09 -04:00
|
|
|
m_sum.real(0.0);
|
|
|
|
m_sum.imag(0.0);
|
2015-12-25 21:23:18 -05:00
|
|
|
}
|
2015-12-05 20:34:47 -05:00
|
|
|
|
2016-04-05 03:20:02 -04:00
|
|
|
if (m_audioMute)
|
2015-12-25 21:23:18 -05:00
|
|
|
{
|
2016-04-05 03:20:02 -04:00
|
|
|
m_audioBuffer[m_audioBufferFill].r = 0;
|
|
|
|
m_audioBuffer[m_audioBufferFill].l = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (m_audioBinaual)
|
2015-12-05 20:34:47 -05:00
|
|
|
{
|
2016-04-05 03:20:02 -04:00
|
|
|
if (m_audioFlipChannels)
|
|
|
|
{
|
|
|
|
m_audioBuffer[m_audioBufferFill].r = (qint16)(sideband[i].imag() * m_volume * 100);
|
|
|
|
m_audioBuffer[m_audioBufferFill].l = (qint16)(sideband[i].real() * m_volume * 100);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_audioBuffer[m_audioBufferFill].r = (qint16)(sideband[i].real() * m_volume * 100);
|
|
|
|
m_audioBuffer[m_audioBufferFill].l = (qint16)(sideband[i].imag() * m_volume * 100);
|
|
|
|
}
|
2015-12-05 13:57:48 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-04-05 03:20:02 -04:00
|
|
|
Real demod = (sideband[i].real() + sideband[i].imag()) * 0.7;
|
|
|
|
qint16 sample = (qint16)(demod * m_volume * 100);
|
|
|
|
m_audioBuffer[m_audioBufferFill].l = sample;
|
|
|
|
m_audioBuffer[m_audioBufferFill].r = sample;
|
2015-12-05 13:57:48 -05:00
|
|
|
}
|
2015-12-25 21:23:18 -05:00
|
|
|
}
|
2015-08-17 02:29:34 -04:00
|
|
|
|
2015-12-25 21:23:18 -05:00
|
|
|
++m_audioBufferFill;
|
2015-08-17 02:29:34 -04:00
|
|
|
|
2015-12-25 21:23:18 -05:00
|
|
|
if (m_audioBufferFill >= m_audioBuffer.size())
|
|
|
|
{
|
|
|
|
uint res = m_audioFifo.write((const quint8*)&m_audioBuffer[0], m_audioBufferFill, 1);
|
2015-12-05 20:34:47 -05:00
|
|
|
|
2015-12-25 21:23:18 -05:00
|
|
|
if (res != m_audioBufferFill)
|
|
|
|
{
|
|
|
|
qDebug("lost %u samples", m_audioBufferFill - res);
|
2015-12-05 20:34:47 -05:00
|
|
|
}
|
|
|
|
|
2015-12-25 21:23:18 -05:00
|
|
|
m_audioBufferFill = 0;
|
|
|
|
}
|
2014-05-21 13:31:14 -04:00
|
|
|
}
|
|
|
|
}
|
2015-08-17 02:29:34 -04:00
|
|
|
|
2015-08-23 20:40:02 -04:00
|
|
|
if (m_audioFifo.write((const quint8*)&m_audioBuffer[0], m_audioBufferFill, 0) != m_audioBufferFill)
|
2015-08-17 02:29:34 -04:00
|
|
|
{
|
|
|
|
qDebug("SSBDemod::feed: lost samples");
|
|
|
|
}
|
2014-05-21 13:31:14 -04:00
|
|
|
m_audioBufferFill = 0;
|
|
|
|
|
2015-12-25 22:50:29 -05:00
|
|
|
if (m_sampleSink != 0)
|
2015-08-17 02:29:34 -04:00
|
|
|
{
|
2015-12-25 22:50:29 -05:00
|
|
|
m_sampleSink->feed(m_sampleBuffer.begin(), m_sampleBuffer.end(), !m_dsb);
|
2015-08-17 02:29:34 -04:00
|
|
|
}
|
|
|
|
|
2014-05-21 13:31:14 -04:00
|
|
|
m_sampleBuffer.clear();
|
2015-08-24 17:23:45 -04:00
|
|
|
|
|
|
|
m_settingsMutex.unlock();
|
2014-05-21 13:31:14 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void SSBDemod::start()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void SSBDemod::stop()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2015-08-17 02:29:34 -04:00
|
|
|
bool SSBDemod::handleMessage(const Message& cmd)
|
2014-05-21 13:31:14 -04:00
|
|
|
{
|
2015-05-12 15:50:02 -04:00
|
|
|
float band, lowCutoff;
|
2014-07-13 04:06:43 -04:00
|
|
|
|
2015-08-17 02:29:34 -04:00
|
|
|
qDebug() << "SSBDemod::handleMessage";
|
|
|
|
|
2016-10-02 15:52:39 -04:00
|
|
|
if (DownChannelizer::MsgChannelizerNotification::match(cmd))
|
2015-08-17 02:29:34 -04:00
|
|
|
{
|
2016-10-02 15:52:39 -04:00
|
|
|
DownChannelizer::MsgChannelizerNotification& notif = (DownChannelizer::MsgChannelizerNotification&) cmd;
|
2015-08-17 02:29:34 -04:00
|
|
|
|
2015-08-24 17:23:45 -04:00
|
|
|
m_settingsMutex.lock();
|
|
|
|
|
2015-08-17 02:29:34 -04:00
|
|
|
m_sampleRate = notif.getSampleRate();
|
|
|
|
m_nco.setFreq(-notif.getFrequencyOffset(), m_sampleRate);
|
2014-05-21 13:31:14 -04:00
|
|
|
m_interpolator.create(16, m_sampleRate, m_Bandwidth);
|
2015-08-23 20:40:02 -04:00
|
|
|
m_sampleDistanceRemain = m_sampleRate / m_audioSampleRate;
|
2015-08-17 02:29:34 -04:00
|
|
|
|
2015-08-24 17:23:45 -04:00
|
|
|
m_settingsMutex.unlock();
|
|
|
|
|
2015-08-19 16:12:52 -04:00
|
|
|
qDebug() << "SSBDemod::handleMessage: MsgChannelizerNotification: m_sampleRate: " << m_sampleRate
|
2015-08-17 02:29:34 -04:00
|
|
|
<< " frequencyOffset" << notif.getFrequencyOffset();
|
|
|
|
|
2014-05-21 13:31:14 -04:00
|
|
|
return true;
|
2015-08-17 02:29:34 -04:00
|
|
|
}
|
|
|
|
else if (MsgConfigureSSBDemod::match(cmd))
|
|
|
|
{
|
|
|
|
MsgConfigureSSBDemod& cfg = (MsgConfigureSSBDemod&) cmd;
|
2014-07-13 04:06:43 -04:00
|
|
|
|
2015-08-24 17:23:45 -04:00
|
|
|
m_settingsMutex.lock();
|
|
|
|
|
2015-08-17 02:29:34 -04:00
|
|
|
band = cfg.getBandwidth();
|
|
|
|
lowCutoff = cfg.getLoCutoff();
|
2015-05-12 15:50:02 -04:00
|
|
|
|
2014-07-13 04:06:43 -04:00
|
|
|
if (band < 0) {
|
|
|
|
band = -band;
|
2015-05-12 15:50:02 -04:00
|
|
|
lowCutoff = -lowCutoff;
|
2014-07-13 04:06:43 -04:00
|
|
|
m_usb = false;
|
|
|
|
} else
|
|
|
|
m_usb = true;
|
2015-05-12 15:50:02 -04:00
|
|
|
|
|
|
|
if (band < 100.0f)
|
|
|
|
{
|
|
|
|
band = 100.0f;
|
|
|
|
lowCutoff = 0;
|
|
|
|
}
|
2014-07-13 04:06:43 -04:00
|
|
|
m_Bandwidth = band;
|
2015-05-12 15:50:02 -04:00
|
|
|
m_LowCutoff = lowCutoff;
|
2014-07-13 04:06:43 -04:00
|
|
|
|
|
|
|
m_interpolator.create(16, m_sampleRate, band * 2.0f);
|
2015-08-23 20:40:02 -04:00
|
|
|
SSBFilter->create_filter(m_LowCutoff / (float) m_audioSampleRate, m_Bandwidth / (float) m_audioSampleRate);
|
2015-12-25 21:56:28 -05:00
|
|
|
DSBFilter->create_dsb_filter((2.0f * m_Bandwidth) / (float) m_audioSampleRate);
|
2014-07-13 04:06:43 -04:00
|
|
|
|
2015-08-17 02:29:34 -04:00
|
|
|
m_volume = cfg.getVolume();
|
2014-05-21 13:31:14 -04:00
|
|
|
m_volume *= m_volume * 0.1;
|
2015-06-11 03:18:10 -04:00
|
|
|
|
2015-08-17 02:29:34 -04:00
|
|
|
m_spanLog2 = cfg.getSpanLog2();
|
2015-12-05 12:48:15 -05:00
|
|
|
m_audioBinaual = cfg.getAudioBinaural();
|
2015-12-05 13:57:48 -05:00
|
|
|
m_audioFlipChannels = cfg.getAudioFlipChannels();
|
2015-12-05 18:43:40 -05:00
|
|
|
m_dsb = cfg.getDSB();
|
2016-04-05 03:20:02 -04:00
|
|
|
m_audioMute = cfg.getAudioMute();
|
2015-08-17 02:29:34 -04:00
|
|
|
|
2015-08-24 17:23:45 -04:00
|
|
|
m_settingsMutex.unlock();
|
|
|
|
|
2015-12-05 12:48:15 -05:00
|
|
|
qDebug() << "SBDemod::handleMessage: MsgConfigureSSBDemod: m_Bandwidth: " << m_Bandwidth
|
2015-08-17 02:29:34 -04:00
|
|
|
<< " m_LowCutoff: " << m_LowCutoff
|
|
|
|
<< " m_volume: " << m_volume
|
2015-12-05 12:48:15 -05:00
|
|
|
<< " m_spanLog2: " << m_spanLog2
|
2015-12-05 13:57:48 -05:00
|
|
|
<< " m_audioBinaual: " << m_audioBinaual
|
2015-12-05 18:43:40 -05:00
|
|
|
<< " m_audioFlipChannels: " << m_audioFlipChannels
|
2016-04-05 03:20:02 -04:00
|
|
|
<< " m_dsb: " << m_dsb
|
|
|
|
<< "m_audioMute: " << m_audioMute;
|
2015-06-11 03:18:10 -04:00
|
|
|
|
2014-05-21 13:31:14 -04:00
|
|
|
return true;
|
2015-08-17 02:29:34 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(m_sampleSink != 0)
|
|
|
|
{
|
2014-05-21 13:31:14 -04:00
|
|
|
return m_sampleSink->handleMessage(cmd);
|
2015-08-17 02:29:34 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2014-05-21 13:31:14 -04:00
|
|
|
}
|
|
|
|
}
|