Commit 5fb22d9e authored by michael's avatar michael

Setting i to 0 once should do.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13048 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent ae2df26b
......@@ -131,7 +131,7 @@ static void overlap_and_window(NellyMoserDecodeContext *s, float *state, float *
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++) {
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