Home
last modified time | relevance | path

Searched refs:G722DecInst (Results 1 – 4 of 4) sorted by relevance

/external/webrtc/modules/audio_coding/codecs/g722/
Dg722_interface.h21 typedef struct WebRtcG722DecInst G722DecInst; typedef
108 int16_t WebRtcG722_CreateDecoder(G722DecInst** G722dec_inst);
119 void WebRtcG722_DecoderInit(G722DecInst* inst);
133 int WebRtcG722_FreeDecoder(G722DecInst* G722dec_inst);
155 size_t WebRtcG722_Decode(G722DecInst* G722dec_inst,
Dg722_interface.c57 int16_t WebRtcG722_CreateDecoder(G722DecInst **G722dec_inst) in WebRtcG722_CreateDecoder()
59 *G722dec_inst=(G722DecInst*)malloc(sizeof(G722DecoderState)); in WebRtcG722_CreateDecoder()
67 void WebRtcG722_DecoderInit(G722DecInst* inst) { in WebRtcG722_DecoderInit()
73 int WebRtcG722_FreeDecoder(G722DecInst *G722dec_inst) in WebRtcG722_FreeDecoder()
79 size_t WebRtcG722_Decode(G722DecInst *G722dec_inst, in WebRtcG722_Decode()
Daudio_decoder_g722.h17 typedef struct WebRtcG722DecInst G722DecInst; typedef
41 G722DecInst* dec_state_;
72 G722DecInst* dec_state_left_;
73 G722DecInst* dec_state_right_;
/external/webrtc/modules/audio_coding/codecs/g722/test/
DtestG722.cc28 typedef struct WebRtcG722DecInst G722DecInst; typedef
47 G722DecInst* G722dec_inst; in main()
105 WebRtcG722_CreateDecoder((G722DecInst**)&G722dec_inst); in main()
107 WebRtcG722_DecoderInit((G722DecInst*)G722dec_inst); in main()
142 WebRtcG722_FreeDecoder((G722DecInst*)G722dec_inst); in main()