pull/16/head
Ryzerth 2020-08-16 18:46:30 +02:00
rodzic e50ed1b960
commit e44d20bdbc
1 zmienionych plików z 4 dodań i 0 usunięć

Wyświetl plik

@ -77,12 +77,16 @@ namespace audio {
return; return;
} }
if (astr->type == STREAM_TYPE_MONO) { if (astr->type == STREAM_TYPE_MONO) {
spdlog::warn("=> Stopping monoDynSplit");
astr->monoDynSplit->stop(); astr->monoDynSplit->stop();
} }
else { else {
spdlog::warn("=> Stopping stereoDynSplit");
astr->stereoDynSplit->stop(); astr->stereoDynSplit->stop();
} }
spdlog::warn("=> Stopping audio");
astr->audio->stop(); astr->audio->stop();
spdlog::warn("=> Done");
astr->running = false; astr->running = false;
} }