From 2a39c305cd831d669ff0790bb1e1eaa577595d62 Mon Sep 17 00:00:00 2001 From: tobigun Date: Tue, 22 Apr 2008 15:52:18 +0000 Subject: ffmpeg update to a newer version git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1029 b956fd51-792f-4845-bead-9b4dfca2ff2c --- Game/Code/lib/ffmpeg/rational.pas | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'Game/Code/lib/ffmpeg/rational.pas') 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 -- cgit v1.2.3