[FFmpeg-cvslog] r13048 - trunk/libavcodec/nellymoserdec.c
michael
subversion
Sat May 3 19:26:13 CEST 2008
Author: michael
Date: Sat May 3 19:26:13 2008
New Revision: 13048
Log:
Setting i to 0 once should do.
Modified:
trunk/libavcodec/nellymoserdec.c
Modified: trunk/libavcodec/nellymoserdec.c
==============================================================================
--- trunk/libavcodec/nellymoserdec.c (original)
+++ trunk/libavcodec/nellymoserdec.c Sat May 3 19:26:13 2008
@@ -131,7 +131,7 @@ static void overlap_and_window(NellyMose
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;
More information about the ffmpeg-cvslog
mailing list