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
tests/utils: Remove unneeded L suffix
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.6
Michael Niedermayer
10 years ago
parent
4531e2c489
commit
36adfa3274
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
tests/utils.c
+ 1
- 1
tests/utils.c
View File
@@ -25,7 +25,7 @@
#define SCALEBITS 8
#define ONE_HALF (1 << (SCALEBITS - 1))
#define FIX(x) ((int) ((x) * (1
L
<< SCALEBITS) + 0.5))
#define FIX(x) ((int) ((x) * (1 << SCALEBITS) + 0.5))
#define err_if(expr) do { \
if (expr) { \
Write
Preview
Loading…
Cancel
Save