Searched defs:OpusDecoder (Results 1 - 2 of 2) sorted by relevance

/external/libopus/include/
H A Dopus.h340 * OpusDecoder *dec;
354 * OpusDecoder *dec;
399 typedef struct OpusDecoder OpusDecoder; typedef in typeref:struct:OpusDecoder
401 /** Gets the size of an <code>OpusDecoder</code> structure.
423 OPUS_EXPORT OPUS_WARN_UNUSED_RESULT OpusDecoder *opus_decoder_create(
433 * @param [in] st <tt>OpusDecoder*</tt>: Decoder state.
441 OpusDecoder *st,
447 * @param [in] st <tt>OpusDecoder*</tt>: Decoder state
463 OpusDecoder *s
[all...]
/external/libopus/src/
H A Dopus_decoder.c55 struct OpusDecoder { struct
98 return align(sizeof(OpusDecoder))+silkDecSizeBytes+celtDecSizeBytes;
101 int opus_decoder_init(OpusDecoder *st, opus_int32 Fs, int channels)
118 st->silk_dec_offset = align(sizeof(OpusDecoder));
143 OpusDecoder *opus_decoder_create(opus_int32 Fs, int channels, int *error)
146 OpusDecoder *st;
154 st = (OpusDecoder *)opus_alloc(opus_decoder_get_size(channels));
204 static int opus_decode_frame(OpusDecoder *st, const unsigned char *data,
584 int opus_decode_native(OpusDecoder *st, const unsigned char *data,
699 int opus_decode(OpusDecoder *s
[all...]

Completed in 121 milliseconds