CubicSDR/src/demod/DemodulatorThread.cpp

279 lines
9.2 KiB
C++
Raw Normal View History

2014-12-16 18:27:32 -05:00
#include "CubicSDRDefs.h"
2015-02-22 01:01:28 -05:00
#include "DemodulatorThread.h"
#include "DemodulatorInstance.h"
2014-12-16 18:27:32 -05:00
#include <vector>
2015-02-22 01:01:28 -05:00
#include <cmath>
#ifndef M_PI
#define M_PI 3.14159265358979323846
#endif
2014-12-16 18:27:32 -05:00
#ifdef __APPLE__
#include <pthread.h>
#endif
DemodulatorThread::DemodulatorThread(DemodulatorInstance *parent) : IOThread(), iqAutoGain(NULL), audioSampleRate(0), squelchLevel(0), signalLevel(0), squelchEnabled(false), iqInputQueue(NULL), audioOutputQueue(NULL), audioVisOutputQueue(NULL), threadQueueControl(NULL), threadQueueNotify(NULL), cModem(nullptr), cModemKit(nullptr) {
demodInstance = parent;
muted.store(false);
agcEnabled.store(false);
2014-12-16 18:27:32 -05:00
}
2014-12-16 18:27:32 -05:00
DemodulatorThread::~DemodulatorThread() {
2014-12-16 18:27:32 -05:00
}
void DemodulatorThread::onBindOutput(std::string name, ThreadQueueBase *threadQueue) {
if (name == "AudioVisualOutput") {
audioVisOutputQueue = (DemodulatorThreadOutputQueue *)threadQueue;
}
}
2015-07-29 20:57:02 -04:00
void DemodulatorThread::run() {
#ifdef __APPLE__
pthread_t tID = pthread_self(); // ID of this thread
int priority = sched_get_priority_max( SCHED_FIFO )-1;
sched_param prio = {priority}; // scheduling priority of thread
pthread_setschedparam(tID, SCHED_FIFO, &prio);
#endif
// Automatic IQ gain
iqAutoGain = agc_crcf_create();
agc_crcf_set_bandwidth(iqAutoGain, 0.1);
ReBuffer<AudioThreadInput> audioVisBuffers;
2014-12-16 21:30:03 -05:00
std::cout << "Demodulator thread started.." << std::endl;
iqInputQueue = (DemodulatorThreadPostInputQueue*)getInputQueue("IQDataInput");
audioOutputQueue = (AudioThreadInputQueue*)getOutputQueue("AudioDataOutput");
threadQueueControl = (DemodulatorThreadControlCommandQueue *)getInputQueue("ControlQueue");
threadQueueNotify = (DemodulatorThreadCommandQueue*)getOutputQueue("NotifyQueue");
2015-11-17 21:22:51 -05:00
ModemIQData modemData;
2014-12-16 21:30:03 -05:00
while (!terminated) {
2014-12-23 01:12:14 -05:00
DemodulatorThreadPostIQData *inp;
iqInputQueue->pop(inp);
// std::lock_guard < std::mutex > lock(inp->m_mutex);
audioSampleRate = demodInstance->getAudioSampleRate();
2014-12-23 01:12:14 -05:00
int bufSize = inp->data.size();
2014-12-16 21:30:03 -05:00
if (!bufSize) {
2014-12-24 01:28:33 -05:00
inp->decRefCount();
2014-12-16 21:30:03 -05:00
continue;
}
2015-11-17 21:22:51 -05:00
if (inp->modemKit && inp->modemKit != cModemKit) {
if (cModemKit != nullptr) {
cModem->disposeKit(cModemKit);
}
2015-11-17 21:22:51 -05:00
cModemKit = inp->modemKit;
}
if (inp->modem && inp->modem != cModem) {
delete cModem;
cModem = inp->modem;
}
if (!cModem || !cModemKit) {
inp->decRefCount();
continue;
}
if (agcData.size() != bufSize) {
if (agcData.capacity() < bufSize) {
agcData.reserve(bufSize);
agcAMData.reserve(bufSize);
}
agcData.resize(bufSize);
agcAMData.resize(bufSize);
}
agc_crcf_execute_block(iqAutoGain, &(inp->data[0]), bufSize, &agcData[0]);
float currentSignalLevel = 0;
currentSignalLevel = ((60.0 / fabs(agc_crcf_get_rssi(iqAutoGain))) / 15.0 - signalLevel);
if (agc_crcf_get_signal_level(iqAutoGain) > currentSignalLevel) {
currentSignalLevel = agc_crcf_get_signal_level(iqAutoGain);
2015-01-01 03:48:32 -05:00
}
2015-07-19 15:34:06 -04:00
std::vector<liquid_float_complex> *inputData;
2015-07-19 15:34:06 -04:00
if (agcEnabled) {
inputData = &agcData;
2015-07-19 15:34:06 -04:00
} else {
inputData = &inp->data;
2015-07-19 15:34:06 -04:00
}
2015-11-17 21:22:51 -05:00
modemData.sampleRate = inp->sampleRate;
modemData.data.assign(inputData->begin(), inputData->end());
modemData.setRefCount(1);
2015-11-17 21:22:51 -05:00
AudioThreadInput *ati = NULL;
ati = outputBuffers.getBuffer();
ati->sampleRate = audioSampleRate;
ati->inputRate = inp->sampleRate;
ati->setRefCount(1);
2015-11-17 21:22:51 -05:00
cModem->demodulate(cModemKit, &modemData, ati);
if (currentSignalLevel > signalLevel) {
signalLevel = signalLevel + (currentSignalLevel - signalLevel) * 0.5;
2014-12-31 19:45:01 -05:00
} else {
signalLevel = signalLevel + (currentSignalLevel - signalLevel) * 0.05;
2014-12-31 19:45:01 -05:00
}
if (audioOutputQueue != NULL) {
2015-11-17 21:22:51 -05:00
if (ati && (!squelchEnabled || (signalLevel >= squelchLevel))) {
std::vector<float>::iterator data_i;
ati->peak = 0;
for (data_i = ati->data.begin(); data_i != ati->data.end(); data_i++) {
2015-02-12 02:14:22 -05:00
float p = fabs(*data_i);
if (p > ati->peak) {
ati->peak = p;
}
}
}
2014-12-16 21:30:03 -05:00
}
if (ati && audioVisOutputQueue != NULL && audioVisOutputQueue->empty()) {
AudioThreadInput *ati_vis = audioVisBuffers.getBuffer();
ati_vis->setRefCount(1);
ati_vis->sampleRate = inp->sampleRate;
ati_vis->inputRate = inp->sampleRate;
int num_vis = DEMOD_VIS_SIZE;
2015-11-17 21:22:51 -05:00
if (ati->channels==2) {
ati_vis->channels = 2;
int stereoSize = ati->data.size();
2015-06-27 23:23:43 -04:00
if (stereoSize > DEMOD_VIS_SIZE * 2) {
stereoSize = DEMOD_VIS_SIZE * 2;
2014-12-26 22:20:50 -05:00
}
2014-12-26 22:20:50 -05:00
ati_vis->data.resize(stereoSize);
if (inp->modemType == "I/Q") {
2015-06-27 23:23:43 -04:00
for (int i = 0; i < stereoSize / 2; i++) {
2015-07-19 15:34:06 -04:00
ati_vis->data[i] = agcData[i].real * 0.75;
ati_vis->data[i + stereoSize / 2] = agcData[i].imag * 0.75;
2015-06-27 23:23:43 -04:00
}
} else {
for (int i = 0; i < stereoSize / 2; i++) {
ati_vis->inputRate = audioSampleRate;
ati_vis->sampleRate = 36000;
2015-06-27 23:23:43 -04:00
ati_vis->data[i] = ati->data[i * 2];
ati_vis->data[i + stereoSize / 2] = ati->data[i * 2 + 1];
}
}
} else {
int numAudioWritten = ati->data.size();
ati_vis->channels = 1;
// if (numAudioWritten > bufSize) {
ati_vis->inputRate = audioSampleRate;
if (num_vis > numAudioWritten) {
num_vis = numAudioWritten;
}
ati_vis->data.assign(ati->data.begin(), ati->data.begin() + num_vis);
// } else {
// if (num_vis > bufSize) {
// num_vis = bufSize;
// }
// ati_vis->data.assign(ati->data.begin(), ati->data.begin() + num_vis);
// }
// std::cout << "Signal: " << agc_crcf_get_signal_level(agc) << " -- " << agc_crcf_get_rssi(agc) << "dB " << std::endl;
}
audioVisOutputQueue->push(ati_vis);
}
2015-07-19 15:34:06 -04:00
if (ati != NULL) {
if (!muted.load()) {
audioOutputQueue->push(ati);
} else {
ati->setRefCount(0);
}
2015-07-19 15:34:06 -04:00
}
if (!threadQueueControl->empty()) {
while (!threadQueueControl->empty()) {
DemodulatorThreadControlCommand command;
threadQueueControl->pop(command);
switch (command.cmd) {
case DemodulatorThreadControlCommand::DEMOD_THREAD_CMD_CTL_SQUELCH_ON:
squelchEnabled = true;
break;
case DemodulatorThreadControlCommand::DEMOD_THREAD_CMD_CTL_SQUELCH_OFF:
squelchEnabled = false;
break;
default:
break;
}
}
2014-12-16 21:30:03 -05:00
}
2014-12-24 01:28:33 -05:00
inp->decRefCount();
2014-12-16 21:30:03 -05:00
}
// end while !terminated
2015-11-17 21:22:51 -05:00
outputBuffers.purge();
2015-01-22 23:41:33 -05:00
if (audioVisOutputQueue && !audioVisOutputQueue->empty()) {
AudioThreadInput *dummy_vis;
audioVisOutputQueue->pop(dummy_vis);
}
audioVisBuffers.purge();
2014-12-16 21:30:03 -05:00
DemodulatorThreadCommand tCmd(DemodulatorThreadCommand::DEMOD_THREAD_CMD_DEMOD_TERMINATED);
tCmd.context = this;
threadQueueNotify->push(tCmd);
std::cout << "Demodulator thread done." << std::endl;
}
2014-12-16 18:27:32 -05:00
void DemodulatorThread::terminate() {
2014-12-16 21:30:03 -05:00
terminated = true;
2014-12-23 01:12:14 -05:00
DemodulatorThreadPostIQData *inp = new DemodulatorThreadPostIQData; // push dummy to nudge queue
iqInputQueue->push(inp);
2014-12-16 18:27:32 -05:00
}
2014-12-26 20:58:42 -05:00
bool DemodulatorThread::isMuted() {
return muted.load();
}
void DemodulatorThread::setMuted(bool muted) {
this->muted.store(muted);
}
2015-07-19 15:34:06 -04:00
void DemodulatorThread::setAGC(bool state) {
agcEnabled.store(state);
2014-12-26 20:58:42 -05:00
}
2014-12-31 19:45:01 -05:00
2015-07-19 15:34:06 -04:00
bool DemodulatorThread::getAGC() {
return agcEnabled.load();
2015-07-19 15:34:06 -04:00
}
2014-12-31 19:45:01 -05:00
float DemodulatorThread::getSignalLevel() {
2015-07-19 15:34:06 -04:00
return signalLevel.load();
2014-12-31 19:45:01 -05:00
}
void DemodulatorThread::setSquelchLevel(float signal_level_in) {
if (!squelchEnabled) {
squelchEnabled = true;
2014-12-31 19:45:01 -05:00
}
squelchLevel = signal_level_in;
2014-12-31 19:45:01 -05:00
}
float DemodulatorThread::getSquelchLevel() {
return squelchLevel;
2014-12-31 19:45:01 -05:00
}