aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/ffmpeg/mathematics.pas
diff options
context:
space:
mode:
authork-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c>2010-07-20 23:18:11 +0000
committerk-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c>2010-07-20 23:18:11 +0000
commitedd433542de5da18d8f1b510f87f0221eab058a8 (patch)
tree0e3fc6fe22d9bcc6b4a62c05f7b07f9c164462a3 /src/lib/ffmpeg/mathematics.pas
parentb24b4b940f526f8fd41008618514a5dd4d1ff5f2 (diff)
downloadusdx-edd433542de5da18d8f1b510f87f0221eab058a8.tar.gz
usdx-edd433542de5da18d8f1b510f87f0221eab058a8.tar.xz
usdx-edd433542de5da18d8f1b510f87f0221eab058a8.zip
update avutil to 50.19.0
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@2602 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'src/lib/ffmpeg/mathematics.pas')
-rw-r--r--src/lib/ffmpeg/mathematics.pas14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/lib/ffmpeg/mathematics.pas b/src/lib/ffmpeg/mathematics.pas
index 0457f066..92e9cbb0 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.18.0, revision 23551, Mon Jul 21 01:00:00 2010 CET
+ * avutil max. version 50.19.0, revision 23593, Mon Jul 21 01:00:00 2010 CET
*
*)
@@ -112,12 +112,14 @@ function av_compare_ts(ts_a: cint64; tb_a: TAVRational; ts_b: cint64; tb_b: TAVR
{$IF LIBAVUTIL_VERSION >= 50018000} // 50.18.0
(**
- * Compare 2 integers modulo mod.
- * That is we compare integers a and b for which only the least significant log2(mod) bits are known
+ * Compares 2 integers modulo mod.
+ * That is we compare integers a and b for which only the least
+ * significant log2(mod) bits are known.
+ *
* @param mod must be a power of 2
- * @returns a negative value if a is smaller than b
- * a positiv value if a is greater than b
- * 0 if a equals b
+ * @return a negative value if a is smaller than b
+ * a positiv value if a is greater than b
+ * 0 if a equals b
*)
function av_compare_mod(a: cuint64; b: cuint64; modVar: cuint64): cint64;
cdecl; external av__util;