diff options
author | k-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2009-12-06 19:32:45 +0000 |
---|---|---|
committer | k-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2009-12-06 19:32:45 +0000 |
commit | cfde3dc5b61b36107d79279d028d096f4cd4ca3e (patch) | |
tree | df5cb342b4568d7a6d0d9756669c38f2170fba9d /src/lib/ffmpeg | |
parent | 17caa61ec8e40acf24b0482b04a5ed24c5f0a73f (diff) | |
download | usdx-cfde3dc5b61b36107d79279d028d096f4cd4ca3e.tar.gz usdx-cfde3dc5b61b36107d79279d028d096f4cd4ca3e.tar.xz usdx-cfde3dc5b61b36107d79279d028d096f4cd4ca3e.zip |
update to version 50.4.0.
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1994 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'src/lib/ffmpeg')
-rw-r--r-- | src/lib/ffmpeg/avutil.pas | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/src/lib/ffmpeg/avutil.pas b/src/lib/ffmpeg/avutil.pas index 6a93ea12..53006453 100644 --- a/src/lib/ffmpeg/avutil.pas +++ b/src/lib/ffmpeg/avutil.pas @@ -70,7 +70,7 @@ uses const (* Max. supported version by this header *) LIBAVUTIL_MAX_VERSION_MAJOR = 50; - LIBAVUTIL_MAX_VERSION_MINOR = 3; + LIBAVUTIL_MAX_VERSION_MINOR = 4; LIBAVUTIL_MAX_VERSION_RELEASE = 0; LIBAVUTIL_MAX_VERSION = (LIBAVUTIL_MAX_VERSION_MAJOR * VERSION_MAJOR) + (LIBAVUTIL_MAX_VERSION_MINOR * VERSION_MINOR) + @@ -101,6 +101,20 @@ function avutil_version(): cuint; cdecl; external av__format; {$IFEND} +{$IF LIBAVUTIL_VERSION >= 50004000} // >= 50.4.0 +(** + * Returns the libavutil build-time configuration. + *) +function avutil_configuration(): PAnsiChar; + cdecl; external av__format; + +(** + * Returns the libavutil license. + *) +function avutil_license(): PAnsiChar; + cdecl; external av__format; +{$IFEND} + type (** * Pixel format. Notes: |