OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:G722DecInst
(Results
1 - 4
of
4
) sorted by null
/external/webrtc/webrtc/modules/audio_coding/codecs/g722/
g722_interface.h
21
typedef struct WebRtcG722DecInst
G722DecInst
;
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,
audio_decoder_g722.h
16
typedef struct WebRtcG722DecInst
G722DecInst
;
37
G722DecInst
* dec_state_;
65
G722DecInst
* dec_state_left_;
66
G722DecInst
* dec_state_right_;
g722_interface.c
59
int16_t WebRtcG722_CreateDecoder(
G722DecInst
**G722dec_inst)
61
*G722dec_inst=(
G722DecInst
*)malloc(sizeof(G722DecoderState));
69
void WebRtcG722_DecoderInit(
G722DecInst
* inst) {
75
int WebRtcG722_FreeDecoder(
G722DecInst
*G722dec_inst)
81
size_t WebRtcG722_Decode(
G722DecInst
*G722dec_inst,
/external/webrtc/webrtc/modules/audio_coding/codecs/g722/test/
testG722.cc
29
typedef struct WebRtcG722DecInst
G722DecInst
;
50
G722DecInst
*G722dec_inst;
108
WebRtcG722_CreateDecoder((
G722DecInst
**)&G722dec_inst);
110
WebRtcG722_DecoderInit((
G722DecInst
*)G722dec_inst);
146
WebRtcG722_FreeDecoder((
G722DecInst
*)G722dec_inst);
Completed in 493 milliseconds