diff options
author | k-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2010-02-21 00:00:09 +0000 |
---|---|---|
committer | k-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2010-02-21 00:00:09 +0000 |
commit | 9f09437f455b45079243f3f1bdb7d3865d538521 (patch) | |
tree | 085a066602d8ce71785209b0e03d658eb446d053 /src/lib/ffmpeg | |
parent | 9c9f6974f039307bf2165cc8a760421d4dfeeab6 (diff) | |
download | usdx-9f09437f455b45079243f3f1bdb7d3865d538521.tar.gz usdx-9f09437f455b45079243f3f1bdb7d3865d538521.tar.xz usdx-9f09437f455b45079243f3f1bdb7d3865d538521.zip |
update to 52.48.0
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@2125 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to '')
-rw-r--r-- | src/lib/ffmpeg/avformat.pas | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/lib/ffmpeg/avformat.pas b/src/lib/ffmpeg/avformat.pas index 8bf218a2..7db19bf7 100644 --- a/src/lib/ffmpeg/avformat.pas +++ b/src/lib/ffmpeg/avformat.pas @@ -30,7 +30,7 @@ * Max. version: 52.25.0, revision 16986, Wed Feb 4 05:56:39 2009 UTC * * update to - * Max. version: 52.47.0, Sun Feb 21 2010 0:40:00 CET + * Max. version: 52.48.0, Sun Feb 21 2010 0:40:00 CET * MiSchi *) @@ -64,7 +64,7 @@ uses const (* Max. supported version by this header *) LIBAVFORMAT_MAX_VERSION_MAJOR = 52; - LIBAVFORMAT_MAX_VERSION_MINOR = 47; + LIBAVFORMAT_MAX_VERSION_MINOR = 48; LIBAVFORMAT_MAX_VERSION_RELEASE = 0; LIBAVFORMAT_MAX_VERSION = (LIBAVFORMAT_MAX_VERSION_MAJOR * VERSION_MAJOR) + (LIBAVFORMAT_MAX_VERSION_MINOR * VERSION_MINOR) + @@ -364,6 +364,9 @@ const AVFMT_FLAG_GENPTS = $0001; ///< Generate missing pts even if it requires parsing future frames. AVFMT_FLAG_IGNIDX = $0002; ///< Ignore index. AVFMT_FLAG_NONBLOCK = $0004; ///< Do not block when reading packets from input. +{$IF LIBAVFORMAT_VERSION >= 52048000} // >= 52.48.0 + AVFMT_FLAG_IGNDTS = $0008; ///< Ignore DTS on frames that contain both DTS & PTS +{$IFEND} // used by AVStream MAX_REORDER_DELAY = 16; |