Lines Matching refs:OpusDecoder
55 struct OpusDecoder { struct
98 return align(sizeof(OpusDecoder))+silkDecSizeBytes+celtDecSizeBytes; in opus_decoder_get_size() argument
101 int opus_decoder_init(OpusDecoder *st, opus_int32 Fs, int channels) in opus_decoder_init()
118 st->silk_dec_offset = align(sizeof(OpusDecoder)); in opus_decoder_init()
143 OpusDecoder *opus_decoder_create(opus_int32 Fs, int channels, int *error) in opus_decoder_create()
146 OpusDecoder *st; in opus_decoder_create()
154 st = (OpusDecoder *)opus_alloc(opus_decoder_get_size(channels)); in opus_decoder_create()
204 static int opus_decode_frame(OpusDecoder *st, const unsigned char *data, in opus_decode_frame()
584 int opus_decode_native(OpusDecoder *st, const unsigned char *data, in opus_decode_native()
699 int opus_decode(OpusDecoder *st, const unsigned char *data, in opus_decode()
708 int opus_decode_float(OpusDecoder *st, const unsigned char *data, in opus_decode_float()
735 int opus_decode(OpusDecoder *st, const unsigned char *data, in opus_decode()
760 int opus_decode_float(OpusDecoder *st, const unsigned char *data, in opus_decode_float()
770 int opus_decoder_ctl(OpusDecoder *st, int request, ...) in opus_decoder_ctl()
808 sizeof(OpusDecoder)- in opus_decoder_ctl()
883 void opus_decoder_destroy(OpusDecoder *st) in opus_decoder_destroy()
966 int opus_decoder_get_nb_samples(const OpusDecoder *dec, in opus_decoder_get_nb_samples()