You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
tests/utils: Remove unneeded L suffix
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -25,7 +25,7 @@
|
||||
|
||||
#define SCALEBITS 8
|
||||
#define ONE_HALF (1 << (SCALEBITS - 1))
|
||||
#define FIX(x) ((int) ((x) * (1L << SCALEBITS) + 0.5))
|
||||
#define FIX(x) ((int) ((x) * (1 << SCALEBITS) + 0.5))
|
||||
|
||||
#define err_if(expr) do { \
|
||||
if (expr) { \
|
||||
|
Reference in New Issue
Block a user