CubicSDR/src/demod/DemodulatorWorkerThread.h

96 lines
2.5 KiB
C
Raw Normal View History

2014-11-30 23:33:55 -05:00
#pragma once
#include <queue>
#include <vector>
#include "liquid/liquid.h"
#include "AudioThread.h"
#include "ThreadQueue.h"
#include "CubicSDRDefs.h"
class DemodulatorWorkerThreadResult {
public:
enum DemodulatorThreadResultEnum {
DEMOD_WORKER_THREAD_RESULT_NULL, DEMOD_WORKER_THREAD_RESULT_FILTERS
};
DemodulatorWorkerThreadResult() :
2015-01-11 17:08:16 -05:00
cmd(DEMOD_WORKER_THREAD_RESULT_NULL), iqResampler(NULL), iqResampleRatio(0), audioResampler(NULL), stereoResampler(NULL), audioResamplerRatio(
0), firStereoLeft(NULL), firStereoRight(NULL), iirStereoPilot(NULL), sampleRate(0), bandwidth(0), audioSampleRate(0) {
2014-11-30 23:33:55 -05:00
}
DemodulatorWorkerThreadResult(DemodulatorThreadResultEnum cmd) :
DemodulatorWorkerThreadResult() {
this->cmd = cmd;
2014-11-30 23:33:55 -05:00
}
2014-12-23 01:12:14 -05:00
DemodulatorThreadResultEnum cmd;
2015-01-11 17:08:16 -05:00
msresamp_crcf iqResampler;
double iqResampleRatio;
msresamp_rrrf audioResampler;
msresamp_rrrf stereoResampler;
double audioResamplerRatio;
2014-11-30 23:33:55 -05:00
firfilt_rrrf firStereoLeft;
firfilt_rrrf firStereoRight;
iirfilt_crcf iirStereoPilot;
2015-01-11 17:08:16 -05:00
long long sampleRate;
2014-11-30 23:33:55 -05:00
unsigned int bandwidth;
unsigned int audioSampleRate;
};
class DemodulatorWorkerThreadCommand {
public:
enum DemodulatorThreadCommandEnum {
DEMOD_WORKER_THREAD_CMD_NULL, DEMOD_WORKER_THREAD_CMD_BUILD_FILTERS
};
DemodulatorWorkerThreadCommand() :
2015-01-11 17:08:16 -05:00
cmd(DEMOD_WORKER_THREAD_CMD_NULL), frequency(0), sampleRate(0), bandwidth(0), audioSampleRate(0) {
2014-11-30 23:33:55 -05:00
}
DemodulatorWorkerThreadCommand(DemodulatorThreadCommandEnum cmd) :
2015-01-11 17:08:16 -05:00
cmd(cmd), frequency(0), sampleRate(0), bandwidth(0), audioSampleRate(0) {
2014-11-30 23:33:55 -05:00
}
2014-12-23 01:12:14 -05:00
DemodulatorThreadCommandEnum cmd;
long long frequency;
2015-01-11 17:08:16 -05:00
long long sampleRate;
2014-11-30 23:33:55 -05:00
unsigned int bandwidth;
unsigned int audioSampleRate;
};
typedef ThreadQueue<DemodulatorWorkerThreadCommand> DemodulatorThreadWorkerCommandQueue;
typedef ThreadQueue<DemodulatorWorkerThreadResult> DemodulatorThreadWorkerResultQueue;
2015-07-29 20:57:02 -04:00
class DemodulatorWorkerThread : public IOThread {
2014-11-30 23:33:55 -05:00
public:
DemodulatorWorkerThread();
2014-11-30 23:33:55 -05:00
~DemodulatorWorkerThread();
2015-07-29 20:57:02 -04:00
void run();
2014-11-30 23:33:55 -05:00
void setCommandQueue(DemodulatorThreadWorkerCommandQueue *tQueue) {
commandQueue = tQueue;
}
void setResultQueue(DemodulatorThreadWorkerResultQueue *tQueue) {
resultQueue = tQueue;
}
void terminate();
protected:
DemodulatorThreadWorkerCommandQueue *commandQueue;
DemodulatorThreadWorkerResultQueue *resultQueue;
};