diff options
author | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2009-07-23 19:00:19 +0000 |
---|---|---|
committer | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2009-07-23 19:00:19 +0000 |
commit | 21fbd02eb59292a9e1bf2ab785de8a2e7aac1560 (patch) | |
tree | d78b2132d872936c35e0dcfbde108522cadaefbc | |
parent | a92f9e481ab4d1ebf7d199f14b423a9a5d591947 (diff) | |
download | usdx-21fbd02eb59292a9e1bf2ab785de8a2e7aac1560.tar.gz usdx-21fbd02eb59292a9e1bf2ab785de8a2e7aac1560.tar.xz usdx-21fbd02eb59292a9e1bf2ab785de8a2e7aac1560.zip |
- av_open_input_stream() signature fix
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/branches/experimental@1882 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to '')
-rw-r--r-- | unicode/src/lib/ffmpeg/avformat.pas | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unicode/src/lib/ffmpeg/avformat.pas b/unicode/src/lib/ffmpeg/avformat.pas index 0ec2c118..e39416a1 100644 --- a/unicode/src/lib/ffmpeg/avformat.pas +++ b/unicode/src/lib/ffmpeg/avformat.pas @@ -1132,7 +1132,7 @@ function av_probe_input_format(pd: PAVProbeData; is_opened: cint): PAVInputForma * Allocates all the structures needed to read an input stream. * This does not open the needed codecs for decoding the stream[s]. *) -function av_open_input_stream(ic_ptr: PAVFormatContext; +function av_open_input_stream(var ic_ptr: PAVFormatContext; pb: PByteIOContext; filename: PAnsiChar; fmt: PAVInputFormat; ap: PAVFormatParameters): cint; cdecl; external av__format; |