diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2010-03-11 17:42:53 +0000 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2010-03-11 17:42:53 +0000 |
commit | 95c6b5ebc88532e6492845e3ad3579d551ff43e6 (patch) | |
tree | 270779841070d288b1964e1f1bf23b462d66bbc1 /libavcodec/sipr.c | |
parent | 34056cbba55f0131e8d2698717ab9e86e2da5178 (diff) | |
download | ffmpeg-95c6b5ebc88532e6492845e3ad3579d551ff43e6.tar.gz |
Fix spelling.
Originally committed as revision 22470 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/sipr.c')
-rw-r--r-- | libavcodec/sipr.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/sipr.c b/libavcodec/sipr.c index ada2fe91ea..d2ce9c7897 100644 --- a/libavcodec/sipr.c +++ b/libavcodec/sipr.c @@ -254,7 +254,7 @@ static void sipr_decode_lp(float *lsfnew, const float *lsfold, float *Az, } /** - * Evaluates the adaptative impulse response. + * Evaluates the adaptive impulse response. */ static void eval_ir(const float *Az, int pitch_lag, float *freq, float pitch_sharp_factor) @@ -479,8 +479,8 @@ static void decode_frame(SiprContext *ctx, SiprParameters *params, float energy = ff_dot_productf(ctx->postfilter_syn5k0 + LP_FILTER_ORDER + i*SUBFR_SIZE, ctx->postfilter_syn5k0 + LP_FILTER_ORDER + i*SUBFR_SIZE, SUBFR_SIZE); - ff_adaptative_gain_control(&synth[i * SUBFR_SIZE], energy, - SUBFR_SIZE, 0.9, &ctx->postfilter_agc); + ff_adaptive_gain_control(&synth[i * SUBFR_SIZE], energy, + SUBFR_SIZE, 0.9, &ctx->postfilter_agc); } memcpy(ctx->postfilter_syn5k0, ctx->postfilter_syn5k0 + frame_size, |