Home
last modified time | relevance | path

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

/external/webrtc/modules/audio_coding/codecs/g722/
Dg722_interface.c17 int16_t WebRtcG722_CreateEncoder(G722EncInst **G722enc_inst) in WebRtcG722_CreateEncoder()
19 *G722enc_inst=(G722EncInst*)malloc(sizeof(G722EncoderState)); in WebRtcG722_CreateEncoder()
27 int16_t WebRtcG722_EncoderInit(G722EncInst *G722enc_inst) in WebRtcG722_EncoderInit()
31 G722enc_inst = (G722EncInst *) WebRtc_g722_encode_init( in WebRtcG722_EncoderInit()
40 int WebRtcG722_FreeEncoder(G722EncInst *G722enc_inst) in WebRtcG722_FreeEncoder()
46 size_t WebRtcG722_Encode(G722EncInst *G722enc_inst, in WebRtcG722_Encode()
Dg722_interface.h20 typedef struct WebRtcG722EncInst G722EncInst; typedef
45 int16_t WebRtcG722_CreateEncoder(G722EncInst** G722enc_inst);
60 int16_t WebRtcG722_EncoderInit(G722EncInst* G722enc_inst);
73 int WebRtcG722_FreeEncoder(G722EncInst* G722enc_inst);
92 size_t WebRtcG722_Encode(G722EncInst* G722enc_inst,
Daudio_encoder_g722.h50 G722EncInst* encoder;
/external/webrtc/modules/audio_coding/codecs/g722/test/
DtestG722.cc27 typedef struct WebRtcG722EncInst G722EncInst; typedef
46 G722EncInst* G722enc_inst; in main()
104 WebRtcG722_CreateEncoder((G722EncInst**)&G722enc_inst); in main()
106 WebRtcG722_EncoderInit((G722EncInst*)G722enc_inst); in main()
122 stream_len = WebRtcG722_Encode((G722EncInst*)G722enc_inst, shortdata, in main()
141 WebRtcG722_FreeEncoder((G722EncInst*)G722enc_inst); in main()