diff options
Diffstat (limited to '')
-rw-r--r-- | src/lib/ffmpeg/avformat.pas | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/ffmpeg/avformat.pas b/src/lib/ffmpeg/avformat.pas index 74a0fd8d..2d790dc3 100644 --- a/src/lib/ffmpeg/avformat.pas +++ b/src/lib/ffmpeg/avformat.pas @@ -23,7 +23,7 @@ * * Conversion of libavformat/avformat.h * Min. version: 50.5.0 , revision 6577, Sat Oct 7 15:30:46 2006 UTC - * Max. version: 52.74.0, revision 24278, Tue Jul 20 21:30:00 2010 CET + * Max. version: 52.76.0, revision 24355, Tue Jul 20 21:30:00 2010 CET *) unit avformat; @@ -81,7 +81,7 @@ const *) (* Max. supported version by this header *) LIBAVFORMAT_MAX_VERSION_MAJOR = 52; - LIBAVFORMAT_MAX_VERSION_MINOR = 74; + LIBAVFORMAT_MAX_VERSION_MINOR = 76; LIBAVFORMAT_MAX_VERSION_RELEASE = 0; LIBAVFORMAT_MAX_VERSION = (LIBAVFORMAT_MAX_VERSION_MAJOR * VERSION_MAJOR) + (LIBAVFORMAT_MAX_VERSION_MINOR * VERSION_MINOR) + @@ -1604,7 +1604,7 @@ function av_add_index_entry(st: PAVStream; pos: cint64; timestamp: cint64; (** * Perform a binary search using av_index_search_timestamp() and - * AVCodec.read_timestamp(). + * AVInputFormat.read_timestamp(). * This is not supposed to be called directly by a user application, * but by demuxers. * @param target_ts target timestamp in the time base of the given stream |