diff options
author | k-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2012-05-10 10:53:35 +0000 |
---|---|---|
committer | k-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2012-05-10 10:53:35 +0000 |
commit | b32b00f40a05e57c1fd23cd27126c78bad75b7a6 (patch) | |
tree | 88372cdc7a1b8cb09545492f2c27845c7f1e32d7 /src/media | |
parent | 15a9be95ed35a087df0d22fc0f1f7a9fcad6ea5b (diff) | |
download | usdx-b32b00f40a05e57c1fd23cd27126c78bad75b7a6.tar.gz usdx-b32b00f40a05e57c1fd23cd27126c78bad75b7a6.tar.xz usdx-b32b00f40a05e57c1fd23cd27126c78bad75b7a6.zip |
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
Diffstat (limited to 'src/media')
-rw-r--r-- | src/media/UMediaCore_FFmpeg.pas | 8 |
1 files changed, 4 insertions, 4 deletions
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; |