Skip to content

Commit

Permalink
WebRtc_Word -> stdint in audio_coding/cng/
Browse files Browse the repository at this point in the history
BUG=

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

git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@3697 4adac7df-926f-26a2-2b94-8c16560cd09d
  • Loading branch information
[email protected] committed Mar 21, 2013
1 parent 0f2782f commit e49f252
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions modules/audio_coding/codecs/cng/cng_helpfuns.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit e49f252

Please sign in to comment.