diff options
author | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2008-07-01 20:24:23 +0000 |
---|---|---|
committer | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2008-07-01 20:24:23 +0000 |
commit | 0d738cf354d2793a9fc86fa595819077672d3375 (patch) | |
tree | 2961ac680592901960eb5f4eefc7478868b7e55f /Game/Code/lib/ffmpeg/avformat.pas | |
parent | c690b6e14f1b7dc2e6f0c84831c4c274582ed11f (diff) | |
download | usdx-0d738cf354d2793a9fc86fa595819077672d3375.tar.gz usdx-0d738cf354d2793a9fc86fa595819077672d3375.tar.xz usdx-0d738cf354d2793a9fc86fa595819077672d3375.zip |
check for outdated libs and some minor type corrections
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1153 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'Game/Code/lib/ffmpeg/avformat.pas')
-rw-r--r-- | Game/Code/lib/ffmpeg/avformat.pas | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/Game/Code/lib/ffmpeg/avformat.pas b/Game/Code/lib/ffmpeg/avformat.pas index 730a64e4..a63510a1 100644 --- a/Game/Code/lib/ffmpeg/avformat.pas +++ b/Game/Code/lib/ffmpeg/avformat.pas @@ -24,7 +24,7 @@ (* * Conversion of libavformat/avformat.h - * Min. version: 50.5.0 + * Min. version: 50.5.0 , revision 6577, Sat Oct 7 15:30:46 2006 UTC * Max. version: 52.16.0, revision 13728, Mon Jun 9 13:38:56 2008 UTC *) @@ -62,6 +62,19 @@ const (LIBAVFORMAT_MAX_VERSION_MINOR * VERSION_MINOR) + (LIBAVFORMAT_MAX_VERSION_RELEASE * VERSION_RELEASE); + (* Min. supported version by this header *) + LIBAVFORMAT_MIN_VERSION_MAJOR = 50; + LIBAVFORMAT_MIN_VERSION_MINOR = 5; + LIBAVFORMAT_MIN_VERSION_RELEASE = 0; + LIBAVFORMAT_MIN_VERSION = (LIBAVFORMAT_MIN_VERSION_MAJOR * VERSION_MAJOR) + + (LIBAVFORMAT_MIN_VERSION_MINOR * VERSION_MINOR) + + (LIBAVFORMAT_MIN_VERSION_RELEASE * VERSION_RELEASE); + +(* Check if linked versions are supported *) +{$IF (LIBAVFORMAT_VERSION < LIBAVFORMAT_MIN_VERSION)} + {$MESSAGE Error 'Linked version of libavformat is too old!'} +{$IFEND} + (* Check if linked versions are supported *) {$IF (LIBAVFORMAT_VERSION > LIBAVFORMAT_MAX_VERSION)} {$MESSAGE Warn 'Linked version of libavformat may be unsupported!'} |