Commit f263426e authored by Clément Bœsch's avatar Clément Bœsch

lavu/math: fix than/then typo, and add a comma.

parent 98db9058
...@@ -90,8 +90,8 @@ int64_t av_rescale(int64_t a, int64_t b, int64_t c) av_const; ...@@ -90,8 +90,8 @@ int64_t av_rescale(int64_t a, int64_t b, int64_t c) av_const;
* Rescale a 64-bit integer with specified rounding. * Rescale a 64-bit integer with specified rounding.
* A simple a*b/c isn't possible as it can overflow. * 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 * @return rescaled value a, or if AV_ROUND_PASS_MINMAX is set and a is
* INT64_MIN or INT64_MAX than a is passed through unchanged. * INT64_MIN or INT64_MAX then a is passed through unchanged.
*/ */
int64_t av_rescale_rnd(int64_t a, int64_t b, int64_t c, enum AVRounding) av_const; int64_t av_rescale_rnd(int64_t a, int64_t b, int64_t c, enum AVRounding) av_const;
...@@ -103,8 +103,8 @@ int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq) av_const; ...@@ -103,8 +103,8 @@ int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq) av_const;
/** /**
* Rescale a 64-bit integer by 2 rational numbers with specified rounding. * Rescale a 64-bit integer by 2 rational numbers with specified rounding.
* *
* @return rescaled value a or if AV_ROUND_PASS_MINMAX is set and a is * @return rescaled value a, or if AV_ROUND_PASS_MINMAX is set and a is
* INT64_MIN or INT64_MAX than a is passed through unchanged. * INT64_MIN or INT64_MAX then a is passed through unchanged.
*/ */
int64_t av_rescale_q_rnd(int64_t a, AVRational bq, AVRational cq, int64_t av_rescale_q_rnd(int64_t a, AVRational bq, AVRational cq,
enum AVRounding) av_const; enum AVRounding) av_const;
......
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