Commit 3acd03b1 authored by David Reid's avatar David Reid

Fix a bug in mal_device_start() where the wrong value is returned.

This issue affects the OpenSL and SDL backends.
parent 2eebeda8
...@@ -9750,14 +9750,18 @@ mal_result mal_device_start(mal_device* pDevice) ...@@ -9750,14 +9750,18 @@ mal_result mal_device_start(mal_device* pDevice)
// Asynchronous backends need to be handled differently. // Asynchronous backends need to be handled differently.
#ifdef MAL_HAS_OPENSL #ifdef MAL_HAS_OPENSL
if (pDevice->pContext->backend == mal_backend_opensl) { if (pDevice->pContext->backend == mal_backend_opensl) {
mal_device__start_backend__opensl(pDevice); result = mal_device__start_backend__opensl(pDevice);
if (result == MAL_SUCCESS) {
mal_device__set_state(pDevice, MAL_STATE_STARTED); mal_device__set_state(pDevice, MAL_STATE_STARTED);
}
} else } else
#endif #endif
#ifdef MAL_HAS_SDL #ifdef MAL_HAS_SDL
if (pDevice->pContext->backend == mal_backend_sdl) { if (pDevice->pContext->backend == mal_backend_sdl) {
mal_device__start_backend__sdl(pDevice); result = mal_device__start_backend__sdl(pDevice);
if (result == MAL_SUCCESS) {
mal_device__set_state(pDevice, MAL_STATE_STARTED); mal_device__set_state(pDevice, MAL_STATE_STARTED);
}
} else } else
#endif #endif
// Synchronous backends. // Synchronous backends.
...@@ -11275,6 +11279,7 @@ void mal_pcm_f32_to_s32(int* pOut, const float* pIn, unsigned int count) ...@@ -11275,6 +11279,7 @@ void mal_pcm_f32_to_s32(int* pOut, const float* pIn, unsigned int count)
// - Add mal_convert_frames(). This is a high-level helper API for performing a one-time, bulk conversion of // - Add mal_convert_frames(). This is a high-level helper API for performing a one-time, bulk conversion of
// audio data to a different format. // audio data to a different format.
// - Improvements to f32 -> u8/s16/s24/s32 conversion routines. // - Improvements to f32 -> u8/s16/s24/s32 conversion routines.
// - Fix a bug where the wrong value is returned from mal_device_start() for the OpenSL and SDL backends.
// - Warning fixes. // - Warning fixes.
// //
// v0.5 - 2017-11-11 // v0.5 - 2017-11-11
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment