Lines Matching refs:bands
124 AacPsyBand band[128]; ///< bands information
125 AacPsyBand prev_band[128]; ///< bands information from the previous frame
141 float ath; ///< absolute threshold of hearing per bands
335 const uint8_t *band_sizes = ctx->bands[j];
586 * It performs min(thr_reduced, max(thr, energy/min_snr)) only for bands
588 * threshold of bands with hole avoidance off.
662 const uint8_t *band_sizes = ctx->bands[wi->num_windows == 8];
673 AacPsyBand *bands = &pch->band[w];
676 spread_en[0] = bands[0].energy;
678 bands[g].thr = FFMAX(bands[g].thr, bands[g-1].thr * coeffs[g].spread_hi[0]);
679 spread_en[w+g] = FFMAX(bands[g].energy, spread_en[w+g-1] * coeffs[g].spread_hi[1]);
682 bands[g].thr = FFMAX(bands[g].thr, bands[g+1].thr * coeffs[g].spread_low[0]);
687 AacPsyBand *band = &bands[g];
700 /* 5.6.1.3.3 "Selection of the bands for avoidance of holes" */