Browse code

Fix build.

Originally committed as revision 15761 to svn://svn.ffmpeg.org/ffmpeg/trunk

François Revol authored on 2008/11/01 04:31:36
Showing 1 changed files
... ...
@@ -148,7 +148,7 @@ int ff_exp2(uint16_t power)
148 148
 {
149 149
     unsigned int result= exp2a[power>>10] + 0x10000;
150 150
 
151
-    assert(arg <= 0x7fff);
151
+    assert(power <= 0x7fff);
152 152
 
153 153
     result= (result<<3) + ((result*exp2b[(power>>5)&31])>>17);
154 154
     return result + ((result*(power&31)*89)>>22);