From 3a57547e33cb859e0989da2acd553ebdf84e48ef Mon Sep 17 00:00:00 2001 From: François Revol Date: Fri, 31 Oct 2008 19:31:36 +0000 Subject: Fix build. Originally committed as revision 15761 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/celp_math.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/celp_math.c') diff --git a/libavcodec/celp_math.c b/libavcodec/celp_math.c index df05917d20..09111da819 100644 --- a/libavcodec/celp_math.c +++ b/libavcodec/celp_math.c @@ -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); -- cgit v1.2.3