HomeSort by relevance Sort by last modified time
    Searched defs:OpusDecoder (Results 1 - 2 of 2) sorted by null

  /external/libopus/include/
opus.h 340 * OpusDecoder *dec;
354 * OpusDecoder *dec;
399 typedef struct OpusDecoder 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 *st
    [all...]
  /external/libopus/src/
opus_decoder.c 55 struct OpusDecoder {
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 *st, const unsigned char *data
    [all...]

Completed in 76 milliseconds