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
This commit is contained in:
@ -65,7 +65,7 @@ void WebRtcIlbcfix_HpInput(
|
||||
tmpW32b = WEBRTC_SPL_SAT((int32_t)268435455, tmpW32b, (int32_t)-268435456);
|
||||
|
||||
/* Convert back to Q0 and multiply with 0.5 */
|
||||
signal[i] = (int16_t)WEBRTC_SPL_RSHIFT_W32(tmpW32b, 13);
|
||||
signal[i] = (int16_t)(tmpW32b >> 13);
|
||||
|
||||
/* Update state (filtered part) */
|
||||
y[2] = y[0];
|
||||
|
||||
Reference in New Issue
Block a user