ABS -> FFABS

Originally committed as revision 9680 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Justin Ruggles 2007-07-15 01:32:04 +00:00
parent cc2a8443eb
commit a39532b0d9
1 changed files with 1 additions and 1 deletions

View File

@ -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]);