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

/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/pcm16b/
H A Dpcm16b.c28 int16_t WebRtcPcm16b_EncodeW16(int16_t *speechIn16b, argument
33 WEBRTC_SPL_MEMCPY_W16(speechOut16b, speechIn16b, len);
37 speechOut16b[i]=(((uint16_t)speechIn16b[i])>>8)|((((uint16_t)speechIn16b[i])<<8)&0xFF00);
66 int16_t *speechIn16b,
72 WEBRTC_SPL_MEMCPY_W8(speechOut16b, speechIn16b, ((len*sizeof(int16_t)+1)>>1));
78 speechOut16b[i]=(((uint16_t)speechIn16b[i])>>8)|(((uint16_t)(speechIn16b[i]&0xFF))<<8);
65 WebRtcPcm16b_DecodeW16(void *inst, int16_t *speechIn16b, int16_t len, int16_t *speechOut16b, int16_t* speechType) argument

Completed in 166 milliseconds