| Index: webrtc/modules/audio_coding/codecs/isac/fix/source/lattice.c
|
| diff --git a/webrtc/modules/audio_coding/codecs/isac/fix/source/lattice.c b/webrtc/modules/audio_coding/codecs/isac/fix/source/lattice.c
|
| index 3b26a9815ef974e706bf233c7bd92734fa581cb3..7fcb9e3b7b8e4b6ce80add7e681f29b1e5b0dd6c 100644
|
| --- a/webrtc/modules/audio_coding/codecs/isac/fix/source/lattice.c
|
| +++ b/webrtc/modules/audio_coding/codecs/isac/fix/source/lattice.c
|
| @@ -279,7 +279,8 @@ void WebRtcIsacfix_NormLatticeFilterAr(int16_t orderCoef,
|
| ARfQ0vec[i] = (int16_t)WebRtcSpl_SatW32ToW16(tmp32); // Q0
|
| }
|
|
|
| - for (i=orderCoef;i>0;i--) //get the state of f&g for the first input, for all orders
|
| + // Get the state of f & g for the first input, for all orders.
|
| + for (i = orderCoef; i > 0; i--)
|
| {
|
| tmp32 = (cthQ15[i - 1] * ARfQ0vec[0] - sthQ15[i - 1] * stateGQ0[i - 1] +
|
| 16384) >> 15;
|
|
|