Home
last modified time | relevance | path

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

/external/webrtc/webrtc/modules/audio_coding/codecs/opus/
Dopus_interface.h24 typedef struct WebRtcOpusDecInst OpusDecInst; typedef
198 int16_t WebRtcOpus_DecoderCreate(OpusDecInst** inst, size_t channels);
199 int16_t WebRtcOpus_DecoderFree(OpusDecInst* inst);
206 size_t WebRtcOpus_DecoderChannels(OpusDecInst* inst);
216 void WebRtcOpus_DecoderInit(OpusDecInst* inst);
238 int WebRtcOpus_Decode(OpusDecInst* inst, const uint8_t* encoded,
256 int WebRtcOpus_DecodePlc(OpusDecInst* inst, int16_t* decoded,
277 int WebRtcOpus_DecodeFec(OpusDecInst* inst, const uint8_t* encoded,
293 int WebRtcOpus_DurationEst(OpusDecInst* inst,
309 int WebRtcOpus_PlcDuration(OpusDecInst* inst);
Dopus_interface.c251 int16_t WebRtcOpus_DecoderCreate(OpusDecInst** inst, size_t channels) { in WebRtcOpus_DecoderCreate()
253 OpusDecInst* state; in WebRtcOpus_DecoderCreate()
257 state = (OpusDecInst*) calloc(1, sizeof(OpusDecInst)); in WebRtcOpus_DecoderCreate()
282 int16_t WebRtcOpus_DecoderFree(OpusDecInst* inst) { in WebRtcOpus_DecoderFree()
292 size_t WebRtcOpus_DecoderChannels(OpusDecInst* inst) { in WebRtcOpus_DecoderChannels()
296 void WebRtcOpus_DecoderInit(OpusDecInst* inst) { in WebRtcOpus_DecoderInit()
302 static int16_t DetermineAudioType(OpusDecInst* inst, size_t encoded_bytes) { in DetermineAudioType()
319 static int DecodeNative(OpusDecInst* inst, const uint8_t* encoded, in DecodeNative()
333 int WebRtcOpus_Decode(OpusDecInst* inst, const uint8_t* encoded, in WebRtcOpus_Decode()
360 int WebRtcOpus_DecodePlc(OpusDecInst* inst, int16_t* decoded, in WebRtcOpus_DecodePlc()
[all …]
Daudio_decoder_opus.h44 OpusDecInst* dec_state_;