Index: webrtc/modules/audio_coding/codecs/ilbc/enhancer_interface.c |
diff --git a/webrtc/modules/audio_coding/codecs/ilbc/enhancer_interface.c b/webrtc/modules/audio_coding/codecs/ilbc/enhancer_interface.c |
index db4b8d4051df65dfe70d264b50930077387e1900..257013c6dfc9a31126873cfc4d61bd5102b90e83 100644 |
--- a/webrtc/modules/audio_coding/codecs/ilbc/enhancer_interface.c |
+++ b/webrtc/modules/audio_coding/codecs/ilbc/enhancer_interface.c |
@@ -110,9 +110,8 @@ int WebRtcIlbcfix_EnhancerInterface( /* (o) Estimated lag in end of in[] */ |
for(iblock = 0; iblock<new_blocks; iblock++){ |
/* references */ |
- i = 60 + iblock * ENH_BLOCKL_HALF; |
- target=downsampled+i; |
- regressor=downsampled+i-10; |
+ target = downsampled + 60 + iblock * ENH_BLOCKL_HALF; |
+ regressor = target - 10; |
/* scaling */ |
max16=WebRtcSpl_MaxAbsValueW16(®ressor[-50], |