audio_core: sink: Disable stalling for science.

This commit is contained in:
bunnei
2022-11-18 00:54:14 -08:00
parent 405d685101
commit 04259151ac
+2 -14
View File
@@ -265,20 +265,8 @@ void SinkStream::ProcessAudioOutAndRender(std::span<s16> output_buffer, std::siz
}
}
void SinkStream::Stall() {
if (stalled) {
return;
}
stalled = true;
system.StallProcesses();
}
void SinkStream::Stall() {}
void SinkStream::Unstall() {
if (!stalled) {
return;
}
system.UnstallProcesses();
stalled = false;
}
void SinkStream::Unstall() {}
} // namespace AudioCore::Sink