Lines Matching refs:celt_dec
104 CELTDecoder *celt_dec; in opus_decoder_init() local
121 celt_dec = (CELTDecoder*)((char*)st+st->celt_dec_offset); in opus_decoder_init()
133 ret = celt_decoder_init(celt_dec, Fs, channels); in opus_decoder_init()
136 celt_decoder_ctl(celt_dec, CELT_SET_SIGNALLING(0)); in opus_decoder_init()
208 CELTDecoder *celt_dec; in opus_decode_frame() local
236 celt_dec = (CELTDecoder*)((char*)st+st->celt_dec_offset); in opus_decode_frame()
438 celt_decoder_ctl(celt_dec, CELT_SET_END_BAND(endband)); in opus_decode_frame()
439 celt_decoder_ctl(celt_dec, CELT_SET_CHANNELS(st->stream_channels)); in opus_decode_frame()
463 celt_decoder_ctl(celt_dec, CELT_SET_START_BAND(0)); in opus_decode_frame()
464 celt_decode_with_ec(celt_dec, data+len, redundancy_bytes, in opus_decode_frame()
466 celt_decoder_ctl(celt_dec, OPUS_GET_FINAL_RANGE(&redundant_rng)); in opus_decode_frame()
470 celt_decoder_ctl(celt_dec, CELT_SET_START_BAND(start_band)); in opus_decode_frame()
477 celt_decoder_ctl(celt_dec, OPUS_RESET_STATE); in opus_decode_frame()
479 celt_ret = celt_decode_with_ec(celt_dec, decode_fec ? NULL : data, in opus_decode_frame()
489 celt_decoder_ctl(celt_dec, CELT_SET_START_BAND(0)); in opus_decode_frame()
490 celt_decode_with_ec(celt_dec, silence, 2, pcm, F2_5, NULL); in opus_decode_frame()
507 celt_decoder_ctl(celt_dec, CELT_GET_MODE(&celt_mode)); in opus_decode_frame()
514 celt_decoder_ctl(celt_dec, OPUS_RESET_STATE); in opus_decode_frame()
515 celt_decoder_ctl(celt_dec, CELT_SET_START_BAND(0)); in opus_decode_frame()
517 celt_decode_with_ec(celt_dec, data+len, redundancy_bytes, redundant_audio, F5, NULL); in opus_decode_frame()
518 celt_decoder_ctl(celt_dec, OPUS_GET_FINAL_RANGE(&redundant_rng)); in opus_decode_frame()
775 CELTDecoder *celt_dec; in opus_decoder_ctl() local
778 celt_dec = (CELTDecoder*)((char*)st+st->celt_dec_offset); in opus_decoder_ctl()
811 celt_decoder_ctl(celt_dec, OPUS_RESET_STATE); in opus_decoder_ctl()
835 celt_decoder_ctl(celt_dec, OPUS_GET_PITCH(value)); in opus_decoder_ctl()