Commit 662f8ad7 authored by michael's avatar michael

Move declaration a little.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13049 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 5fb22d9e
......@@ -131,10 +131,10 @@ static void overlap_and_window(NellyMoserDecodeContext *s, float *state, float *
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);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment