Searched defs:g722_data (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/g722/
H A Dg722_decode.c193 const uint8_t g722_data[], int len)
275 s->in_buffer |= (g722_data[j++] << s->in_bits);
284 code = g722_data[j++];
192 WebRtc_g722_decode(g722_decode_state_t *s, int16_t amp[], const uint8_t g722_data[], int len) argument
H A Dg722_encode.c205 int WebRtc_g722_encode(g722_encode_state_t *s, uint8_t g722_data[], argument
421 g722_data[g722_bytes++] = (uint8_t) (s->out_buffer & 0xFF);
428 g722_data[g722_bytes++] = (uint8_t) code;

Completed in 76 milliseconds