Mercurial > libavcodec.hg
changeset 6741:8d6c07df5afd libavcodec
Move declaration a little.
author | michael |
---|---|
date | Sat, 03 May 2008 17:28:25 +0000 |
parents | ac91a72922e5 |
children | 81ec037b6151 |
files | nellymoserdec.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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); }