Bingo.. DemodulatorInstance deltaLock atomic_bool was uninitialized.. :)

This commit is contained in:
Charles J. Cliffe 2016-06-02 22:28:17 -04:00
parent 423c83f500
commit 5a6d97e480

View File

@ -12,16 +12,18 @@ DemodulatorInstance::DemodulatorInstance() :
activeOutput = nullptr;
#endif
terminated.store(true);
audioTerminated.store(true);
demodTerminated.store(true);
audioTerminated.store(true);
preDemodTerminated.store(true);
active.store(false);
squelch.store(false);
muted.store(false);
tracking.store(false);
follow.store(false);
deltaLock.store(false);
deltaLockOfs.store(0);
currentOutputDevice.store(-1);
currentAudioGain.store(1.0);
follow.store(false);
tracking.store(false);
label = new std::string("Unnamed");
pipeIQInputData = new DemodulatorThreadInputQueue;