Fix build.

Originally committed as revision 15761 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
François Revol 2008-10-31 19:31:36 +00:00
parent ecad9872fb
commit 3a57547e33
1 changed files with 1 additions and 1 deletions

View File

@ -148,7 +148,7 @@ int ff_exp2(uint16_t power)
{
unsigned int result= exp2a[power>>10] + 0x10000;
assert(arg <= 0x7fff);
assert(power <= 0x7fff);
result= (result<<3) + ((result*exp2b[(power>>5)&31])>>17);
return result + ((result*(power&31)*89)>>22);