Commit c4c747d2 authored by stefano's avatar stefano

Fix av_compare_mod() doxy.

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@23593 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent a0d6062b
......@@ -95,11 +95,13 @@ int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq) av_const;
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
* @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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment