aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/ffmpeg-0.8/avformat.pas
diff options
context:
space:
mode:
authork-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c>2012-10-29 22:21:58 +0000
committerk-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c>2012-10-29 22:21:58 +0000
commit3d1808b5ec93069182b730bb8ab826121ef1b78a (patch)
tree9cfdc63402f33b4bc512f2b7ceb5942aa898cc88 /src/lib/ffmpeg-0.8/avformat.pas
parent3b2d51820756803606857945daa48195e3671f3d (diff)
downloadusdx-3d1808b5ec93069182b730bb8ab826121ef1b78a.tar.gz
usdx-3d1808b5ec93069182b730bb8ab826121ef1b78a.tar.xz
usdx-3d1808b5ec93069182b730bb8ab826121ef1b78a.zip
increase minor version in libs. Ubuntu 12 has newer versions, than the 0.8 release of ffmpeg. What a bloody version politics.
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@2931 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'src/lib/ffmpeg-0.8/avformat.pas')
-rw-r--r--src/lib/ffmpeg-0.8/avformat.pas6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/ffmpeg-0.8/avformat.pas b/src/lib/ffmpeg-0.8/avformat.pas
index fdbc2d0c..1127c50a 100644
--- a/src/lib/ffmpeg-0.8/avformat.pas
+++ b/src/lib/ffmpeg-0.8/avformat.pas
@@ -23,7 +23,7 @@
*
* Conversion of version 0.8 libavformat/avformat.h
* Min. version: 53.4.0
- * Max. version: 53.5.0
+ * Max. version: 53.21.0
*)
unit avformat;
@@ -56,13 +56,13 @@ uses
const
(*
* IMPORTANT: This headers are valid for all minor revisions of ffmpeg
- * version 0.7x
+ * version 0.8x
* This file has been created with the previous ffmpeg headers as a basis
* by removing all unneeded conditionals.
*)
(* Max. supported version by this header *)
LIBAVFORMAT_MAX_VERSION_MAJOR = 53;
- LIBAVFORMAT_MAX_VERSION_MINOR = 5;
+ LIBAVFORMAT_MAX_VERSION_MINOR = 21;
LIBAVFORMAT_MAX_VERSION_RELEASE = 0;
LIBAVFORMAT_MAX_VERSION = (LIBAVFORMAT_MAX_VERSION_MAJOR * VERSION_MAJOR) +
(LIBAVFORMAT_MAX_VERSION_MINOR * VERSION_MINOR) +