mirror of
https://github.com/cjcliffe/CubicSDR.git
synced 2024-11-14 16:11:47 -05:00
20 lines
360 B
C++
20 lines
360 B
C++
#pragma once
|
|
#include "Modem.h"
|
|
#include "ModemAnalog.h"
|
|
|
|
class ModemDSB : public ModemAnalog {
|
|
public:
|
|
ModemDSB();
|
|
~ModemDSB();
|
|
|
|
std::string getName();
|
|
|
|
Modem *factory();
|
|
|
|
int getDefaultSampleRate();
|
|
|
|
void demodulate(ModemKit *kit, ModemIQData *input, AudioThreadInput *audioOut);
|
|
|
|
private:
|
|
ampmodem demodAM_DSB;
|
|
}; |