aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authork-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c>2010-07-20 19:26:14 +0000
committerk-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c>2010-07-20 19:26:14 +0000
commit145aa4960ddf6cb96f0dd6eb86177cbb89b0161c (patch)
tree4539cb13fb17d57167de7adb97e393b695e13da2
parent9006de111c4f56259f90e9c3ebfae720ce650969 (diff)
downloadusdx-145aa4960ddf6cb96f0dd6eb86177cbb89b0161c.tar.gz
usdx-145aa4960ddf6cb96f0dd6eb86177cbb89b0161c.tar.xz
usdx-145aa4960ddf6cb96f0dd6eb86177cbb89b0161c.zip
update avformat to 52.71.0
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@2587 b956fd51-792f-4845-bead-9b4dfca2ff2c
-rw-r--r--src/lib/ffmpeg/avformat.pas7
-rw-r--r--src/lib/ffmpeg/avio.pas5
2 files changed, 9 insertions, 3 deletions
diff --git a/src/lib/ffmpeg/avformat.pas b/src/lib/ffmpeg/avformat.pas
index 2f05ee4a..42fc4347 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.70.0, revision 23704, Tue Jul 20 21:30:00 2010 CET
+ * Max. version: 52.71.0, revision 23706, 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 = 70;
+ LIBAVFORMAT_MAX_VERSION_MINOR = 71;
LIBAVFORMAT_MAX_VERSION_RELEASE = 0;
LIBAVFORMAT_MAX_VERSION = (LIBAVFORMAT_MAX_VERSION_MAJOR * VERSION_MAJOR) +
(LIBAVFORMAT_MAX_VERSION_MINOR * VERSION_MINOR) +
@@ -1763,8 +1763,9 @@ function parse_frame_rate(frame_rate: PCint; frame_rate_base: PCint;
* @param datestr String representing a date or a duration.
* - If a date the syntax is:
* @code
- * [{YYYY-MM-DD|YYYYMMDD}]{T| }{HH[:MM[:SS[.m...]]][Z]|HH[MM[SS[.m...]]][Z]}
+ * now|{[{YYYY-MM-DD|YYYYMMDD}[T|t| ]]{{HH[:MM[:SS[.m...]]]}|{HH[MM[SS[.m...]]]}}[Z|z]}
* @endcode
+ * If the value is "now" it takes the current time.
* Time is localtime unless Z is appended, in which case it is
* interpreted as UTC.
* If the year-month-day part is not specified it takes the current
diff --git a/src/lib/ffmpeg/avio.pas b/src/lib/ffmpeg/avio.pas
index 4c2c08d6..517c02ec 100644
--- a/src/lib/ffmpeg/avio.pas
+++ b/src/lib/ffmpeg/avio.pas
@@ -174,6 +174,11 @@ type
{$IF LIBAVFORMAT_VERSION >= 52031000} // 52.31.0
url_get_file_handle: function (h: PURLContext): cint; cdecl;
{$IFEND}
+
+ {$IF LIBAVFORMAT_VERSION >= 52071000} // 52.71.0
+ priv_data_size: cint;
+ {const} priv_data_class: PAVClass;
+ {$IFEND}
end;
(**