[FFmpeg-cvslog] r9680 - trunk/libavcodec/ac3dec.c

jbr subversion
Sun Jul 15 03:32:04 CEST 2007


Author: jbr
Date: Sun Jul 15 03:32:04 2007
New Revision: 9680

Log:
ABS -> FFABS

Modified:
   trunk/libavcodec/ac3dec.c

Modified: trunk/libavcodec/ac3dec.c
==============================================================================
--- trunk/libavcodec/ac3dec.c	(original)
+++ trunk/libavcodec/ac3dec.c	Sun Jul 15 03:32:04 2007
@@ -555,7 +555,7 @@ static inline int logadd(int a, int b)
     int c = a - b;
     int address;
 
-    address = FFMIN((ABS(c) >> 1), 255);
+    address = FFMIN((FFABS(c) >> 1), 255);
 
     if (c >= 0)
         return (a + ff_ac3_latab[address]);




More information about the ffmpeg-cvslog mailing list