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/mathematics.pas | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Game/Code/lib/ffmpeg/mathematics.pas') 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 -- cgit v1.2.3