You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using a custom AudioStream to play audio in my emulator. However, I noticed that if the computer goes in sleep mode while the emulator is running, once the computer has booted back up the program will have no audio whatsoever and there is no chance of it coming back; only closing and reopening the emulator works.
I am initializing a custom audio stream with LoadAudioStream() and then manipulating it by calling SetAudioStreamCallback() with a custom function that populates the audio frames.
Is there a function that lets me detect the standby state to close the stream and to open a new one? Or am I missing something?
The text was updated successfully, but these errors were encountered:
@michelelorusso05 It sounds like an issue with the device re-initialization after sleep, not sure if this scenario is contemplated by miniaudio... Maybe @mackron could provide more info?
If this is critical to you, consider adding MA_NO_WASAPI to your build settings. That will disable the WASAPI backend and force the DirectSound backend which I believe works. Alternatively, if there's a way for you to detect the computer going to sleep and waking up, you can manually handle this at a higher level than miniaudio and manually uninitialize and reinitialize miniaudio from there. This is not something I consider super high priority so it might be a while before I get to addressing this at the miniaudio level.
@mackron thank you very much for the reply and the details on the issue.
@michelelorusso05 It seems this issue is related to miniaudio and low-priority, you can try the approach proposed or wait for a potential fix in the future. I'm closing the issue on raylib side.
I am using a custom AudioStream to play audio in my emulator. However, I noticed that if the computer goes in sleep mode while the emulator is running, once the computer has booted back up the program will have no audio whatsoever and there is no chance of it coming back; only closing and reopening the emulator works.
I am initializing a custom audio stream with
LoadAudioStream()
and then manipulating it by callingSetAudioStreamCallback()
with a custom function that populates the audio frames.Is there a function that lets me detect the standby state to close the stream and to open a new one? Or am I missing something?
The text was updated successfully, but these errors were encountered: