Commit a39532b0 authored by Justin Ruggles's avatar Justin Ruggles

ABS -> FFABS

Originally committed as revision 9680 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent cc2a8443
......@@ -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]);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment