Home
last modified time | relevance | path

Searched refs:CNG_dec_inst (Results 1 – 8 of 8) sorted by relevance

/external/webrtc/webrtc/modules/audio_coding/codecs/cng/
Dwebrtc_cng.h36 typedef struct WebRtcCngDecInst CNG_dec_inst; typedef
50 int16_t WebRtcCng_CreateDec(CNG_dec_inst** cng_inst);
73 void WebRtcCng_InitDec(CNG_dec_inst* cng_inst);
87 int16_t WebRtcCng_FreeDec(CNG_dec_inst* cng_inst);
123 int16_t WebRtcCng_UpdateSid(CNG_dec_inst* cng_inst, uint8_t* SID,
140 int16_t WebRtcCng_Generate(CNG_dec_inst* cng_inst, int16_t* outData,
157 int16_t WebRtcCng_GetErrorCodeDec(CNG_dec_inst* cng_inst);
Dwebrtc_cng.c106 int16_t WebRtcCng_CreateDec(CNG_dec_inst** cng_inst) { in WebRtcCng_CreateDec()
108 *cng_inst = (CNG_dec_inst*) malloc(sizeof(WebRtcCngDecoder)); in WebRtcCng_CreateDec()
172 void WebRtcCng_InitDec(CNG_dec_inst* cng_inst) { in WebRtcCng_InitDec()
209 int16_t WebRtcCng_FreeDec(CNG_dec_inst* cng_inst) { in WebRtcCng_FreeDec()
414 int16_t WebRtcCng_UpdateSid(CNG_dec_inst* cng_inst, uint8_t* SID, in WebRtcCng_UpdateSid()
476 int16_t WebRtcCng_Generate(CNG_dec_inst* cng_inst, int16_t* outData, in WebRtcCng_Generate()
599 int16_t WebRtcCng_GetErrorCodeDec(CNG_dec_inst* cng_inst) { in WebRtcCng_GetErrorCodeDec()
Dcng_unittest.cc42 CNG_dec_inst* cng_dec_inst_;
/external/webrtc/webrtc/modules/audio_coding/neteq/
Daudio_decoder_impl.h45 CNG_dec_inst* CngDecoderInstance() override;
56 CNG_dec_inst* dec_state_;
Dcomfort_noise.cc40 CNG_dec_inst* cng_inst = cng_decoder->CngDecoderInstance(); in UpdateParameters()
79 CNG_dec_inst* cng_inst = cng_decoder->CngDecoderInstance(); in Generate()
Daudio_decoder_impl.cc60 CNG_dec_inst* AudioDecoderCng::CngDecoderInstance() { in CngDecoderInstance()
/external/webrtc/webrtc/modules/audio_coding/codecs/
Daudio_decoder.h99 virtual CNG_dec_inst* CngDecoderInstance();
Daudio_decoder.cc85 CNG_dec_inst* AudioDecoder::CngDecoderInstance() { in CngDecoderInstance()