From 95c6b5ebc88532e6492845e3ad3579d551ff43e6 Mon Sep 17 00:00:00 2001 From: "Ronald S. Bultje" Date: Thu, 11 Mar 2010 17:42:53 +0000 Subject: Fix spelling. Originally committed as revision 22470 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/sipr.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libavcodec/sipr.c') 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, -- cgit v1.2.3