Searched refs:maxband (Results 1 – 3 of 3) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
D | mpc8.c | 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() [all …]
|
D | mpc.c | 56 void ff_mpc_dequantize_and_synth(MPCContext * c, int maxband, int16_t **out, in ff_mpc_dequantize_and_synth() argument 67 for(i = 0; i <= maxband; i++, off += SAMPLES_PER_BAND){ in ff_mpc_dequantize_and_synth()
|
D | mpc.h | 74 void ff_mpc_dequantize_and_synth(MPCContext *c, int maxband, int16_t **out, int channels);
|