HomeSort by relevance Sort by last modified time
    Searched refs:G722DecInst (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/g722/include/
g722_interface.h 21 typedef struct WebRtcG722DecInst G722DecInst;
115 int16_t WebRtcG722_CreateDecoder(G722DecInst **G722dec_inst);
131 int16_t WebRtcG722_DecoderInit(G722DecInst *G722dec_inst);
146 int16_t WebRtcG722_FreeDecoder(G722DecInst *G722dec_inst);
170 int16_t WebRtcG722_Decode(G722DecInst *G722dec_inst,
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/g722/
g722_interface.c 59 int16_t WebRtcG722_CreateDecoder(G722DecInst **G722dec_inst)
61 *G722dec_inst=(G722DecInst*)malloc(sizeof(g722_decode_state_t));
69 int16_t WebRtcG722_DecoderInit(G722DecInst *G722dec_inst)
73 G722dec_inst = (G722DecInst *) WebRtc_g722_decode_init(
82 int16_t WebRtcG722_FreeDecoder(G722DecInst *G722dec_inst)
88 int16_t WebRtcG722_Decode(G722DecInst *G722dec_inst,
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/g722/test/
testG722.cc 29 typedef struct WebRtcG722DecInst G722DecInst;
54 G722DecInst *G722dec_inst;
108 WebRtcG722_CreateDecoder((G722DecInst **)&G722dec_inst);
110 WebRtcG722_DecoderInit((G722DecInst *)G722dec_inst);
127 err = WebRtcG722_Decode((G722DecInst *)G722dec_inst, streamdata, stream_len, decoded, speechType);
150 WebRtcG722_FreeDecoder((G722DecInst *)G722dec_inst);
  /external/chromium_org/third_party/webrtc/modules/audio_coding/main/acm2/
acm_g722.h 18 typedef struct WebRtcG722DecInst G722DecInst;
acm_g722.cc 63 G722DecInst* inst; // instance for left channel in case of stereo
64 G722DecInst* inst_right; // instance for right channel in case of stereo
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
audio_decoder_impl.cc 270 WebRtcG722_CreateDecoder(reinterpret_cast<G722DecInst**>(&state_));
274 WebRtcG722_FreeDecoder(static_cast<G722DecInst*>(state_));
281 static_cast<G722DecInst*>(state_),
289 return WebRtcG722_DecoderInit(static_cast<G722DecInst*>(state_));
304 WebRtcG722_CreateDecoder(reinterpret_cast<G722DecInst**>(&state_right_));
309 WebRtcG722_FreeDecoder(static_cast<G722DecInst*>(state_right_));
320 static_cast<G722DecInst*>(state_left_),
326 static_cast<G722DecInst*>(state_right_),
348 int ret = WebRtcG722_DecoderInit(static_cast<G722DecInst*>(state_right_));

Completed in 100 milliseconds