Commit 0d78d420 authored by Benjamin Pracht's avatar Benjamin Pracht

Oups, latest commit was broken.

parent eb1795eb
...@@ -188,7 +188,7 @@ static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter, ...@@ -188,7 +188,7 @@ static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter,
{ {
i_chan--; i_chan--;
p_out[i_chan] = p_prev_sample[i_chan]; p_out[i_chan] = p_prev_sample[i_chan];
p_out[i_chan] += ( p_in[i_chan] - (p_prev_sample[i_chan] ) p_out[i_chan] += ( ( p_in[i_chan] - p_prev_sample[i_chan] )
* p_sys->i_remainder * p_sys->i_remainder
/ p_filter->output.i_rate ); / p_filter->output.i_rate );
} }
......
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