pull/16/head
Ryzerth 2020-08-16 18:51:20 +02:00
rodzic e44d20bdbc
commit 6717c43fc2
2 zmienionych plików z 4 dodań i 0 usunięć

Wyświetl plik

@ -136,6 +136,7 @@ namespace audio {
bstr.stereoStream = &bstr.m2s->output;
astr->monoDynSplit->bind(bstr.monoStream);
bstr.m2s->start();
return bstr.stereoStream;
}
void setBlockSize(std::string name, int blockSize) {

Wyświetl plik

@ -181,8 +181,11 @@ namespace io {
if (!running) {
return;
}
spdlog::warn("==> Pa_StopStream");
Pa_StopStream(stream);
spdlog::warn("==> Pa_CloseStream");
Pa_CloseStream(stream);
spdlog::warn("==> Done");
running = false;
}