OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:g722dec_inst
(Results
1 - 3
of
3
) sorted by null
/external/webrtc/webrtc/modules/audio_coding/codecs/g722/
g722_interface.c
59
int16_t WebRtcG722_CreateDecoder(G722DecInst **
G722dec_inst
)
61
*
G722dec_inst
=(G722DecInst*)malloc(sizeof(G722DecoderState));
62
if (*
G722dec_inst
!=NULL) {
75
int WebRtcG722_FreeDecoder(G722DecInst *
G722dec_inst
)
78
return WebRtc_g722_decode_release((G722DecoderState*)
G722dec_inst
);
81
size_t WebRtcG722_Decode(G722DecInst *
G722dec_inst
,
89
return WebRtc_g722_decode((G722DecoderState*)
G722dec_inst
, decoded,
g722_interface.h
109
* -
G722dec_inst
: G722 instance for decoder
114
int16_t WebRtcG722_CreateDecoder(G722DecInst **
G722dec_inst
);
133
* -
G722dec_inst
: G722 instance for decoder
139
int WebRtcG722_FreeDecoder(G722DecInst *
G722dec_inst
);
149
* -
G722dec_inst
: G722 instance, i.e. the user that should decode
162
size_t WebRtcG722_Decode(G722DecInst *
G722dec_inst
,
/external/webrtc/webrtc/modules/audio_coding/codecs/g722/test/
testG722.cc
50
G722DecInst *
G722dec_inst
;
108
WebRtcG722_CreateDecoder((G722DecInst **)&
G722dec_inst
);
110
WebRtcG722_DecoderInit((G722DecInst *)
G722dec_inst
);
127
WebRtcG722_Decode(
G722dec_inst
, streamdata, stream_len, decoded,
146
WebRtcG722_FreeDecoder((G722DecInst *)
G722dec_inst
);
Completed in 108 milliseconds