diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2014-06-18 07:26:03 -0400 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-06-18 14:15:52 +0200 |
commit | cbf21628a5e56914c74c811c5663975990f56f77 (patch) | |
tree | be6dd810f9247a5f551aaceb6592407db913fc4d | |
parent | 076ab9f7e3b1f4a02d31bba2b8e55407f5deff17 (diff) | |
download | ffmpeg-cbf21628a5e56914c74c811c5663975990f56f77.tar.gz |
swr: remove div/mod from DSP functions.
Also fix a bug with resample_compensation resetting dst_incr.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libswresample/resample.c | 23 | ||||
-rw-r--r-- | libswresample/resample.h | 2 | ||||
-rw-r--r-- | libswresample/resample_template.c | 6 |
3 files changed, 19 insertions, 12 deletions
diff --git a/libswresample/resample.c b/libswresample/resample.c index 9a67e6340c..81dec7df69 100644 --- a/libswresample/resample.c +++ b/libswresample/resample.c @@ -231,7 +231,9 @@ static ResampleContext *resample_init(ResampleContext *c, int out_rate, int in_r c->compensation_distance= 0; if(!av_reduce(&c->src_incr, &c->dst_incr, out_rate, in_rate * (int64_t)phase_count, INT32_MAX/2)) goto error; - c->ideal_dst_incr= c->dst_incr; + c->ideal_dst_incr = c->dst_incr; + c->dst_incr_div = c->dst_incr / c->src_incr; + c->dst_incr_mod = c->dst_incr % c->src_incr; c->index= -phase_count*((c->filter_length-1)/2); c->frac= 0; @@ -258,6 +260,10 @@ static int set_compensation(ResampleContext *c, int sample_delta, int compensati c->dst_incr = c->ideal_dst_incr - c->ideal_dst_incr * (int64_t)sample_delta / compensation_distance; else c->dst_incr = c->ideal_dst_incr; + + c->dst_incr_div = c->dst_incr / c->src_incr; + c->dst_incr_mod = c->dst_incr % c->src_incr; + return 0; } @@ -270,8 +276,6 @@ static int swri_resample(ResampleContext *c, if (c->filter_length == 1 && c->phase_shift == 0) { 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; int64_t index2= (1LL<<32)*c->frac/c->src_incr + (1LL<<32)*index; int64_t incr= (1LL<<32) * c->dst_incr / c->src_incr; int new_size = (src_size * (int64_t)c->src_incr - frac + c->dst_incr - 1) / c->dst_incr; @@ -279,12 +283,12 @@ static int swri_resample(ResampleContext *c, dst_size= FFMIN(dst_size, new_size); c->dsp.resample_one[fn_idx](dst, src, dst_size, index2, incr); - index += dst_size * dst_incr; - index += (frac + dst_size * (int64_t)dst_incr_frac) / c->src_incr; + index += dst_size * c->dst_incr_div; + index += (frac + dst_size * (int64_t)c->dst_incr_mod) / c->src_incr; av_assert2(index >= 0); *consumed= index; if (update_ctx) { - c->frac = (frac + dst_size * (int64_t)dst_incr_frac) % c->src_incr; + c->frac = (frac + dst_size * (int64_t)c->dst_incr_mod) % c->src_incr; c->index = 0; } } else { @@ -323,8 +327,11 @@ static int multiple_resample(ResampleContext *c, AudioData *dst, int dst_size, A if (c->compensation_distance) { c->compensation_distance -= ret; - if (!c->compensation_distance) - c->dst_incr = c->ideal_dst_incr / c->src_incr; + if (!c->compensation_distance) { + c->dst_incr = c->ideal_dst_incr; + c->dst_incr_div = c->dst_incr / c->src_incr; + c->dst_incr_mod = c->dst_incr % c->src_incr; + } } return ret; diff --git a/libswresample/resample.h b/libswresample/resample.h index b159c7b432..b484ceb328 100644 --- a/libswresample/resample.h +++ b/libswresample/resample.h @@ -39,6 +39,8 @@ typedef struct ResampleContext { int filter_alloc; int ideal_dst_incr; int dst_incr; + int dst_incr_div; + int dst_incr_mod; int index; int frac; int src_incr; diff --git a/libswresample/resample_template.c b/libswresample/resample_template.c index f0e1dc0ec7..9279c71150 100644 --- a/libswresample/resample_template.c +++ b/libswresample/resample_template.c @@ -126,8 +126,6 @@ int RENAME(swri_resample_common)(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; @@ -145,8 +143,8 @@ int RENAME(swri_resample_common)(ResampleContext *c, OUT(dst[dst_index], val); #endif - 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++; |