diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-02-01 00:20:45 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-02-01 00:20:45 +0000 |
commit | 674bd4f691e865462d05c9e4da1b31800e14468b (patch) | |
tree | f9c270e0a4a3c1a21b4dcafab75b1902b8d7de42 /libavutil/rational.h | |
parent | 7591b30499b10bd77a836737c2c7fcce1696f03d (diff) | |
download | ffmpeg-674bd4f691e865462d05c9e4da1b31800e14468b.tar.gz |
cosmetics: Use 'num' instead of 'nom' as abbreviation for numerator.
Originally committed as revision 16910 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/rational.h')
-rw-r--r-- | libavutil/rational.h | 8 |
1 files changed, 4 insertions, 4 deletions
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. |