Home
last modified time | relevance | path

Searched refs:peak_decay_diff_smooth (Results 1 – 2 of 2) sorted by relevance

/third_party/ffmpeg/libavcodec/
Daacps.c405 INTFLOAT *peak_decay_diff_smooth = ps->peak_decay_diff_smooth; in decorrelation() local
422 memset(ps->peak_decay_diff_smooth, 0, sizeof(ps->peak_decay_diff_smooth)); in decorrelation()
441 peak_decay_diff_smooth[i] += (peak_decay_nrg[i] + 2LL - power[i][n] - \ in decorrelation()
442 peak_decay_diff_smooth[i]) >> 2; in decorrelation()
444 if (peak_decay_diff_smooth[i]) { in decorrelation()
445 … transient_gain[i][n] = FFMIN(power_smooth[i]*43691LL / peak_decay_diff_smooth[i], 1<<16); in decorrelation()
457peak_decay_diff_smooth[i] += a_smooth * (peak_decay_nrg[i] - power[i][n] - peak_decay_diff_smooth[… in decorrelation()
458 denom = transient_impact * peak_decay_diff_smooth[i]; in decorrelation()
Daacps.h80 DECLARE_ALIGNED(16, INTFLOAT, peak_decay_diff_smooth)[34];