WebRtc_Word -> stdint in audio_coding/cng/

BUG=

Review URL: https://webrtc-codereview.appspot.com/1222004

git-svn-id: http://webrtc.googlecode.com/svn/trunk@3697 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
pbos@webrtc.org 2013-03-21 11:28:42 +00:00
parent af33b62a72
commit 01b507a406

View File

@ -36,9 +36,7 @@ void WebRtcCng_K2a16(int16_t* k, int useOrder, int16_t* a) {
any[m + 1] = (*kptr + 4) >> 3;
for (i = 0; i < m; i++) {
*anyptr++ = (*aptr++) +
(WebRtc_Word16)(
(((WebRtc_Word32)(*aptr2--) * (WebRtc_Word32) * kptr) + 16384)
>> 15);
(int16_t)((((int32_t)(*aptr2--) * (int32_t) * kptr) + 16384) >> 15);
}
aptr = a;