[FFmpeg-cvslog] r15761 - trunk/libavcodec/celp_math.c

mmu_man subversion
Fri Oct 31 20:31:36 CET 2008


Author: mmu_man
Date: Fri Oct 31 20:31:36 2008
New Revision: 15761

Log:
Fix build.


Modified:
   trunk/libavcodec/celp_math.c

Modified: trunk/libavcodec/celp_math.c
==============================================================================
--- trunk/libavcodec/celp_math.c	(original)
+++ trunk/libavcodec/celp_math.c	Fri Oct 31 20:31:36 2008
@@ -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);




More information about the ffmpeg-cvslog mailing list