Home
last modified time | relevance | path

Searched refs:scf_idx (Results 1 – 4 of 4) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dmpc7.c244 bands[i].scf_idx[ch][2] = c->oldDSCF[ch][i]; in mpc7_decode_frame()
245 bands[i].scf_idx[ch][0] = get_scale_idx(&gb, bands[i].scf_idx[ch][2]); in mpc7_decode_frame()
248 bands[i].scf_idx[ch][1] = get_scale_idx(&gb, bands[i].scf_idx[ch][0]); in mpc7_decode_frame()
249 bands[i].scf_idx[ch][2] = get_scale_idx(&gb, bands[i].scf_idx[ch][1]); in mpc7_decode_frame()
252 bands[i].scf_idx[ch][1] = get_scale_idx(&gb, bands[i].scf_idx[ch][0]); in mpc7_decode_frame()
253 bands[i].scf_idx[ch][2] = bands[i].scf_idx[ch][1]; in mpc7_decode_frame()
256 bands[i].scf_idx[ch][1] = bands[i].scf_idx[ch][0]; in mpc7_decode_frame()
257 bands[i].scf_idx[ch][2] = get_scale_idx(&gb, bands[i].scf_idx[ch][1]); in mpc7_decode_frame()
260 bands[i].scf_idx[ch][2] = bands[i].scf_idx[ch][1] = bands[i].scf_idx[ch][0]; in mpc7_decode_frame()
263 c->oldDSCF[ch][i] = bands[i].scf_idx[ch][2]; in mpc7_decode_frame()
Dmpc.c71 mul = (mpc_CC+1)[bands[i].res[ch]] * mpc_SCF[bands[i].scf_idx[ch][0] & 0xFF]; in ff_mpc_dequantize_and_synth()
74 mul = (mpc_CC+1)[bands[i].res[ch]] * mpc_SCF[bands[i].scf_idx[ch][1] & 0xFF]; in ff_mpc_dequantize_and_synth()
77 mul = (mpc_CC+1)[bands[i].res[ch]] * mpc_SCF[bands[i].scf_idx[ch][2] & 0xFF]; in ff_mpc_dequantize_and_synth()
Dmpc8.c273 bands[i].scf_idx[ch][0] = get_bits(gb, 7) - 6; in mpc8_decode_frame()
279 bands[i].scf_idx[ch][0] = ((bands[i].scf_idx[ch][2] + t - 25) & 0x7F) - 6; in mpc8_decode_frame()
283 bands[i].scf_idx[ch][j + 1] = bands[i].scf_idx[ch][j]; in mpc8_decode_frame()
288 bands[i].scf_idx[ch][j + 1] = ((bands[i].scf_idx[ch][j] + t - 25) & 0x7F) - 6; in mpc8_decode_frame()
Dmpc.h49 int scf_idx[2][3]; member