av_compare_mod

Compare 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 @return a negative value if a is smaller than b a positive value if a is greater than b 0 if a equals b

@nogc nothrow extern (C)
int64_t
av_compare_mod
(
uint64_t a
,
uint64_t b
,
uint64_t mod
)

Meta