Commit ab518977 authored by David Reid's avatar David Reid

Remove unnecessary casts.

parent 96f747d3
...@@ -361,12 +361,12 @@ static MA_INLINE ma_biquad_config ma_lpf__get_biquad_config(const ma_lpf_config* ...@@ -361,12 +361,12 @@ static MA_INLINE ma_biquad_config ma_lpf__get_biquad_config(const ma_lpf_config*
c = cos(w); c = cos(w);
a = s / (2*q); a = s / (2*q);
bqConfig.a0 = (double)( 1 + a); bqConfig.a0 = 1 + a;
bqConfig.a1 = (double)(-2 * c); bqConfig.a1 = -2 * c;
bqConfig.a2 = (double)( 1 - a); bqConfig.a2 = 1 - a;
bqConfig.b0 = (double)((1 - c) / 2); bqConfig.b0 = (1 - c) / 2;
bqConfig.b1 = (double)( 1 - c); bqConfig.b1 = 1 - c;
bqConfig.b2 = (double)((1 - c) / 2); bqConfig.b2 = (1 - c) / 2;
bqConfig.format = pConfig->format; bqConfig.format = pConfig->format;
bqConfig.channels = pConfig->channels; bqConfig.channels = pConfig->channels;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment