Lines Matching defs:peak_decay_diff_smooth
406 INTFLOAT *peak_decay_diff_smooth = ps->peak_decay_diff_smooth;
423 memset(ps->peak_decay_diff_smooth, 0, sizeof(ps->peak_decay_diff_smooth));
442 peak_decay_diff_smooth[i] += (peak_decay_nrg[i] + 2LL - power[i][n] - \
443 peak_decay_diff_smooth[i]) >> 2;
445 if (peak_decay_diff_smooth[i]) {
446 transient_gain[i][n] = FFMIN(power_smooth[i]*43691LL / peak_decay_diff_smooth[i], 1<<16);
458 peak_decay_diff_smooth[i] += a_smooth * (peak_decay_nrg[i] - power[i][n] - peak_decay_diff_smooth[i]);
459 denom = transient_impact * peak_decay_diff_smooth[i];