aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/lib/ffmpeg/avutil.pas4
-rw-r--r--src/lib/ffmpeg/mathematics.pas5
2 files changed, 6 insertions, 3 deletions
diff --git a/src/lib/ffmpeg/avutil.pas b/src/lib/ffmpeg/avutil.pas
index ea3a1e29..2f8c79f7 100644
--- a/src/lib/ffmpeg/avutil.pas
+++ b/src/lib/ffmpeg/avutil.pas
@@ -25,7 +25,7 @@
*
* libavutil/avutil.h:
* Min. version: 49.0.1, revision 6577, Sat Oct 7 15:30:46 2006 UTC
- * Max. version: 50.21.0, revision 24190, Wed Jul 21 01:00:00 2010 CET
+ * Max. version: 50.24.0, revision 24814, Wed Aug 25 05:00:00 2010 CET
*
* libavutil/mem.h:
* revision 23904, Wed Jul 21 01:00:00 2010 CET
@@ -92,7 +92,7 @@ const
*)
(* Max. supported version by this header *)
LIBAVUTIL_MAX_VERSION_MAJOR = 50;
- LIBAVUTIL_MAX_VERSION_MINOR = 21;
+ LIBAVUTIL_MAX_VERSION_MINOR = 24;
LIBAVUTIL_MAX_VERSION_RELEASE = 0;
LIBAVUTIL_MAX_VERSION = (LIBAVUTIL_MAX_VERSION_MAJOR * VERSION_MAJOR) +
(LIBAVUTIL_MAX_VERSION_MINOR * VERSION_MINOR) +
diff --git a/src/lib/ffmpeg/mathematics.pas b/src/lib/ffmpeg/mathematics.pas
index 7366117b..98901c2a 100644
--- a/src/lib/ffmpeg/mathematics.pas
+++ b/src/lib/ffmpeg/mathematics.pas
@@ -22,7 +22,7 @@
* - Changes and updates by the UltraStar Deluxe Team
*
* Conversion of libavutil/mathematics.h
- * avutil max. version 50.21.0, revision 24190, Wed Jul 21 01:00:00 2010 CET
+ * avutil max. version 50.23.0, revision 24439, Wed Aug 25 05:00:00 2010 CET
*
*)
@@ -50,6 +50,9 @@ const
{$IF LIBAVUTIL_VERSION >= 50009000} // >= 50.9.0
M_LOG2_10 = 3.32192809488736234787; // log_2 10
{$IFEND}
+{$IF LIBAVUTIL_VERSION >= 50023000} // >= 50.23.0
+ M_PHI = 1.61803398874989484820; // phi / golden ratio
+{$IFEND}
M_PI = 3.14159265358979323846; // pi
M_SQRT1_2 = 0.70710678118654752440; // 1/sqrt(2)
{$IF LIBAVUTIL_VERSION >= 50014000} // >= 50.14.0