HLE DSP: Stub audio output

This commit is contained in:
wheremyfoodat 2024-11-19 01:27:42 +02:00
parent e22bc58060
commit 66be960150

View file

@ -211,11 +211,11 @@ namespace Audio {
if (audioEnabled) {
// Wait until we've actually got room to push our frame
while (sampleBuffer.size() + 2 > sampleBuffer.Capacity()) {
while (sampleBuffer.size() + frame.size() * 2 > sampleBuffer.Capacity()) {
std::this_thread::sleep_for(std::chrono::milliseconds{1});
}
sampleBuffer.push(frame.data(), frame.size());
sampleBuffer.push(frame.data(), frame.size() * 2);
}
}
@ -276,6 +276,12 @@ namespace Audio {
}
}
for (int i = 0; i < Audio::samplesInFrame; i++) {
auto& mix0 = mixes[0];
auto& sample = mix0[i];
frame[i] = {s16(sample[0]), s16(sample[2])};
}
performMix(read, write);
}