mirror of
https://github.com/cjcliffe/CubicSDR.git
synced 2024-11-16 00:51:49 -05:00
61 lines
1.4 KiB
C++
61 lines
1.4 KiB
C++
#pragma once
|
|
|
|
#include <queue>
|
|
#include <vector>
|
|
|
|
#include "DemodDefs.h"
|
|
#include "AudioThread.h"
|
|
#include "Modem.h"
|
|
|
|
typedef ThreadQueue<AudioThreadInput *> DemodulatorThreadOutputQueue;
|
|
|
|
#define DEMOD_VIS_SIZE 2048
|
|
#define DEMOD_SIGNAL_MIN -30
|
|
#define DEMOD_SIGNAL_MAX 30
|
|
|
|
class DemodulatorInstance;
|
|
|
|
class DemodulatorThread : public IOThread {
|
|
public:
|
|
|
|
DemodulatorThread(DemodulatorInstance *parent);
|
|
~DemodulatorThread();
|
|
|
|
void onBindOutput(std::string name, ThreadQueueBase *threadQueue);
|
|
|
|
void run();
|
|
void terminate();
|
|
|
|
void setMuted(bool state);
|
|
bool isMuted();
|
|
|
|
float getSignalLevel();
|
|
void setSquelchLevel(float signal_level_in);
|
|
float getSquelchLevel();
|
|
|
|
bool getSquelchBreak();
|
|
|
|
protected:
|
|
|
|
float abMagnitude(double alpha, double beta, float inphase, float quadrature);
|
|
float linearToDb(float linear);
|
|
|
|
DemodulatorInstance *demodInstance;
|
|
ReBuffer<AudioThreadInput> outputBuffers;
|
|
|
|
std::atomic_bool muted;
|
|
|
|
std::atomic<float> squelchLevel;
|
|
std::atomic<float> signalLevel;
|
|
bool squelchEnabled, squelchBreak;
|
|
|
|
Modem *cModem;
|
|
ModemKit *cModemKit;
|
|
|
|
DemodulatorThreadPostInputQueue* iqInputQueue;
|
|
AudioThreadInputQueue *audioOutputQueue;
|
|
DemodulatorThreadOutputQueue* audioVisOutputQueue;
|
|
DemodulatorThreadControlCommandQueue *threadQueueControl;
|
|
DemodulatorThreadCommandQueue* threadQueueNotify;
|
|
};
|