mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-03 15:31:15 -05:00
410 lines
12 KiB
C++
410 lines
12 KiB
C++
///////////////////////////////////////////////////////////////////////////////////
|
|
// Copyright (C) 2016 Edouard Griffiths, F4EXB //
|
|
// //
|
|
// 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 "ammod.h"
|
|
|
|
#include <QTime>
|
|
#include <QDebug>
|
|
#include <QMutexLocker>
|
|
#include <stdio.h>
|
|
#include <complex.h>
|
|
#include <dsp/upchannelizer.h>
|
|
#include "dsp/dspengine.h"
|
|
#include "dsp/pidcontroller.h"
|
|
|
|
MESSAGE_CLASS_DEFINITION(AMMod::MsgConfigureAMMod, Message)
|
|
MESSAGE_CLASS_DEFINITION(AMMod::MsgConfigureFileSourceName, Message)
|
|
MESSAGE_CLASS_DEFINITION(AMMod::MsgConfigureFileSourceSeek, Message)
|
|
MESSAGE_CLASS_DEFINITION(AMMod::MsgConfigureAFInput, Message)
|
|
MESSAGE_CLASS_DEFINITION(AMMod::MsgConfigureFileSourceStreamTiming, Message)
|
|
MESSAGE_CLASS_DEFINITION(AMMod::MsgReportFileSourceStreamData, Message)
|
|
MESSAGE_CLASS_DEFINITION(AMMod::MsgReportFileSourceStreamTiming, Message)
|
|
|
|
const int AMMod::m_levelNbSamples = 480; // every 10ms
|
|
|
|
AMMod::AMMod() :
|
|
m_audioFifo(4, 48000),
|
|
m_settingsMutex(QMutex::Recursive),
|
|
m_fileSize(0),
|
|
m_recordLength(0),
|
|
m_sampleRate(48000),
|
|
m_afInput(AMModInputNone),
|
|
m_levelCalcCount(0),
|
|
m_peakLevel(0.0f),
|
|
m_levelSum(0.0f)
|
|
{
|
|
setObjectName("AMMod");
|
|
|
|
m_config.m_outputSampleRate = 48000;
|
|
m_config.m_inputFrequencyOffset = 0;
|
|
m_config.m_rfBandwidth = 12500;
|
|
m_config.m_modFactor = 0.2f;
|
|
m_config.m_toneFrequency = 1000.0f;
|
|
m_config.m_audioSampleRate = DSPEngine::instance()->getAudioSampleRate();
|
|
|
|
apply();
|
|
|
|
//m_audioBuffer.resize(1<<14);
|
|
//m_audioBufferFill = 0;
|
|
|
|
m_movingAverage.resize(16, 0);
|
|
m_volumeAGC.resize(4096, 0.003, 0);
|
|
m_magsq = 0.0;
|
|
|
|
m_toneNco.setFreq(1000.0, m_config.m_audioSampleRate);
|
|
DSPEngine::instance()->addAudioSource(&m_audioFifo);
|
|
|
|
// CW keyer
|
|
m_cwKeyer.setSampleRate(m_config.m_audioSampleRate);
|
|
m_cwKeyer.setWPM(13);
|
|
m_cwKeyer.setMode(CWKeyer::CWNone);
|
|
m_cwSmoother.setNbFadeSamples(192); // 4 ms @ 48 kHz
|
|
}
|
|
|
|
AMMod::~AMMod()
|
|
{
|
|
DSPEngine::instance()->removeAudioSource(&m_audioFifo);
|
|
}
|
|
|
|
void AMMod::configure(MessageQueue* messageQueue,
|
|
Real rfBandwidth,
|
|
float modFactor,
|
|
float toneFrequency,
|
|
float volumeFactor,
|
|
bool audioMute,
|
|
bool playLoop)
|
|
{
|
|
Message* cmd = MsgConfigureAMMod::create(rfBandwidth, modFactor, toneFrequency, volumeFactor, audioMute, playLoop);
|
|
messageQueue->push(cmd);
|
|
}
|
|
|
|
void AMMod::pull(Sample& sample)
|
|
{
|
|
Complex ci;
|
|
|
|
m_settingsMutex.lock();
|
|
|
|
if (m_interpolatorDistance > 1.0f) // decimate
|
|
{
|
|
modulateSample();
|
|
|
|
while (!m_interpolator.decimate(&m_interpolatorDistanceRemain, m_modSample, &ci))
|
|
{
|
|
modulateSample();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (m_interpolator.interpolate(&m_interpolatorDistanceRemain, m_modSample, &ci))
|
|
{
|
|
modulateSample();
|
|
}
|
|
}
|
|
|
|
m_interpolatorDistanceRemain += m_interpolatorDistance;
|
|
|
|
ci *= m_carrierNco.nextIQ(); // shift to carrier frequency
|
|
|
|
m_settingsMutex.unlock();
|
|
|
|
Real magsq = ci.real() * ci.real() + ci.imag() * ci.imag();
|
|
magsq /= (1<<30);
|
|
m_movingAverage.feed(magsq);
|
|
m_magsq = m_movingAverage.average();
|
|
|
|
sample.m_real = (FixReal) ci.real();
|
|
sample.m_imag = (FixReal) ci.imag();
|
|
}
|
|
|
|
void AMMod::modulateSample()
|
|
{
|
|
Real t;
|
|
|
|
pullAF(t);
|
|
calculateLevel(t);
|
|
|
|
m_modSample.real((t*m_running.m_modFactor + 1.0f) * 16384.0f); // modulate and scale zero frequency carrier
|
|
m_modSample.imag(0.0f);
|
|
}
|
|
|
|
void AMMod::pullAF(Real& sample)
|
|
{
|
|
int16_t audioSample[2];
|
|
|
|
switch (m_afInput)
|
|
{
|
|
case AMModInputTone:
|
|
sample = m_toneNco.next();
|
|
break;
|
|
case AMModInputFile:
|
|
// sox f4exb_call.wav --encoding float --endian little f4exb_call.raw
|
|
// ffplay -f f32le -ar 48k -ac 1 f4exb_call.raw
|
|
if (m_ifstream.is_open())
|
|
{
|
|
if (m_ifstream.eof())
|
|
{
|
|
if (m_running.m_playLoop)
|
|
{
|
|
m_ifstream.clear();
|
|
m_ifstream.seekg(0, std::ios::beg);
|
|
}
|
|
}
|
|
|
|
if (m_ifstream.eof())
|
|
{
|
|
sample = 0.0f;
|
|
}
|
|
else
|
|
{
|
|
m_ifstream.read(reinterpret_cast<char*>(&sample), sizeof(Real));
|
|
sample *= m_running.m_volumeFactor;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
sample = 0.0f;
|
|
}
|
|
break;
|
|
case AMModInputAudio:
|
|
m_audioFifo.read(reinterpret_cast<quint8*>(audioSample), 1, 10);
|
|
sample = ((audioSample[0] + audioSample[1]) / 65536.0f) * m_running.m_volumeFactor;
|
|
break;
|
|
case AMModInputCWTone:
|
|
Real fadeFactor;
|
|
|
|
if (m_cwKeyer.getSample())
|
|
{
|
|
m_cwSmoother.getFadeSample(true, fadeFactor);
|
|
sample = m_toneNco.next() * fadeFactor;
|
|
}
|
|
else
|
|
{
|
|
if (m_cwSmoother.getFadeSample(false, fadeFactor))
|
|
{
|
|
sample = m_toneNco.next() * fadeFactor;
|
|
}
|
|
else
|
|
{
|
|
sample = 0.0f;
|
|
m_toneNco.setPhase(0);
|
|
}
|
|
}
|
|
break;
|
|
case AMModInputNone:
|
|
default:
|
|
sample = 0.0f;
|
|
break;
|
|
}
|
|
}
|
|
|
|
void AMMod::calculateLevel(Real& sample)
|
|
{
|
|
if (m_levelCalcCount < m_levelNbSamples)
|
|
{
|
|
m_peakLevel = std::max(std::fabs(m_peakLevel), sample);
|
|
m_levelSum += sample * sample;
|
|
m_levelCalcCount++;
|
|
}
|
|
else
|
|
{
|
|
qreal rmsLevel = sqrt(m_levelSum / m_levelNbSamples);
|
|
//qDebug("NFMMod::calculateLevel: %f %f", rmsLevel, m_peakLevel);
|
|
emit levelChanged(rmsLevel, m_peakLevel, m_levelNbSamples);
|
|
m_peakLevel = 0.0f;
|
|
m_levelSum = 0.0f;
|
|
m_levelCalcCount = 0;
|
|
}
|
|
}
|
|
|
|
void AMMod::start()
|
|
{
|
|
qDebug() << "AMMod::start: m_outputSampleRate: " << m_config.m_outputSampleRate
|
|
<< " m_inputFrequencyOffset: " << m_config.m_inputFrequencyOffset;
|
|
|
|
m_audioFifo.clear();
|
|
}
|
|
|
|
void AMMod::stop()
|
|
{
|
|
}
|
|
|
|
bool AMMod::handleMessage(const Message& cmd)
|
|
{
|
|
if (UpChannelizer::MsgChannelizerNotification::match(cmd))
|
|
{
|
|
UpChannelizer::MsgChannelizerNotification& notif = (UpChannelizer::MsgChannelizerNotification&) cmd;
|
|
|
|
m_config.m_outputSampleRate = notif.getSampleRate();
|
|
m_config.m_inputFrequencyOffset = notif.getFrequencyOffset();
|
|
|
|
apply();
|
|
|
|
qDebug() << "AMMod::handleMessage: MsgChannelizerNotification:"
|
|
<< " m_outputSampleRate: " << m_config.m_outputSampleRate
|
|
<< " m_inputFrequencyOffset: " << m_config.m_inputFrequencyOffset;
|
|
|
|
return true;
|
|
}
|
|
else if (MsgConfigureAMMod::match(cmd))
|
|
{
|
|
MsgConfigureAMMod& cfg = (MsgConfigureAMMod&) cmd;
|
|
|
|
m_config.m_rfBandwidth = cfg.getRFBandwidth();
|
|
m_config.m_modFactor = cfg.getModFactor();
|
|
m_config.m_toneFrequency = cfg.getToneFrequency();
|
|
m_config.m_volumeFactor = cfg.getVolumeFactor();
|
|
m_config.m_audioMute = cfg.getAudioMute();
|
|
m_config.m_playLoop = cfg.getPlayLoop();
|
|
|
|
apply();
|
|
|
|
qDebug() << "AMMod::handleMessage: MsgConfigureAMMod:"
|
|
<< " m_rfBandwidth: " << m_config.m_rfBandwidth
|
|
<< " m_modFactor: " << m_config.m_modFactor
|
|
<< " m_toneFrequency: " << m_config.m_toneFrequency
|
|
<< " m_volumeFactor: " << m_config.m_volumeFactor
|
|
<< " m_audioMute: " << m_config.m_audioMute
|
|
<< " m_playLoop: " << m_config.m_playLoop;
|
|
|
|
return true;
|
|
}
|
|
else if (MsgConfigureFileSourceName::match(cmd))
|
|
{
|
|
MsgConfigureFileSourceName& conf = (MsgConfigureFileSourceName&) cmd;
|
|
m_fileName = conf.getFileName();
|
|
openFileStream();
|
|
return true;
|
|
}
|
|
else if (MsgConfigureFileSourceSeek::match(cmd))
|
|
{
|
|
MsgConfigureFileSourceSeek& conf = (MsgConfigureFileSourceSeek&) cmd;
|
|
int seekPercentage = conf.getPercentage();
|
|
seekFileStream(seekPercentage);
|
|
|
|
return true;
|
|
}
|
|
else if (MsgConfigureAFInput::match(cmd))
|
|
{
|
|
MsgConfigureAFInput& conf = (MsgConfigureAFInput&) cmd;
|
|
m_afInput = conf.getAFInput();
|
|
|
|
return true;
|
|
}
|
|
else if (MsgConfigureFileSourceStreamTiming::match(cmd))
|
|
{
|
|
std::size_t samplesCount;
|
|
|
|
if (m_ifstream.eof()) {
|
|
samplesCount = m_fileSize / sizeof(Real);
|
|
} else {
|
|
samplesCount = m_ifstream.tellg() / sizeof(Real);
|
|
}
|
|
|
|
MsgReportFileSourceStreamTiming *report;
|
|
report = MsgReportFileSourceStreamTiming::create(samplesCount);
|
|
getOutputMessageQueue()->push(report);
|
|
|
|
return true;
|
|
}
|
|
else
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
void AMMod::apply()
|
|
{
|
|
|
|
if ((m_config.m_inputFrequencyOffset != m_running.m_inputFrequencyOffset) ||
|
|
(m_config.m_outputSampleRate != m_running.m_outputSampleRate))
|
|
{
|
|
m_settingsMutex.lock();
|
|
m_carrierNco.setFreq(m_config.m_inputFrequencyOffset, m_config.m_outputSampleRate);
|
|
m_settingsMutex.unlock();
|
|
}
|
|
|
|
if((m_config.m_outputSampleRate != m_running.m_outputSampleRate) ||
|
|
(m_config.m_rfBandwidth != m_running.m_rfBandwidth) ||
|
|
(m_config.m_audioSampleRate != m_running.m_audioSampleRate))
|
|
{
|
|
m_settingsMutex.lock();
|
|
m_interpolatorDistanceRemain = 0;
|
|
m_interpolatorConsumed = false;
|
|
m_interpolatorDistance = (Real) m_config.m_audioSampleRate / (Real) m_config.m_outputSampleRate;
|
|
m_interpolator.create(48, m_config.m_audioSampleRate, m_config.m_rfBandwidth / 2.2, 3.0);
|
|
m_settingsMutex.unlock();
|
|
}
|
|
|
|
if ((m_config.m_toneFrequency != m_running.m_toneFrequency) ||
|
|
(m_config.m_audioSampleRate != m_running.m_audioSampleRate))
|
|
{
|
|
m_settingsMutex.lock();
|
|
m_toneNco.setFreq(m_config.m_toneFrequency, m_config.m_audioSampleRate);
|
|
m_settingsMutex.unlock();
|
|
}
|
|
|
|
if (m_config.m_audioSampleRate != m_running.m_audioSampleRate)
|
|
{
|
|
m_cwKeyer.setSampleRate(m_config.m_audioSampleRate);
|
|
m_cwSmoother.setNbFadeSamples(m_config.m_audioSampleRate / 250); // 4 ms
|
|
}
|
|
|
|
m_running.m_outputSampleRate = m_config.m_outputSampleRate;
|
|
m_running.m_inputFrequencyOffset = m_config.m_inputFrequencyOffset;
|
|
m_running.m_rfBandwidth = m_config.m_rfBandwidth;
|
|
m_running.m_modFactor = m_config.m_modFactor;
|
|
m_running.m_toneFrequency = m_config.m_toneFrequency;
|
|
m_running.m_volumeFactor = m_config.m_volumeFactor;
|
|
m_running.m_audioSampleRate = m_config.m_audioSampleRate;
|
|
m_running.m_audioMute = m_config.m_audioMute;
|
|
m_running.m_playLoop = m_config.m_playLoop;
|
|
}
|
|
|
|
void AMMod::openFileStream()
|
|
{
|
|
if (m_ifstream.is_open()) {
|
|
m_ifstream.close();
|
|
}
|
|
|
|
m_ifstream.open(m_fileName.toStdString().c_str(), std::ios::binary | std::ios::ate);
|
|
m_fileSize = m_ifstream.tellg();
|
|
m_ifstream.seekg(0,std::ios_base::beg);
|
|
|
|
m_sampleRate = 48000; // fixed rate
|
|
m_recordLength = m_fileSize / (sizeof(Real) * m_sampleRate);
|
|
|
|
qDebug() << "AMMod::openFileStream: " << m_fileName.toStdString().c_str()
|
|
<< " fileSize: " << m_fileSize << "bytes"
|
|
<< " length: " << m_recordLength << " seconds";
|
|
|
|
MsgReportFileSourceStreamData *report;
|
|
report = MsgReportFileSourceStreamData::create(m_sampleRate, m_recordLength);
|
|
getOutputMessageQueue()->push(report);
|
|
}
|
|
|
|
void AMMod::seekFileStream(int seekPercentage)
|
|
{
|
|
QMutexLocker mutexLocker(&m_settingsMutex);
|
|
|
|
if (m_ifstream.is_open())
|
|
{
|
|
int seekPoint = ((m_recordLength * seekPercentage) / 100) * m_sampleRate;
|
|
seekPoint *= sizeof(Real);
|
|
m_ifstream.clear();
|
|
m_ifstream.seekg(seekPoint, std::ios::beg);
|
|
}
|
|
}
|