| 22 | std::mutex DemodulatorThread::squelchLockMutex; |
| 23 | |
| 24 | DemodulatorThread::DemodulatorThread(DemodulatorInstance* parent) |
| 25 | : IOThread(), demodInstance(parent), outputBuffers("DemodulatorThreadBuffers"), muted(false), squelchLevel(-100), |
| 26 | signalLevel(-100), signalFloor(-30), signalCeil(30), squelchEnabled(false), squelchBreak(false) { |
| 27 | } |
| 28 | |
| 29 | DemodulatorThread::~DemodulatorThread() { |
| 30 | releaseSquelchLock(demodInstance); |
nothing calls this directly
no outgoing calls
no test coverage detected