Home
last modified time | relevance | path

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

/external/webrtc/webrtc/modules/audio_coding/codecs/g722/
Dg722_interface.h21 typedef struct WebRtcG722DecInst G722DecInst; typedef
114 int16_t WebRtcG722_CreateDecoder(G722DecInst **G722dec_inst);
125 void WebRtcG722_DecoderInit(G722DecInst* inst);
139 int WebRtcG722_FreeDecoder(G722DecInst *G722dec_inst);
162 size_t WebRtcG722_Decode(G722DecInst *G722dec_inst,
Dg722_interface.c59 int16_t WebRtcG722_CreateDecoder(G722DecInst **G722dec_inst) in WebRtcG722_CreateDecoder()
61 *G722dec_inst=(G722DecInst*)malloc(sizeof(G722DecoderState)); in WebRtcG722_CreateDecoder()
69 void WebRtcG722_DecoderInit(G722DecInst* inst) { in WebRtcG722_DecoderInit()
75 int WebRtcG722_FreeDecoder(G722DecInst *G722dec_inst) in WebRtcG722_FreeDecoder()
81 size_t WebRtcG722_Decode(G722DecInst *G722dec_inst, in WebRtcG722_Decode()
Daudio_decoder_g722.h16 typedef struct WebRtcG722DecInst G722DecInst; typedef
37 G722DecInst* dec_state_;
65 G722DecInst* dec_state_left_;
66 G722DecInst* dec_state_right_;
/external/webrtc/webrtc/modules/audio_coding/codecs/g722/test/
DtestG722.cc29 typedef struct WebRtcG722DecInst G722DecInst; typedef
50 G722DecInst *G722dec_inst; in main()
108 WebRtcG722_CreateDecoder((G722DecInst **)&G722dec_inst); in main()
110 WebRtcG722_DecoderInit((G722DecInst *)G722dec_inst); in main()
146 WebRtcG722_FreeDecoder((G722DecInst *)G722dec_inst); in main()