mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2026-06-19 19:03:00 +02:00
Setting i to 0 once should do.
Originally committed as revision 13048 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user