diff options
Diffstat (limited to '')
-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; |