diff --git a/miniaudio.h b/miniaudio.h index 237a4a9a..082fc11a 100644 --- a/miniaudio.h +++ b/miniaudio.h @@ -59939,7 +59939,7 @@ static MA_INLINE void ma_linear_resampler_filter_s16(ma_linear_resampler* pResam { ma_int32* pLPF; ma_uint32 iLPF; - ma_uint32 lpfCount = pResampler->lpfOrder >> 1; /* TODO: It's actually more useful to store lpfCount instead of lpfOrder. */ + ma_uint32 lpfCount = pResampler->lpfOrder >> 1; ma_uint32 iChannel; pLPF = MA_LINEAR_RESAMPLER_GET_LPF_STATE_S32(pResampler, 0); @@ -59993,7 +59993,7 @@ static MA_INLINE void ma_linear_resampler_filter_s32(ma_linear_resampler* pResam { ma_int32* pLPF; ma_uint32 iLPF; - ma_uint32 lpfCount = pResampler->lpfOrder >> 1; /* TODO: It's actually more useful to store lpfCount instead of lpfOrder. */ + ma_uint32 lpfCount = pResampler->lpfOrder >> 1; ma_uint32 iChannel; pLPF = MA_LINEAR_RESAMPLER_GET_LPF_STATE_S32(pResampler, 0); @@ -60029,7 +60029,7 @@ static MA_INLINE void ma_linear_resampler_filter_s32_mono(ma_linear_resampler* p { ma_int32* pLPF; ma_uint32 iLPF; - ma_uint32 lpfCount = pResampler->lpfOrder >> 1; /* TODO: It's actually more useful to store lpfCount instead of lpfOrder. */ + ma_uint32 lpfCount = pResampler->lpfOrder >> 1; ma_uint32 iChannel; pLPF = MA_LINEAR_RESAMPLER_GET_LPF_STATE_S32(pResampler, 0); @@ -60065,7 +60065,7 @@ static MA_INLINE void ma_linear_resampler_filter_s32_stereo(ma_linear_resampler* { ma_int32* pLPF; ma_uint32 iLPF; - ma_uint32 lpfCount = pResampler->lpfOrder >> 1; /* TODO: It's actually more useful to store lpfCount instead of lpfOrder. */ + ma_uint32 lpfCount = pResampler->lpfOrder >> 1; ma_uint32 iChannel; pLPF = MA_LINEAR_RESAMPLER_GET_LPF_STATE_S32(pResampler, 0); @@ -60125,7 +60125,7 @@ static MA_INLINE void ma_linear_resampler_filter_f32(ma_linear_resampler* pResam { float* pLPF; ma_uint32 iLPF; - ma_uint32 lpfCount = pResampler->lpfOrder >> 1; /* TODO: It's actually more useful to store lpfCount instead of lpfOrder. */ + ma_uint32 lpfCount = pResampler->lpfOrder >> 1; ma_uint32 iChannel; pLPF = MA_LINEAR_RESAMPLER_GET_LPF_STATE_F32(pResampler, 0); @@ -60161,7 +60161,7 @@ static MA_INLINE void ma_linear_resampler_filter_f32_mono(ma_linear_resampler* p { float* pLPF; ma_uint32 iLPF; - ma_uint32 lpfCount = pResampler->lpfOrder >> 1; /* TODO: It's actually more useful to store lpfCount instead of lpfOrder. */ + ma_uint32 lpfCount = pResampler->lpfOrder >> 1; ma_uint32 iChannel; pLPF = MA_LINEAR_RESAMPLER_GET_LPF_STATE_F32(pResampler, 0); @@ -60197,7 +60197,7 @@ static MA_INLINE void ma_linear_resampler_filter_f32_stereo(ma_linear_resampler* { float* pLPF; ma_uint32 iLPF; - ma_uint32 lpfCount = pResampler->lpfOrder >> 1; /* TODO: It's actually more useful to store lpfCount instead of lpfOrder. */ + ma_uint32 lpfCount = pResampler->lpfOrder >> 1; ma_uint32 iChannel; pLPF = MA_LINEAR_RESAMPLER_GET_LPF_STATE_F32(pResampler, 0);