Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimothy Gu <timothygu99@gmail.com>2016-07-30 22:02:20 +0300
committerTimothy Gu <timothygu99@gmail.com>2016-08-02 19:01:09 +0300
commit1fcf243216259d871f55d23d256da90beed4f46f (patch)
tree4018609261ff239c49d58617f2c3885f62362682 /libavutil/mathematics.h
parent5aede051202150a1904c0f07a5c7901f402395a5 (diff)
mathematics: Make function prototypes identical to definitions
Doxygen gets confused by this.
Diffstat (limited to 'libavutil/mathematics.h')
-rw-r--r--libavutil/mathematics.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavutil/mathematics.h b/libavutil/mathematics.h
index 57c44f845d..1a6812fc4b 100644
--- a/libavutil/mathematics.h
+++ b/libavutil/mathematics.h
@@ -97,7 +97,7 @@ int64_t av_rescale(int64_t a, int64_t b, int64_t c) av_const;
* @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.
*/
-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 rnd) av_const;
/**
* Rescale a 64-bit integer by 2 rational numbers.
@@ -111,7 +111,7 @@ int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq) av_const;
* INT64_MIN or INT64_MAX then a is passed through unchanged.
*/
int64_t av_rescale_q_rnd(int64_t a, AVRational bq, AVRational cq,
- enum AVRounding) av_const;
+ enum AVRounding rnd) av_const;
/**
* Compare 2 timestamps each in its own timebases.