Commit 3a57547e authored by François Revol's avatar François Revol

Fix build.

Originally committed as revision 15761 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent ecad9872
......@@ -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);
......
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