Lines Matching refs:OpusDecoder
55 struct OpusDecoder { struct
82 static void validate_opus_decoder(OpusDecoder *st) in validate_opus_decoder() argument
113 return align(sizeof(OpusDecoder))+silkDecSizeBytes+celtDecSizeBytes; in opus_decoder_get_size()
116 int opus_decoder_init(OpusDecoder *st, opus_int32 Fs, int channels) in opus_decoder_init()
133 st->silk_dec_offset = align(sizeof(OpusDecoder)); in opus_decoder_init()
159 OpusDecoder *opus_decoder_create(opus_int32 Fs, int channels, int *error) in opus_decoder_create()
162 OpusDecoder *st; in opus_decoder_create()
170 st = (OpusDecoder *)opus_alloc(opus_decoder_get_size(channels)); in opus_decoder_create()
220 static int opus_decode_frame(OpusDecoder *st, const unsigned char *data, in opus_decode_frame()
626 int opus_decode_native(OpusDecoder *st, const unsigned char *data, in opus_decode_native()
742 int opus_decode(OpusDecoder *st, const unsigned char *data, in opus_decode()
751 int opus_decode_float(OpusDecoder *st, const unsigned char *data, in opus_decode_float()
788 int opus_decode(OpusDecoder *st, const unsigned char *data, in opus_decode()
823 int opus_decode_float(OpusDecoder *st, const unsigned char *data, in opus_decode_float()
833 int opus_decoder_ctl(OpusDecoder *st, int request, ...) in opus_decoder_ctl()
871 sizeof(OpusDecoder)- in opus_decoder_ctl()
966 void opus_decoder_destroy(OpusDecoder *st) in opus_decoder_destroy()
1028 int opus_decoder_get_nb_samples(const OpusDecoder *dec, in opus_decoder_get_nb_samples()