aboutsummaryrefslogtreecommitdiffstats
path: root/Game/Code/lib/ffmpeg/rational.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/rational.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/rational.pas')
-rw-r--r--Game/Code/lib/ffmpeg/rational.pas12
1 files changed, 6 insertions, 6 deletions
diff --git a/Game/Code/lib/ffmpeg/rational.pas b/Game/Code/lib/ffmpeg/rational.pas
index 14d28162..73f125ca 100644
--- a/Game/Code/lib/ffmpeg/rational.pas
+++ b/Game/Code/lib/ffmpeg/rational.pas
@@ -23,7 +23,7 @@
* 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 rational;
@@ -88,7 +88,7 @@ function av_reduce(dst_nom: PInteger; dst_den: PInteger; nom: int64; den: int64;
* @return b*c.
*)
function av_mul_q(b: TAVRational; c: TAVRational): TAVRational;
- cdecl; external av__util;
+ cdecl; external av__util; {av_const}
(**
* Divides one rational by another.
@@ -97,7 +97,7 @@ function av_mul_q(b: TAVRational; c: TAVRational): TAVRational;
* @return b/c.
*)
function av_div_q(b: TAVRational; c: TAVRational): TAVRational;
- cdecl; external av__util;
+ cdecl; external av__util; {av_const}
(**
* Adds two rationals.
@@ -106,7 +106,7 @@ function av_div_q(b: TAVRational; c: TAVRational): TAVRational;
* @return b+c.
*)
function av_add_q(b: TAVRational; c: TAVRational): TAVRational;
- cdecl; external av__util;
+ cdecl; external av__util; {av_const}
(**
* Subtracts one rational from another.
@@ -115,7 +115,7 @@ function av_add_q(b: TAVRational; c: TAVRational): TAVRational;
* @return b-c.
*)
function av_sub_q(b: TAVRational; c: TAVRational): TAVRational;
- cdecl; external av__util;
+ cdecl; external av__util; {av_const}
(**
* Converts a double precision floating point number to a rational.
@@ -124,7 +124,7 @@ function av_sub_q(b: TAVRational; c: TAVRational): TAVRational;
* @return (AVRational) d.
*)
function av_d2q(d: double; max: integer): TAVRational;
- cdecl; external av__util;
+ cdecl; external av__util; {av_const}
implementation