# HG changeset patch # User stefano # Date 1276420010 0 # Node ID 1acef06f273961a141cc121a9bab058fd4df2e45 # Parent 693dea8b44f173ff12c707fdc38518432cb602e6 Fix av_compare_mod() doxy. diff -r 693dea8b44f1 -r 1acef06f2739 mathematics.h --- a/mathematics.h Sun Jun 13 09:04:36 2010 +0000 +++ b/mathematics.h Sun Jun 13 09:06:50 2010 +0000 @@ -95,12 +95,14 @@ int av_compare_ts(int64_t ts_a, AVRational tb_a, int64_t ts_b, AVRational tb_b); /** - * 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 positive value if a is greater than b + * 0 if a equals b */ int64_t av_compare_mod(uint64_t a, uint64_t b, uint64_t mod);