Home
last modified time | relevance | path

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

/external/libopus/src/
Dopus_decoder.c119 CELTDecoder *celt_dec; in opus_decoder_init() local
136 celt_dec = (CELTDecoder*)((char*)st+st->celt_dec_offset); in opus_decoder_init()
148 ret = celt_decoder_init(celt_dec, Fs, channels); in opus_decoder_init()
151 celt_decoder_ctl(celt_dec, CELT_SET_SIGNALLING(0)); in opus_decoder_init()
224 CELTDecoder *celt_dec; in opus_decode_frame() local
254 celt_dec = (CELTDecoder*)((char*)st+st->celt_dec_offset); in opus_decode_frame()
491 MUST_SUCCEED(celt_decoder_ctl(celt_dec, CELT_SET_END_BAND(endband))); in opus_decode_frame()
493 MUST_SUCCEED(celt_decoder_ctl(celt_dec, CELT_SET_CHANNELS(st->stream_channels))); in opus_decode_frame()
502 MUST_SUCCEED(celt_decoder_ctl(celt_dec, CELT_SET_START_BAND(0))); in opus_decode_frame()
503 celt_decode_with_ec(celt_dec, data+len, redundancy_bytes, in opus_decode_frame()
[all …]