From 2119bb8f51d5cbf946d8e87974a2d95016133942 Mon Sep 17 00:00:00 2001 From: Benoit Fouet Date: Tue, 18 Mar 2008 16:29:47 +0000 Subject: revert r12489. Originally committed as revision 12490 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavutil/mathematics.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libavutil/mathematics.h') diff --git a/libavutil/mathematics.h b/libavutil/mathematics.h index a9dfe7eccf..fa407b6111 100644 --- a/libavutil/mathematics.h +++ b/libavutil/mathematics.h @@ -36,17 +36,17 @@ enum AVRounding { * rescale a 64bit integer with rounding to nearest. * a simple a*b/c isn't possible as it can overflow */ -int64_t av_rescale(int64_t a, int64_t b, int64_t c) av_const; +int64_t av_rescale(int64_t a, int64_t b, int64_t c); /** * rescale a 64bit integer with specified rounding. * a simple a*b/c isn't possible as it can overflow */ -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); /** * rescale a 64bit integer by 2 rational numbers. */ -int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq) av_const; +int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq); #endif /* FFMPEG_MATHEMATICS_H */ -- cgit v1.2.3