diff options
author | k-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2009-12-06 19:23:50 +0000 |
---|---|---|
committer | k-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2009-12-06 19:23:50 +0000 |
commit | 17caa61ec8e40acf24b0482b04a5ed24c5f0a73f (patch) | |
tree | a985652cb342e69ab64873059e0f45a950c2c472 /src/lib/ffmpeg | |
parent | 733bcb70ca27687cbe05d0755eeec27888347be3 (diff) | |
download | usdx-17caa61ec8e40acf24b0482b04a5ed24c5f0a73f.tar.gz usdx-17caa61ec8e40acf24b0482b04a5ed24c5f0a73f.tar.xz usdx-17caa61ec8e40acf24b0482b04a5ed24c5f0a73f.zip |
update to version 52.41.0. Only a IFDEF change, no code change.
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1993 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'src/lib/ffmpeg')
-rw-r--r-- | src/lib/ffmpeg/avio.pas | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/lib/ffmpeg/avio.pas b/src/lib/ffmpeg/avio.pas index c47bb618..73c90b69 100644 --- a/src/lib/ffmpeg/avio.pas +++ b/src/lib/ffmpeg/avio.pas @@ -35,6 +35,12 @@ * header, so it should not be directly included in your projects. *) +{ + * update to + * Max. avformat version: 52.41.0, Sun Dec 6 20:15:00 2009 CET + * MiSchi +} + unit avio; {$IFDEF FPC} @@ -467,6 +473,7 @@ function url_fdopen (s: PByteIOContext; h: PURLContext): cint; function url_setbufsize (s: PByteIOContext; buf_size: cint): cint; cdecl; external av__format; +{$IF LIBAVFORMAT_VERSION_MAJOR < 53} {$IF LIBAVFORMAT_VERSION >= 51015000} // 51.15.0 (** Reset the buffer for reading or writing. * @note Will drop any data currently in the buffer without transmitting it. @@ -475,6 +482,7 @@ function url_setbufsize (s: PByteIOContext; buf_size: cint): cint; function url_resetbuf(s: PByteIOContext; flags: cint): cint; cdecl; external av__format; {$IFEND} +{$IFEND} (** @note when opened as read/write, the buffers are only used for writing *) |