forked from FFmpeg/FFmpeg
Setting i to 0 once should do.
Originally committed as revision 13048 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
20c9c8eec8
commit
8f51f55564
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue