diff options
-rw-r--r-- | src/lib/ffmpeg-0.10/avio.pas | 2 | ||||
-rw-r--r-- | src/lib/ffmpeg-0.7/avio.pas | 2 | ||||
-rw-r--r-- | src/lib/ffmpeg-0.8/avio.pas | 2 | ||||
-rw-r--r-- | src/lib/ffmpeg-0.9/avio.pas | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/ffmpeg-0.10/avio.pas b/src/lib/ffmpeg-0.10/avio.pas index 30aef0cd..616e723a 100644 --- a/src/lib/ffmpeg-0.10/avio.pas +++ b/src/lib/ffmpeg-0.10/avio.pas @@ -349,7 +349,7 @@ function av_register_protocol2(protocol: PURLProtocol; size: cint): cint; *) type - PByteIOContext = ^TByteIOContext; + PByteIOContext = PAVIOContext; { deprecated } TByteIOContext = TAVIOContext; { deprecated } function init_put_byte(s: PAVIOContext; diff --git a/src/lib/ffmpeg-0.7/avio.pas b/src/lib/ffmpeg-0.7/avio.pas index 7cd31a3d..25846a4e 100644 --- a/src/lib/ffmpeg-0.7/avio.pas +++ b/src/lib/ffmpeg-0.7/avio.pas @@ -310,7 +310,7 @@ function av_register_protocol2(protocol: PURLProtocol; size: cint): cint; *) type - PByteIOContext = ^TByteIOContext; + PByteIOContext = PAVIOContext; { deprecated } TByteIOContext = TAVIOContext; { deprecated } function init_put_byte(s: PAVIOContext; diff --git a/src/lib/ffmpeg-0.8/avio.pas b/src/lib/ffmpeg-0.8/avio.pas index a31d17e6..4a85d708 100644 --- a/src/lib/ffmpeg-0.8/avio.pas +++ b/src/lib/ffmpeg-0.8/avio.pas @@ -308,7 +308,7 @@ function av_register_protocol2(protocol: PURLProtocol; size: cint): cint; *) type - PByteIOContext = ^TByteIOContext; + PByteIOContext = PAVIOContext; { deprecated } TByteIOContext = TAVIOContext; { deprecated } function init_put_byte(s: PAVIOContext; diff --git a/src/lib/ffmpeg-0.9/avio.pas b/src/lib/ffmpeg-0.9/avio.pas index b913d72f..1ce65826 100644 --- a/src/lib/ffmpeg-0.9/avio.pas +++ b/src/lib/ffmpeg-0.9/avio.pas @@ -343,7 +343,7 @@ function av_register_protocol2(protocol: PURLProtocol; size: cint): cint; *) type - PByteIOContext = ^TByteIOContext; + PByteIOContext = PAVIOContext; { deprecated } TByteIOContext = TAVIOContext; { deprecated } function init_put_byte(s: PAVIOContext; |