Browse Source

Move declaration a little.

Originally committed as revision 13049 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Michael Niedermayer 18 years ago
parent
commit
3df9ce75b5
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavcodec/nellymoserdec.c

+ 2
- 2
libavcodec/nellymoserdec.c View File

@@ -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);
}


Loading…
Cancel
Save