diff options
author | k-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2010-04-24 22:42:43 +0000 |
---|---|---|
committer | k-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2010-04-24 22:42:43 +0000 |
commit | 6583d76a34dd5cf2aa54941156ab3dc4e754fa70 (patch) | |
tree | 5df6d5e30a974722de7feff6b8aec697b754a1b2 /src/lib | |
parent | fb8586505dba52c4cc5d7ca8aeda23015b91318d (diff) | |
download | usdx-6583d76a34dd5cf2aa54941156ab3dc4e754fa70.tar.gz usdx-6583d76a34dd5cf2aa54941156ab3dc4e754fa70.tar.xz usdx-6583d76a34dd5cf2aa54941156ab3dc4e754fa70.zip |
update to 52.56.0
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@2300 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to '')
-rw-r--r-- | src/lib/ffmpeg/avformat.pas | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/src/lib/ffmpeg/avformat.pas b/src/lib/ffmpeg/avformat.pas index 5385c3bd..c05cc69e 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.54.0, Sun Apr 25 2010 0:40:00 CET + * Max. version: 52.56.0, Sun Apr 25 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 = 54; + LIBAVFORMAT_MAX_VERSION_MINOR = 56; LIBAVFORMAT_MAX_VERSION_RELEASE = 0; LIBAVFORMAT_MAX_VERSION = (LIBAVFORMAT_MAX_VERSION_MAJOR * VERSION_MAJOR) + (LIBAVFORMAT_MAX_VERSION_MINOR * VERSION_MINOR) + @@ -990,6 +990,17 @@ type raw_packet_buffer_remaining_size: cint; {$IFEND} + {$IF LIBAVFORMAT_VERSION >= 52056000} // 52.56.0 + (** + * Start time of the stream in real world time, in microseconds + * since the unix epoch (00:00 1st January 1970). That is, pts=0 + * in the stream was captured at this real world time. + * - encoding: Set by user. + * - decoding: Unused. + *) + start_time_realtime: cint64; + {$IFEND} + end; (** |