mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 22:25:41 +12:00
Prevent app crash when miniaudio samples bigger than capacity (#596)
* Prevent app crash when miniaudio samples bigger than capacity * Update miniaudio_device.cpp --------- Co-authored-by: wheremyfoodat <44909372+wheremyfoodat@users.noreply.github.com>
This commit is contained in:
parent
f1b7830952
commit
c12c3bce8d
1 changed files with 3 additions and 2 deletions
|
@ -90,16 +90,17 @@ void MiniAudioDevice::init(Samples& samples, bool safe) {
|
||||||
deviceConfig.dataCallback = [](ma_device* device, void* out, const void* input, ma_uint32 frameCount) {
|
deviceConfig.dataCallback = [](ma_device* device, void* out, const void* input, ma_uint32 frameCount) {
|
||||||
auto self = reinterpret_cast<MiniAudioDevice*>(device->pUserData);
|
auto self = reinterpret_cast<MiniAudioDevice*>(device->pUserData);
|
||||||
s16* output = reinterpret_cast<ma_int16*>(out);
|
s16* output = reinterpret_cast<ma_int16*>(out);
|
||||||
|
const usize maxSamples = std::min(self->samples->Capacity(), usize(frameCount * channelCount));
|
||||||
|
|
||||||
// Wait until there's enough samples to pop
|
// Wait until there's enough samples to pop
|
||||||
while (self->samples->size() < frameCount * channelCount) {
|
while (self->samples->size() < maxSamples) {
|
||||||
// If audio output is disabled from the emulator thread, make sure that this callback will return and not hang
|
// If audio output is disabled from the emulator thread, make sure that this callback will return and not hang
|
||||||
if (!self->running) {
|
if (!self->running) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
self->samples->pop(output, frameCount * channelCount);
|
self->samples->pop(output, maxSamples);
|
||||||
};
|
};
|
||||||
|
|
||||||
if (ma_device_init(&context, &deviceConfig, &device) != MA_SUCCESS) {
|
if (ma_device_init(&context, &deviceConfig, &device) != MA_SUCCESS) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue