aboutsummaryrefslogtreecommitdiffstats
path: root/Game/Code/lib/ffmpeg/mathematics.pas
diff options
context:
space:
mode:
authortobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c>2008-04-22 15:52:18 +0000
committertobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c>2008-04-22 15:52:18 +0000
commit2a39c305cd831d669ff0790bb1e1eaa577595d62 (patch)
treef39dbb20b06131e1d3919bef533fe3fbdfa562a2 /Game/Code/lib/ffmpeg/mathematics.pas
parent69892748d7d18851c9cd7c49b351bbf86d2e2325 (diff)
downloadusdx-2a39c305cd831d669ff0790bb1e1eaa577595d62.tar.gz
usdx-2a39c305cd831d669ff0790bb1e1eaa577595d62.tar.xz
usdx-2a39c305cd831d669ff0790bb1e1eaa577595d62.zip
ffmpeg update to a newer version
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1029 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'Game/Code/lib/ffmpeg/mathematics.pas')
-rw-r--r--Game/Code/lib/ffmpeg/mathematics.pas8
1 files changed, 4 insertions, 4 deletions
diff --git a/Game/Code/lib/ffmpeg/mathematics.pas b/Game/Code/lib/ffmpeg/mathematics.pas
index ae390e9d..9e9e360c 100644
--- a/Game/Code/lib/ffmpeg/mathematics.pas
+++ b/Game/Code/lib/ffmpeg/mathematics.pas
@@ -21,7 +21,7 @@ For Mac OS X, some modifications were made by The Creative CAT, denoted as CAT
in the source codes *)
(*
- * Revision: 10765, Wed Oct 17 09:37:46 2007 UTC
+ * revision 12498, Wed Mar 19 06:17:43 2008 UTC
*)
unit mathematics;
@@ -54,20 +54,20 @@ type
* a simple a*b/c isn't possible as it can overflow
*)
function av_rescale (a, b, c: int64): int64;
- cdecl; external av__util;
+ cdecl; external av__util; {av_const}
(**
* rescale a 64bit integer with specified rounding.
* a simple a*b/c isn't possible as it can overflow
*)
function av_rescale_rnd (a, b, c: int64; enum: TAVRounding): int64;
- cdecl; external av__util;
+ cdecl; external av__util; {av_const}
(**
* rescale a 64bit integer by 2 rational numbers.
*)
function av_rescale_q (a: int64; bq, cq: TAVRational): int64;
- cdecl; external av__util;
+ cdecl; external av__util; {av_const}
implementation