diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2007-07-15 01:32:04 +0000 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2007-07-15 01:32:04 +0000 |
commit | a39532b0d9790d80d0a949b511a374465b64511e (patch) | |
tree | 16fd09ed0cede53b635543fb7b159261709d70aa | |
parent | cc2a8443eb0501d5be2656a1a0885d96c92400b9 (diff) | |
download | ffmpeg-a39532b0d9790d80d0a949b511a374465b64511e.tar.gz |
ABS -> FFABS
Originally committed as revision 9680 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/ac3dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ac3dec.c b/libavcodec/ac3dec.c index 7314272d06..e858f07569 100644 --- a/libavcodec/ac3dec.c +++ b/libavcodec/ac3dec.c @@ -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]); |