Searched refs:maxbands (Results 1 – 3 of 3) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
D | mpc7.c | 100 c->maxbands = get_bits(&gb, 6); in mpc7_decode_init() 101 if(c->maxbands >= BANDS){ in mpc7_decode_init() 102 av_log(avctx, AV_LOG_ERROR, "Too many bands: %i\n", c->maxbands); in mpc7_decode_init() 109 c->IS, c->MSS, c->gapless, c->lastframelen, c->maxbands); in mpc7_decode_init() 187 memset(bands, 0, sizeof(*bands) * (c->maxbands + 1)); in mpc7_decode_frame() 220 for(i = 0; i <= c->maxbands; i++){ in mpc7_decode_frame()
|
D | mpc8.c | 158 c->maxbands = get_bits(&gb, 5) + 1; in mpc8_decode_init() 159 if (c->maxbands >= BANDS) { in mpc8_decode_init() 160 av_log(avctx,AV_LOG_ERROR, "maxbands %d too high\n", c->maxbands); in mpc8_decode_init() 206 maxband = mpc8_get_mod_golomb(gb, c->maxbands + 1); in mpc8_decode_frame() 217 if(maxband > c->maxbands + 1) { in mpc8_decode_frame() 249 for(i = maxband; i < c->maxbands; i++) in mpc8_decode_frame()
|
D | mpc.h | 58 int maxbands, last_max_band; member
|