This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
ABS -> FFABS
Originally committed as revision 9680 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Justin Ruggles
18 years ago
parent
cc2a8443eb
commit
a39532b0d9
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavcodec/ac3dec.c
+ 1
- 1
libavcodec/ac3dec.c
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((
FF
ABS(c) >> 1), 255);
if (c >= 0)
return (a + ff_ac3_latab[address]);
Write
Preview
Loading…
Cancel
Save