mirror of
https://github.com/mackron/miniaudio.git
synced 2026-04-22 00:06:59 +02:00
Don't try returning a value in ma_pcm_f32_to_s16__neon().
This commit is contained in:
+2
-1
@@ -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. */
|
||||
|
||||
Reference in New Issue
Block a user