From b32b00f40a05e57c1fd23cd27126c78bad75b7a6 Mon Sep 17 00:00:00 2001 From: k-m_schindler Date: Thu, 10 May 2012 10:53:35 +0000 Subject: minimal type adjustments. This should make no difference. git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@2879 b956fd51-792f-4845-bead-9b4dfca2ff2c --- src/media/UMediaCore_FFmpeg.pas | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/media') diff --git a/src/media/UMediaCore_FFmpeg.pas b/src/media/UMediaCore_FFmpeg.pas index 865c9fa9..064d1ad7 100644 --- a/src/media/UMediaCore_FFmpeg.pas +++ b/src/media/UMediaCore_FFmpeg.pas @@ -103,10 +103,10 @@ uses SysUtils, UConfig; -function FFmpegStreamOpen(h: PURLContext; filename: PChar; flags: cint): cint; cdecl; forward; +function FFmpegStreamOpen(h: PURLContext; filename: PAnsiChar; flags: cint): cint; cdecl; forward; function FFmpegStreamRead(h: PURLContext; buf: PByteArray; size: cint): cint; cdecl; forward; function FFmpegStreamWrite(h: PURLContext; buf: PByteArray; size: cint): cint; cdecl; forward; -function FFmpegStreamSeek(h: PURLContext; pos: int64; whence: cint): int64; cdecl; forward; +function FFmpegStreamSeek(h: PURLContext; pos: cint64; whence: cint): cint64; cdecl; forward; function FFmpegStreamClose(h: PURLContext): cint; cdecl; forward; const @@ -358,7 +358,7 @@ end; * http://www.mail-archive.com/libav-user@mplayerhq.hu/msg02460.html *} -function FFmpegStreamOpen(h: PURLContext; filename: PChar; flags: cint): cint; cdecl; +function FFmpegStreamOpen(h: PURLContext; filename: PAnsiChar; flags: cint): cint; cdecl; var Stream: TStream; Mode: word; @@ -423,7 +423,7 @@ begin end; end; -function FFmpegStreamSeek(h: PURLContext; pos: int64; whence: cint): int64; cdecl; +function FFmpegStreamSeek(h: PURLContext; pos: cint64; whence: cint): cint64; cdecl; var Stream : TStream; Origin : TSeekOrigin; -- cgit v1.2.3