swr: remove another forgotten division in DSP function.

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Ronald S. Bultje 2014-06-21 17:09:29 -04:00 committed by Michael Niedermayer
parent 954a38e9bf
commit 0dae193d3e
1 changed files with 2 additions and 4 deletions

View File

@ -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++;