Commit 8f51f555 authored by Michael Niedermayer's avatar Michael Niedermayer

Setting i to 0 once should do.

Originally committed as revision 13048 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 20c9c8ee
...@@ -131,7 +131,7 @@ static void overlap_and_window(NellyMoserDecodeContext *s, float *state, float * ...@@ -131,7 +131,7 @@ static void overlap_and_window(NellyMoserDecodeContext *s, float *state, float *
static int sum_bits(short *buf, short shift, short off) static int sum_bits(short *buf, short shift, short off)
{ {
int b, i = 0, ret = 0; int b, i, ret = 0;
for (i = 0; i < NELLY_FILL_LEN; i++) { for (i = 0; i < NELLY_FILL_LEN; i++) {
b = buf[i]-off; b = buf[i]-off;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment