mirror of
https://github.com/cjcliffe/CubicSDR.git
synced 2024-11-23 04:08:36 -05:00
Missing trace in AudioSink queue saturation
This commit is contained in:
parent
1dbfcedcd2
commit
8daadc3603
@ -250,7 +250,9 @@ void DemodulatorThread::run() {
|
||||
ati->peak = 0;
|
||||
ati->data.assign(ati->data.size(), 0.0f);
|
||||
|
||||
localAudioSinkOutputQueue->try_push(ati);
|
||||
if (!localAudioSinkOutputQueue->try_push(ati)) {
|
||||
std::cout << "DemodulatorThread::run() cannot push ati into audioSinkOutputQueue, is full !" << std::endl;
|
||||
}
|
||||
}
|
||||
|
||||
ati = nullptr;
|
||||
|
Loading…
Reference in New Issue
Block a user