mirror of
https://github.com/mackron/miniaudio.git
synced 2026-04-24 01:04:02 +02:00
Fix bugs in ma_resampler_get_required_input_frame_count().
This commit is contained in:
+1
-1
@@ -4285,7 +4285,7 @@ static MA_INLINE ma_int32 ma_mix_s32_fast(ma_int32 x, ma_int32 y, float a)
|
||||
return x + r1;
|
||||
}
|
||||
|
||||
static MA_INLINE ma_int32 ma_mix_s16_fast(ma_int32 x, ma_int32 y, float a)
|
||||
static MA_INLINE ma_int16 ma_mix_s16_fast(ma_int32 x, ma_int32 y, float a)
|
||||
{
|
||||
return (ma_int16)ma_mix_s32_fast(x, y, a);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user