av_rescale_rnd

Rescale a 64-bit integer with specified rounding. A simple a*b/c isn't possible as it can overflow.

@return rescaled value a, or if AV_ROUND_PASS_MINMAX is set and a is INT64_MIN or INT64_MAX then a is passed through unchanged.

@nogc nothrow extern (C)
int64_t
av_rescale_rnd
(
int64_t a
,
int64_t b
,
int64_t c
,)

Meta