mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-05-23 18:52:28 -04:00
Mods and demods: prevent returning null or infinite values for squared magnitude
This commit is contained in:
parent
747f400a78
commit
416817d0b8
@ -1,183 +1,183 @@
|
|||||||
///////////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
// Copyright (C) 2017 Edouard Griffiths, F4EXB //
|
// Copyright (C) 2017 Edouard Griffiths, F4EXB //
|
||||||
// //
|
// //
|
||||||
// This program is free software; you can redistribute it and/or modify //
|
// 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 //
|
// it under the terms of the GNU General Public License as published by //
|
||||||
// the Free Software Foundation as version 3 of the License, or //
|
// the Free Software Foundation as version 3 of the License, or //
|
||||||
// //
|
// //
|
||||||
// This program is distributed in the hope that it will be useful, //
|
// This program is distributed in the hope that it will be useful, //
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of //
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of //
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
|
||||||
// GNU General Public License V3 for more details. //
|
// GNU General Public License V3 for more details. //
|
||||||
// //
|
// //
|
||||||
// You should have received a copy of the GNU General Public License //
|
// You should have received a copy of the GNU General Public License //
|
||||||
// along with this program. If not, see <http://www.gnu.org/licenses/>. //
|
// along with this program. If not, see <http://www.gnu.org/licenses/>. //
|
||||||
///////////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
#ifndef INCLUDE_CHANALYZERNG_H
|
#ifndef INCLUDE_CHANALYZERNG_H
|
||||||
#define INCLUDE_CHANALYZERNG_H
|
#define INCLUDE_CHANALYZERNG_H
|
||||||
|
|
||||||
#include <dsp/basebandsamplesink.h>
|
#include <dsp/basebandsamplesink.h>
|
||||||
#include <QMutex>
|
#include <QMutex>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
#include "dsp/interpolator.h"
|
#include "dsp/interpolator.h"
|
||||||
#include "dsp/ncof.h"
|
#include "dsp/ncof.h"
|
||||||
#include "dsp/fftfilt.h"
|
#include "dsp/fftfilt.h"
|
||||||
#include "audio/audiofifo.h"
|
#include "audio/audiofifo.h"
|
||||||
#include "util/message.h"
|
#include "util/message.h"
|
||||||
|
|
||||||
#define ssbFftLen 1024
|
#define ssbFftLen 1024
|
||||||
|
|
||||||
class ChannelAnalyzerNG : public BasebandSampleSink {
|
class ChannelAnalyzerNG : public BasebandSampleSink {
|
||||||
public:
|
public:
|
||||||
ChannelAnalyzerNG(BasebandSampleSink* m_sampleSink);
|
ChannelAnalyzerNG(BasebandSampleSink* m_sampleSink);
|
||||||
virtual ~ChannelAnalyzerNG();
|
virtual ~ChannelAnalyzerNG();
|
||||||
|
|
||||||
void configure(MessageQueue* messageQueue,
|
void configure(MessageQueue* messageQueue,
|
||||||
int channelSampleRate,
|
int channelSampleRate,
|
||||||
Real Bandwidth,
|
Real Bandwidth,
|
||||||
Real LowCutoff,
|
Real LowCutoff,
|
||||||
int spanLog2,
|
int spanLog2,
|
||||||
bool ssb);
|
bool ssb);
|
||||||
|
|
||||||
int getInputSampleRate() const { return m_running.m_inputSampleRate; }
|
int getInputSampleRate() const { return m_running.m_inputSampleRate; }
|
||||||
int getChannelSampleRate() const { return m_running.m_channelSampleRate; }
|
int getChannelSampleRate() const { return m_running.m_channelSampleRate; }
|
||||||
Real getMagSq() const { return m_magsq; }
|
Real getMagSq() const { return m_magsq == 0 ? 1e-10 : m_magsq; }
|
||||||
|
|
||||||
virtual void feed(const SampleVector::const_iterator& begin, const SampleVector::const_iterator& end, bool positiveOnly);
|
virtual void feed(const SampleVector::const_iterator& begin, const SampleVector::const_iterator& end, bool positiveOnly);
|
||||||
virtual void start();
|
virtual void start();
|
||||||
virtual void stop();
|
virtual void stop();
|
||||||
virtual bool handleMessage(const Message& cmd);
|
virtual bool handleMessage(const Message& cmd);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
class MsgConfigureChannelAnalyzer : public Message {
|
class MsgConfigureChannelAnalyzer : public Message {
|
||||||
MESSAGE_CLASS_DECLARATION
|
MESSAGE_CLASS_DECLARATION
|
||||||
|
|
||||||
public:
|
public:
|
||||||
int getChannelSampleRate() const { return m_channelSampleRate; }
|
int getChannelSampleRate() const { return m_channelSampleRate; }
|
||||||
Real getBandwidth() const { return m_Bandwidth; }
|
Real getBandwidth() const { return m_Bandwidth; }
|
||||||
Real getLoCutoff() const { return m_LowCutoff; }
|
Real getLoCutoff() const { return m_LowCutoff; }
|
||||||
int getSpanLog2() const { return m_spanLog2; }
|
int getSpanLog2() const { return m_spanLog2; }
|
||||||
bool getSSB() const { return m_ssb; }
|
bool getSSB() const { return m_ssb; }
|
||||||
|
|
||||||
static MsgConfigureChannelAnalyzer* create(
|
static MsgConfigureChannelAnalyzer* create(
|
||||||
int channelSampleRate,
|
int channelSampleRate,
|
||||||
Real Bandwidth,
|
Real Bandwidth,
|
||||||
Real LowCutoff,
|
Real LowCutoff,
|
||||||
int spanLog2,
|
int spanLog2,
|
||||||
bool ssb)
|
bool ssb)
|
||||||
{
|
{
|
||||||
return new MsgConfigureChannelAnalyzer(channelSampleRate, Bandwidth, LowCutoff, spanLog2, ssb);
|
return new MsgConfigureChannelAnalyzer(channelSampleRate, Bandwidth, LowCutoff, spanLog2, ssb);
|
||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
int m_channelSampleRate;
|
int m_channelSampleRate;
|
||||||
Real m_Bandwidth;
|
Real m_Bandwidth;
|
||||||
Real m_LowCutoff;
|
Real m_LowCutoff;
|
||||||
int m_spanLog2;
|
int m_spanLog2;
|
||||||
bool m_ssb;
|
bool m_ssb;
|
||||||
|
|
||||||
MsgConfigureChannelAnalyzer(
|
MsgConfigureChannelAnalyzer(
|
||||||
int channelSampleRate,
|
int channelSampleRate,
|
||||||
Real Bandwidth,
|
Real Bandwidth,
|
||||||
Real LowCutoff,
|
Real LowCutoff,
|
||||||
int spanLog2,
|
int spanLog2,
|
||||||
bool ssb) :
|
bool ssb) :
|
||||||
Message(),
|
Message(),
|
||||||
m_channelSampleRate(channelSampleRate),
|
m_channelSampleRate(channelSampleRate),
|
||||||
m_Bandwidth(Bandwidth),
|
m_Bandwidth(Bandwidth),
|
||||||
m_LowCutoff(LowCutoff),
|
m_LowCutoff(LowCutoff),
|
||||||
m_spanLog2(spanLog2),
|
m_spanLog2(spanLog2),
|
||||||
m_ssb(ssb)
|
m_ssb(ssb)
|
||||||
{ }
|
{ }
|
||||||
};
|
};
|
||||||
|
|
||||||
struct Config
|
struct Config
|
||||||
{
|
{
|
||||||
int m_frequency;
|
int m_frequency;
|
||||||
int m_inputSampleRate;
|
int m_inputSampleRate;
|
||||||
int m_channelSampleRate;
|
int m_channelSampleRate;
|
||||||
Real m_Bandwidth;
|
Real m_Bandwidth;
|
||||||
Real m_LowCutoff;
|
Real m_LowCutoff;
|
||||||
int m_spanLog2;
|
int m_spanLog2;
|
||||||
bool m_ssb;
|
bool m_ssb;
|
||||||
|
|
||||||
Config() :
|
Config() :
|
||||||
m_frequency(0),
|
m_frequency(0),
|
||||||
m_inputSampleRate(96000),
|
m_inputSampleRate(96000),
|
||||||
m_channelSampleRate(96000),
|
m_channelSampleRate(96000),
|
||||||
m_Bandwidth(5000),
|
m_Bandwidth(5000),
|
||||||
m_LowCutoff(300),
|
m_LowCutoff(300),
|
||||||
m_spanLog2(3),
|
m_spanLog2(3),
|
||||||
m_ssb(false)
|
m_ssb(false)
|
||||||
{}
|
{}
|
||||||
};
|
};
|
||||||
|
|
||||||
Config m_config;
|
Config m_config;
|
||||||
Config m_running;
|
Config m_running;
|
||||||
|
|
||||||
int m_undersampleCount;
|
int m_undersampleCount;
|
||||||
fftfilt::cmplx m_sum;
|
fftfilt::cmplx m_sum;
|
||||||
bool m_usb;
|
bool m_usb;
|
||||||
Real m_magsq;
|
Real m_magsq;
|
||||||
bool m_useInterpolator;
|
bool m_useInterpolator;
|
||||||
|
|
||||||
NCOF m_nco;
|
NCOF m_nco;
|
||||||
Interpolator m_interpolator;
|
Interpolator m_interpolator;
|
||||||
Real m_interpolatorDistance;
|
Real m_interpolatorDistance;
|
||||||
Real m_interpolatorDistanceRemain;
|
Real m_interpolatorDistanceRemain;
|
||||||
|
|
||||||
fftfilt* SSBFilter;
|
fftfilt* SSBFilter;
|
||||||
fftfilt* DSBFilter;
|
fftfilt* DSBFilter;
|
||||||
|
|
||||||
BasebandSampleSink* m_sampleSink;
|
BasebandSampleSink* m_sampleSink;
|
||||||
SampleVector m_sampleBuffer;
|
SampleVector m_sampleBuffer;
|
||||||
QMutex m_settingsMutex;
|
QMutex m_settingsMutex;
|
||||||
|
|
||||||
void apply(bool force = false);
|
void apply(bool force = false);
|
||||||
|
|
||||||
void processOneSample(Complex& c, fftfilt::cmplx *sideband)
|
void processOneSample(Complex& c, fftfilt::cmplx *sideband)
|
||||||
{
|
{
|
||||||
int n_out;
|
int n_out;
|
||||||
int decim = 1<<m_running.m_spanLog2;
|
int decim = 1<<m_running.m_spanLog2;
|
||||||
|
|
||||||
if (m_running.m_ssb)
|
if (m_running.m_ssb)
|
||||||
{
|
{
|
||||||
n_out = SSBFilter->runSSB(c, &sideband, m_usb);
|
n_out = SSBFilter->runSSB(c, &sideband, m_usb);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
n_out = DSBFilter->runDSB(c, &sideband);
|
n_out = DSBFilter->runDSB(c, &sideband);
|
||||||
}
|
}
|
||||||
|
|
||||||
for (int i = 0; i < n_out; i++)
|
for (int i = 0; i < n_out; i++)
|
||||||
{
|
{
|
||||||
// Downsample by 2^(m_scaleLog2 - 1) for SSB band spectrum display
|
// Downsample by 2^(m_scaleLog2 - 1) for SSB band spectrum display
|
||||||
// smart decimation with bit gain using float arithmetic (23 bits significand)
|
// smart decimation with bit gain using float arithmetic (23 bits significand)
|
||||||
|
|
||||||
m_sum += sideband[i];
|
m_sum += sideband[i];
|
||||||
|
|
||||||
if (!(m_undersampleCount++ & (decim - 1))) // counter LSB bit mask for decimation by 2^(m_scaleLog2 - 1)
|
if (!(m_undersampleCount++ & (decim - 1))) // counter LSB bit mask for decimation by 2^(m_scaleLog2 - 1)
|
||||||
{
|
{
|
||||||
m_sum /= decim;
|
m_sum /= decim;
|
||||||
m_magsq = (m_sum.real() * m_sum.real() + m_sum.imag() * m_sum.imag())/ (1<<30);
|
m_magsq = (m_sum.real() * m_sum.real() + m_sum.imag() * m_sum.imag())/ (1<<30);
|
||||||
|
|
||||||
if (m_running.m_ssb & !m_usb)
|
if (m_running.m_ssb & !m_usb)
|
||||||
{ // invert spectrum for LSB
|
{ // invert spectrum for LSB
|
||||||
//m_sampleBuffer.push_back(Sample(m_sum.imag() * 32768.0, m_sum.real() * 32768.0));
|
//m_sampleBuffer.push_back(Sample(m_sum.imag() * 32768.0, m_sum.real() * 32768.0));
|
||||||
m_sampleBuffer.push_back(Sample(m_sum.imag(), m_sum.real()));
|
m_sampleBuffer.push_back(Sample(m_sum.imag(), m_sum.real()));
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
//m_sampleBuffer.push_back(Sample(m_sum.real() * 32768.0, m_sum.imag() * 32768.0));
|
//m_sampleBuffer.push_back(Sample(m_sum.real() * 32768.0, m_sum.imag() * 32768.0));
|
||||||
m_sampleBuffer.push_back(Sample(m_sum.real(), m_sum.imag()));
|
m_sampleBuffer.push_back(Sample(m_sum.real(), m_sum.imag()));
|
||||||
}
|
}
|
||||||
|
|
||||||
m_sum = 0;
|
m_sum = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // INCLUDE_CHANALYZERNG_H
|
#endif // INCLUDE_CHANALYZERNG_H
|
||||||
|
@ -46,9 +46,9 @@ public:
|
|||||||
|
|
||||||
void getMagSqLevels(Real& avg, Real& peak, int& nbSamples)
|
void getMagSqLevels(Real& avg, Real& peak, int& nbSamples)
|
||||||
{
|
{
|
||||||
avg = m_magsqSum / m_magsqCount;
|
avg = m_magsqCount == 0 ? 1e-10 : m_magsqSum / m_magsqCount;
|
||||||
peak = m_magsqPeak;
|
peak = m_magsqPeak == 0.0 ? 1e-10 : m_magsqPeak;
|
||||||
nbSamples = m_magsqCount;
|
nbSamples = m_magsqCount == 0 ? 1 : m_magsqCount;
|
||||||
m_magsqSum = 0.0f;
|
m_magsqSum = 0.0f;
|
||||||
m_magsqPeak = 0.0f;
|
m_magsqPeak = 0.0f;
|
||||||
m_magsqCount = 0;
|
m_magsqCount = 0;
|
||||||
|
@ -71,10 +71,10 @@ public:
|
|||||||
|
|
||||||
void getMagSqLevels(Real& avg, Real& peak, int& nbSamples)
|
void getMagSqLevels(Real& avg, Real& peak, int& nbSamples)
|
||||||
{
|
{
|
||||||
avg = m_magsqSum / m_magsqCount;
|
avg = m_magsqCount == 0 ? 1e-10 : m_magsqSum / m_magsqCount;
|
||||||
m_magsq = avg;
|
m_magsq = avg;
|
||||||
peak = m_magsqPeak;
|
peak = m_magsqPeak == 0.0 ? 1e-10 : m_magsqPeak;
|
||||||
nbSamples = m_magsqCount;
|
nbSamples = m_magsqCount == 0 ? 1 : m_magsqCount;
|
||||||
m_magsqSum = 0.0f;
|
m_magsqSum = 0.0f;
|
||||||
m_magsqPeak = 0.0f;
|
m_magsqPeak = 0.0f;
|
||||||
m_magsqCount = 0;
|
m_magsqCount = 0;
|
||||||
|
@ -75,15 +75,16 @@ public:
|
|||||||
|
|
||||||
void getMagSqLevels(Real& avg, Real& peak, int& nbSamples)
|
void getMagSqLevels(Real& avg, Real& peak, int& nbSamples)
|
||||||
{
|
{
|
||||||
avg = m_magsqSum / m_magsqCount;
|
avg = m_magsqCount == 0 ? 1e-10 : m_magsqSum / m_magsqCount;
|
||||||
m_magsq = avg;
|
m_magsq = avg;
|
||||||
peak = m_magsqPeak;
|
peak = m_magsqPeak == 0.0 ? 1e-10 : m_magsqPeak;
|
||||||
nbSamples = m_magsqCount;
|
nbSamples = m_magsqCount == 0 ? 1 : m_magsqCount;
|
||||||
m_magsqSum = 0.0f;
|
m_magsqSum = 0.0f;
|
||||||
m_magsqPeak = 0.0f;
|
m_magsqPeak = 0.0f;
|
||||||
m_magsqCount = 0;
|
m_magsqCount = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
class MsgConfigureMyPosition : public Message {
|
class MsgConfigureMyPosition : public Message {
|
||||||
MESSAGE_CLASS_DECLARATION
|
MESSAGE_CLASS_DECLARATION
|
||||||
|
@ -74,10 +74,10 @@ public:
|
|||||||
|
|
||||||
void getMagSqLevels(Real& avg, Real& peak, int& nbSamples)
|
void getMagSqLevels(Real& avg, Real& peak, int& nbSamples)
|
||||||
{
|
{
|
||||||
avg = m_magsqSum / m_magsqCount;
|
avg = m_magsqCount == 0 ? 1e-10 : m_magsqSum / m_magsqCount;
|
||||||
m_magsq = avg;
|
m_magsq = avg;
|
||||||
peak = m_magsqPeak;
|
peak = m_magsqPeak == 0.0 ? 1e-10 : m_magsqPeak;
|
||||||
nbSamples = m_magsqCount;
|
nbSamples = m_magsqCount == 0 ? 1 : m_magsqCount;
|
||||||
m_magsqSum = 0.0f;
|
m_magsqSum = 0.0f;
|
||||||
m_magsqPeak = 0.0f;
|
m_magsqPeak = 0.0f;
|
||||||
m_magsqCount = 0;
|
m_magsqCount = 0;
|
||||||
|
@ -53,10 +53,10 @@ public:
|
|||||||
|
|
||||||
void getMagSqLevels(Real& avg, Real& peak, int& nbSamples)
|
void getMagSqLevels(Real& avg, Real& peak, int& nbSamples)
|
||||||
{
|
{
|
||||||
avg = m_magsqSum / m_magsqCount;
|
avg = m_magsqCount == 0 ? 1e-10 : m_magsqSum / m_magsqCount;
|
||||||
m_magsq = avg;
|
m_magsq = avg;
|
||||||
peak = m_magsqPeak;
|
peak = m_magsqPeak == 0.0 ? 1e-10 : m_magsqPeak;
|
||||||
nbSamples = m_magsqCount;
|
nbSamples = m_magsqCount == 0 ? 1 : m_magsqCount;
|
||||||
m_magsqSum = 0.0f;
|
m_magsqSum = 0.0f;
|
||||||
m_magsqPeak = 0.0f;
|
m_magsqPeak = 0.0f;
|
||||||
m_magsqCount = 0;
|
m_magsqCount = 0;
|
||||||
|
@ -55,10 +55,10 @@ public:
|
|||||||
|
|
||||||
void getMagSqLevels(Real& avg, Real& peak, int& nbSamples)
|
void getMagSqLevels(Real& avg, Real& peak, int& nbSamples)
|
||||||
{
|
{
|
||||||
avg = m_magsqSum / m_magsqCount;
|
avg = m_magsqCount == 0 ? 1e-10 : m_magsqSum / m_magsqCount;
|
||||||
m_magsq = avg;
|
m_magsq = avg;
|
||||||
peak = m_magsqPeak;
|
peak = m_magsqPeak == 0.0 ? 1e-10 : m_magsqPeak;
|
||||||
nbSamples = m_magsqCount;
|
nbSamples = m_magsqCount == 0 ? 1 : m_magsqCount;
|
||||||
m_magsqSum = 0.0f;
|
m_magsqSum = 0.0f;
|
||||||
m_magsqPeak = 0.0f;
|
m_magsqPeak = 0.0f;
|
||||||
m_magsqCount = 0;
|
m_magsqCount = 0;
|
||||||
|
@ -190,7 +190,7 @@ public:
|
|||||||
virtual void stop();
|
virtual void stop();
|
||||||
virtual bool handleMessage(const Message& cmd);
|
virtual bool handleMessage(const Message& cmd);
|
||||||
|
|
||||||
Real getMagSq() const { return m_magsq; }
|
Real getMagSq() const { return m_magsq == 0.0 ? 1e-10 : m_magsq; }
|
||||||
|
|
||||||
CWKeyer *getCWKeyer() { return &m_cwKeyer; }
|
CWKeyer *getCWKeyer() { return &m_cwKeyer; }
|
||||||
|
|
||||||
|
@ -195,7 +195,7 @@ public:
|
|||||||
virtual void stop();
|
virtual void stop();
|
||||||
virtual bool handleMessage(const Message& cmd);
|
virtual bool handleMessage(const Message& cmd);
|
||||||
|
|
||||||
Real getMagSq() const { return m_magsq; }
|
Real getMagSq() const { return m_magsq == 0 ? 1e-10 : m_magsq; }
|
||||||
|
|
||||||
CWKeyer *getCWKeyer() { return &m_cwKeyer; }
|
CWKeyer *getCWKeyer() { return &m_cwKeyer; }
|
||||||
|
|
||||||
|
@ -195,7 +195,7 @@ public:
|
|||||||
virtual void stop();
|
virtual void stop();
|
||||||
virtual bool handleMessage(const Message& cmd);
|
virtual bool handleMessage(const Message& cmd);
|
||||||
|
|
||||||
Real getMagSq() const { return m_magsq; }
|
Real getMagSq() const { return m_magsq == 0 ? 1e-10 : m_magsq; }
|
||||||
|
|
||||||
CWKeyer *getCWKeyer() { return &m_cwKeyer; }
|
CWKeyer *getCWKeyer() { return &m_cwKeyer; }
|
||||||
|
|
||||||
|
@ -192,7 +192,7 @@ public:
|
|||||||
virtual void stop();
|
virtual void stop();
|
||||||
virtual bool handleMessage(const Message& cmd);
|
virtual bool handleMessage(const Message& cmd);
|
||||||
|
|
||||||
Real getMagSq() const { return m_magsq; }
|
Real getMagSq() const { return m_magsq == 0 ? 1e-10 : m_magsq; }
|
||||||
|
|
||||||
CWKeyer *getCWKeyer() { return &m_cwKeyer; }
|
CWKeyer *getCWKeyer() { return &m_cwKeyer; }
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user