Fix 2 bit allocation bugs. One fix enables using a higher bandwidth code. The other fixes an issue with floorcod=7.

Originally committed as revision 6156 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Justin Ruggles 2006-09-03 15:59:08 +00:00
parent 7494517673
commit 1df051e197
2 changed files with 2 additions and 2 deletions

View File

@ -804,7 +804,7 @@ void ac3_common_init(void)
for(j=0;j<v;j++) masktab[k++]=i;
l += v;
}
bndtab[50] = 0;
bndtab[50] = l;
}

View File

@ -160,7 +160,7 @@ static const uint16_t dbkneetab[4]= {
0x000, 0x700, 0x900, 0xb00,
};
static const uint16_t floortab[8]= {
static const int16_t floortab[8]= {
0x2f0, 0x2b0, 0x270, 0x230, 0x1f0, 0x170, 0x0f0, 0xf800,
};