Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / webrtc / modules / audio_coding / codecs / ilbc / lsp_to_lsf.c
index 7afa5af..81e814f 100644 (file)
@@ -71,7 +71,7 @@ void WebRtcIlbcfix_Lsp2Lsf(
     tmp = (int16_t)WEBRTC_SPL_MUL_16_16_RSFT(WebRtcIlbcfix_kAcosDerivative[k],diff, 11);
 
     /* freq in Q16 */
-    freq = (int16_t)WEBRTC_SPL_LSHIFT_W16(k,9)+tmp;
+    freq = (k << 9) + tmp;
 
     /* lsf = freq*2*pi */
     (*lsfPtr) = (int16_t)(((int32_t)freq*25736)>>15);