Don't try returning a value in ma_pcm_f32_to_s16__neon().

This commit is contained in:
David Reid
2022-11-22 21:22:15 +10:00
parent 6a09fb9cb9
commit 1e1d76687c
+2 -1
View File
@@ -43823,7 +43823,8 @@ static MA_INLINE void ma_pcm_f32_to_s16__neon(void* dst, const void* src, ma_uin
float ditherMax;
if (!ma_has_neon()) {
return ma_pcm_f32_to_s16__optimized(dst, src, count, ditherMode);
ma_pcm_f32_to_s16__optimized(dst, src, count, ditherMode);
return;
}
/* Both the input and output buffers need to be aligned to 16 bytes. */