CubicSDR/src/demod/DemodulatorThread.cpp

169 lines
5.7 KiB
C++
Raw Normal View History

2014-12-16 18:27:32 -05:00
#include "DemodulatorThread.h"
#include "CubicSDRDefs.h"
#include <vector>
#ifdef __APPLE__
#include <pthread.h>
#endif
DemodulatorThread::DemodulatorThread(DemodulatorThreadPostInputQueue* pQueue, DemodulatorThreadControlCommandQueue *threadQueueControl, DemodulatorThreadCommandQueue* threadQueueNotify) :
postInputQueue(pQueue), visOutQueue(NULL), terminated(false), audioInputQueue(NULL), threadQueueNotify(threadQueueNotify), threadQueueControl(threadQueueControl), agc(NULL), squelch_enabled(false), squelch_level(0), squelch_tolerance(0) {
2014-12-16 18:27:32 -05:00
2014-12-16 21:30:03 -05:00
float kf = 0.5; // modulation factor
fdem = freqdem_create(kf);
2014-12-16 18:27:32 -05:00
// freqdem_print(fdem);
}
DemodulatorThread::~DemodulatorThread() {
}
#ifdef __APPLE__
void *DemodulatorThread::threadMain() {
#else
2014-12-16 21:30:03 -05:00
void DemodulatorThread::threadMain() {
2014-12-16 18:27:32 -05:00
#endif
#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
2014-12-16 21:30:03 -05:00
msresamp_crcf audio_resampler = NULL;
msresamp_crcf resampler = NULL;
2014-12-16 18:27:32 -05:00
agc = agc_crcf_create();
agc_crcf_set_bandwidth(agc, 1e-3f);
2014-12-16 21:30:03 -05:00
std::cout << "Demodulator thread started.." << std::endl;
while (!terminated) {
DemodulatorThreadPostIQData inp;
postInputQueue->pop(inp);
2014-12-16 18:27:32 -05:00
2014-12-16 21:30:03 -05:00
int bufSize = inp.data.size();
2014-12-16 18:27:32 -05:00
2014-12-16 21:30:03 -05:00
if (!bufSize) {
continue;
}
2014-12-16 18:27:32 -05:00
2014-12-16 21:30:03 -05:00
if (resampler == NULL) {
resampler = inp.resampler;
audio_resampler = inp.audio_resampler;
} else if (resampler != inp.resampler) {
msresamp_crcf_destroy(resampler);
msresamp_crcf_destroy(audio_resampler);
resampler = inp.resampler;
audio_resampler = inp.audio_resampler;
}
int out_size = ceil((float) (bufSize) * inp.resample_ratio);
liquid_float_complex resampled_data[out_size];
liquid_float_complex agc_data[out_size];
2014-12-16 21:30:03 -05:00
unsigned int num_written;
msresamp_crcf_execute(resampler, &inp.data[0], bufSize, resampled_data, &num_written);
2014-12-16 18:27:32 -05:00
agc_crcf_execute_block(agc, resampled_data, num_written, agc_data);
2014-12-16 21:30:03 -05:00
float audio_resample_ratio = inp.audio_resample_ratio;
float demod_output[num_written];
2014-12-16 18:27:32 -05:00
freqdem_demodulate_block(fdem, agc_data, num_written, demod_output);
2014-12-16 18:27:32 -05:00
2014-12-16 21:30:03 -05:00
liquid_float_complex demod_audio_data[num_written];
2014-12-16 18:27:32 -05:00
2014-12-16 21:30:03 -05:00
for (int i = 0; i < num_written; i++) {
demod_audio_data[i].real = demod_output[i];
demod_audio_data[i].imag = 0;
}
2014-12-16 18:27:32 -05:00
2014-12-16 21:30:03 -05:00
int audio_out_size = ceil((float) (num_written) * audio_resample_ratio);
liquid_float_complex resampled_audio_output[audio_out_size];
2014-12-16 18:27:32 -05:00
2014-12-16 21:30:03 -05:00
unsigned int num_audio_written;
msresamp_crcf_execute(audio_resampler, demod_audio_data, num_written, resampled_audio_output, &num_audio_written);
2014-12-16 18:27:32 -05:00
2014-12-16 21:30:03 -05:00
std::vector<float> newBuffer;
newBuffer.resize(num_audio_written * 2);
for (int i = 0; i < num_audio_written; i++) {
liquid_float_complex y = resampled_audio_output[i];
2014-12-16 18:27:32 -05:00
2014-12-16 21:30:03 -05:00
newBuffer[i * 2] = y.real;
newBuffer[i * 2 + 1] = y.real;
}
2014-12-16 18:27:32 -05:00
2014-12-16 21:30:03 -05:00
AudioThreadInput ati;
ati.data = newBuffer;
2014-12-16 18:27:32 -05:00
2014-12-16 21:30:03 -05:00
if (audioInputQueue != NULL) {
if (!squelch_enabled || ((agc_crcf_get_signal_level(agc)) >= 0.1)) {
audioInputQueue->push(ati);
}
2014-12-16 21:30:03 -05:00
}
2014-12-16 18:27:32 -05:00
if (visOutQueue != NULL && visOutQueue->empty()) {
AudioThreadInput ati_vis;
int num_vis = DEMOD_VIS_SIZE;
if (num_audio_written > num_written) {
if (num_vis > num_audio_written) {
num_vis = num_audio_written;
}
ati_vis.data.resize(num_vis);
for (int i = 0; i < num_vis; i++) {
ati_vis.data[i] = resampled_audio_output[i].real;
}
} else {
if (num_vis > num_written) {
num_vis = num_written;
}
ati_vis.data.assign(demod_output, demod_output + num_vis);
}
visOutQueue->push(ati_vis);
// std::cout << "Signal: " << agc_crcf_get_signal_level(agc) << " -- " << agc_crcf_get_rssi(agc) << "dB " << std::endl;
}
if (!threadQueueControl->empty()) {
while (!threadQueueControl->empty()) {
DemodulatorThreadControlCommand command;
threadQueueControl->pop(command);
switch (command.cmd) {
case DemodulatorThreadControlCommand::DEMOD_THREAD_CMD_CTL_SQUELCH_AUTO:
squelch_level = agc_crcf_get_signal_level(agc);
squelch_tolerance = agc_crcf_get_signal_level(agc)/2.0;
squelch_enabled = true;
break;
case DemodulatorThreadControlCommand::DEMOD_THREAD_CMD_CTL_SQUELCH_OFF:
squelch_level = 0;
squelch_tolerance = 1;
squelch_enabled = false;
break;
default:
break;
}
}
2014-12-16 21:30:03 -05:00
}
2014-12-16 21:30:03 -05:00
}
2014-12-16 18:27:32 -05:00
2014-12-16 21:30:03 -05:00
if (resampler != NULL) {
msresamp_crcf_destroy(resampler);
}
if (audio_resampler != NULL) {
msresamp_crcf_destroy(audio_resampler);
}
agc_crcf_destroy(agc);
2014-12-16 21:30:03 -05:00
std::cout << "Demodulator thread done." << std::endl;
DemodulatorThreadCommand tCmd(DemodulatorThreadCommand::DEMOD_THREAD_CMD_DEMOD_TERMINATED);
tCmd.context = this;
threadQueueNotify->push(tCmd);
2014-12-16 18:27:32 -05:00
}
void DemodulatorThread::terminate() {
2014-12-16 21:30:03 -05:00
terminated = true;
DemodulatorThreadPostIQData inp; // push dummy to nudge queue
postInputQueue->push(inp);
2014-12-16 18:27:32 -05:00
}