# HG changeset patch # User michael # Date 1209835705 0 # Node ID 8d6c07df5afdefb9b7371bf400f2286b0f12d846 # Parent ac91a72922e5c63d8e5fd4ad76e081ec4752b362 Move declaration a little. diff -r ac91a72922e5 -r 8d6c07df5afd nellymoserdec.c --- a/nellymoserdec.c Sat May 03 17:26:13 2008 +0000 +++ b/nellymoserdec.c Sat May 03 17:28:25 2008 +0000 @@ -131,10 +131,10 @@ static int sum_bits(short *buf, short shift, short off) { - int b, i, ret = 0; + int i, ret = 0; for (i = 0; i < NELLY_FILL_LEN; i++) { - b = buf[i]-off; + int b = buf[i]-off; b = ((b>>(shift-1))+1)>>1; ret += av_clip(b, 0, NELLY_BIT_CAP); }