commit | 78ea06dd34a584acad4a2cf2142de218cb06eef4 | [log] [tgz] |
---|---|---|
author | bjornv@webrtc.org <bjornv@webrtc.org> | Tue Oct 21 07:17:24 2014 +0000 |
committer | bjornv@webrtc.org <bjornv@webrtc.org> | Tue Oct 21 07:17:24 2014 +0000 |
tree | 221c17de9bb2940ee37c426183b300e0e9698943 | |
parent | 913f7b8d5eae7a234fd8c0a26c90dc71fbea9133 [diff] [blame] |
audio_coding/codecs/ilbc: Replaced macro WEBRTC_SPL_RSHIFT_W32 with >> Removed usage of trivial macro. BUG=3348,3353 TESTED=locally on linux and trybots R=henrik.lundin@webrtc.org, kwiberg@webrtc.org Review URL: https://webrtc-codereview.appspot.com/29789004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@7480 4adac7df-926f-26a2-2b94-8c16560cd09d
diff --git a/webrtc/modules/audio_coding/codecs/ilbc/refiner.c b/webrtc/modules/audio_coding/codecs/ilbc/refiner.c index fed3394..e96ae26 100644 --- a/webrtc/modules/audio_coding/codecs/ilbc/refiner.c +++ b/webrtc/modules/audio_coding/codecs/ilbc/refiner.c
@@ -81,7 +81,7 @@ if (scalefact>0) { for (i=0;i<corrdim;i++) { - corrVec[i]=(int16_t)WEBRTC_SPL_RSHIFT_W32(corrVecTemp[i], scalefact); + corrVec[i] = (int16_t)(corrVecTemp[i] >> scalefact); } } else { for (i=0;i<corrdim;i++) {