Commit 0dae193d authored by Ronald S. Bultje's avatar Ronald S. Bultje Committed by Michael Niedermayer

swr: remove another forgotten division in DSP function.

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 954a38e9
......@@ -168,8 +168,6 @@ int RENAME(swri_resample_linear)(ResampleContext *c,
int dst_index;
int index= c->index;
int frac= c->frac;
int dst_incr_frac= c->dst_incr % c->src_incr;
int dst_incr= c->dst_incr / c->src_incr;
int sample_index = index >> c->phase_shift;
index &= c->phase_mask;
......@@ -189,8 +187,8 @@ int RENAME(swri_resample_linear)(ResampleContext *c,
val += (v2 - val) * (FELEML) frac / c->src_incr;
OUT(dst[dst_index], val);
frac += dst_incr_frac;
index += dst_incr;
frac += c->dst_incr_mod;
index += c->dst_incr_div;
if (frac >= c->src_incr) {
frac -= c->src_incr;
index++;
......
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