mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-06 07:40:00 +08:00
Split the input/output data arguments to ff_adaptive_gain_control().
Originally committed as revision 22932 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@ -479,7 +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_adaptive_gain_control(&synth[i * SUBFR_SIZE], energy,
|
||||
ff_adaptive_gain_control(&synth[i * SUBFR_SIZE],
|
||||
&synth[i * SUBFR_SIZE], energy,
|
||||
SUBFR_SIZE, 0.9, &ctx->postfilter_agc);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user