From 674bd4f691e865462d05c9e4da1b31800e14468b Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Sun, 1 Feb 2009 00:20:45 +0000 Subject: cosmetics: Use 'num' instead of 'nom' as abbreviation for numerator. Originally committed as revision 16910 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavutil/rational.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libavutil/rational.h') diff --git a/libavutil/rational.h b/libavutil/rational.h index 095e0e17ce..274595c6f3 100644 --- a/libavutil/rational.h +++ b/libavutil/rational.h @@ -64,14 +64,14 @@ static inline double av_q2d(AVRational a){ /** * Reduces a fraction. * This is useful for framerate calculations. - * @param dst_nom destination numerator + * @param dst_num destination numerator * @param dst_den destination denominator - * @param nom source numerator + * @param num source numerator * @param den source denominator - * @param max the maximum allowed for dst_nom & dst_den + * @param max the maximum allowed for dst_num & dst_den * @return 1 if exact, 0 otherwise */ -int av_reduce(int *dst_nom, int *dst_den, int64_t nom, int64_t den, int64_t max); +int av_reduce(int *dst_num, int *dst_den, int64_t num, int64_t den, int64_t max); /** * Multiplies two rationals. -- cgit v1.2.1