Lines Matching refs:maxband
191 int maxband, keyframe; in mpc8_decode_frame() local
206 maxband = mpc8_get_mod_golomb(gb, c->maxbands + 1); in mpc8_decode_frame()
208 maxband = c->last_max_band + get_vlc2(gb, band_vlc.table, MPC8_BANDS_BITS, 2); in mpc8_decode_frame()
209 if(maxband > 32) maxband -= 33; in mpc8_decode_frame()
217 if(maxband > c->maxbands + 1) { in mpc8_decode_frame()
218 av_log(avctx, AV_LOG_ERROR, "maxband %d too large\n",maxband); in mpc8_decode_frame()
221 c->last_max_band = maxband; in mpc8_decode_frame()
224 if(maxband){ in mpc8_decode_frame()
226 for(i = maxband - 1; i >= 0; i--){ in mpc8_decode_frame()
237 for(i = 0; i < maxband; i++) in mpc8_decode_frame()
242 for(i = maxband - 1; i >= 0; i--) in mpc8_decode_frame()
249 for(i = maxband; i < c->maxbands; i++) in mpc8_decode_frame()
257 for(i = 0; i < maxband; i++){ in mpc8_decode_frame()
268 for(i = 0; i < maxband; i++){ in mpc8_decode_frame()
294 for(i = 0, off = 0; i < maxband; i++, off += SAMPLES_PER_BAND){ in mpc8_decode_frame()
359 ff_mpc_dequantize_and_synth(c, maxband - 1, in mpc8_decode_frame()