Lines Matching defs:band
28 static float pvq_band_cost(CeltPVQ *pvq, CeltFrame *f, OpusRangeCoder *rc, int band,
33 const int band_size = ff_celt_freq_range[band] << f->size;
37 float *X_orig = f->block[0].coeffs + (ff_celt_freq_bands[band] << f->size);
39 float *Y_orig = f->block[1].coeffs + (ff_celt_freq_bands[band] << f->size);
47 if (band <= f->coded_bands - 1) {
48 int curr_balance = f->remaining / FFMIN(3, f->coded_bands - band);
49 b = av_clip_uintp2(FFMIN(f->remaining2 + 1, f->pulses[band] + curr_balance), 14);
53 pvq->quant_band(pvq, f, rc, band, X, NULL, band_size, b / 2, f->blocks, NULL,
56 pvq->quant_band(pvq, f, rc, band, Y, NULL, band_size, b / 2, f->blocks, NULL,
59 pvq->quant_band(pvq, f, rc, band, X, Y, band_size, b, f->blocks, NULL, f->size,
324 /* Pass one - one loop around each band, computing unquant stuff */
608 av_log(s->avctx, AV_LOG_INFO, "Average Intensity Stereo band: %0.1f\n", s->avg_is_band);