mirror of
https://github.com/mackron/miniaudio.git
synced 2026-04-24 01:04:02 +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;
|
float ditherMax;
|
||||||
|
|
||||||
if (!ma_has_neon()) {
|
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. */
|
/* Both the input and output buffers need to be aligned to 16 bytes. */
|
||||||
|
|||||||
Reference in New Issue
Block a user