diff options
Diffstat (limited to '')
-rw-r--r-- | src/lib/ffmpeg7/libavutil/mathematics.pas (renamed from src/lib/ffmpeg7/mathematics.pas) | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/src/lib/ffmpeg7/mathematics.pas b/src/lib/ffmpeg7/libavutil/mathematics.pas index 20ee21c2..85c7a3ac 100644 --- a/src/lib/ffmpeg7/mathematics.pas +++ b/src/lib/ffmpeg7/libavutil/mathematics.pas @@ -26,23 +26,6 @@ * *) -unit mathematics; - -{$IFDEF FPC} - {$MODE DELPHI } - {$PACKENUM 4} (* use 4-byte enums *) - {$PACKRECORDS C} (* C/C++-compatible record packing *) -{$ELSE} - {$MINENUMSIZE 4} (* use 4-byte enums *) -{$ENDIF} - -interface - -uses - ctypes, - rational, - UConfig; - const M_E = 2.7182818284590452354; // e M_LN2 = 0.69314718055994530942; // log_e 2 @@ -113,7 +96,3 @@ function av_compare_ts(ts_a: cint64; tb_a: TAVRational; ts_b: cint64; tb_b: TAVR *) function av_compare_mod(a: cuint64; b: cuint64; modVar: cuint64): cint64; cdecl; external av__util; - -implementation - -end. |