diff options
author | Guillaume Poirier <gpoirier@mplayerhq.hu> | 2007-02-26 14:53:42 +0000 |
---|---|---|
committer | Guillaume Poirier <gpoirier@mplayerhq.hu> | 2007-02-26 14:53:42 +0000 |
commit | ca9049efc8efc6e4cc5ecc8646ba95aa13c6195a (patch) | |
tree | 8cab678fac78a1333ec11b799b9bc46b78072e2c | |
parent | 0b0065992eb6652330f2c84d31de181c2d8956e6 (diff) | |
download | ffmpeg-ca9049efc8efc6e4cc5ecc8646ba95aa13c6195a.tar.gz |
fix 2 mistakes in doxy comments, spotted by Michael
Originally committed as revision 8133 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavutil/rational.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavutil/rational.h b/libavutil/rational.h index df6643ec86..63c0b150f2 100644 --- a/libavutil/rational.h +++ b/libavutil/rational.h @@ -80,7 +80,7 @@ int av_reduce(int *dst_nom, int *dst_den, int64_t nom, int64_t den, int64_t max) AVRational av_mul_q(AVRational b, AVRational c); /** - * Divides two rationals. + * Divides one rational by another. * @param b first rational. * @param c second rational. * @return b/c. @@ -96,7 +96,7 @@ AVRational av_div_q(AVRational b, AVRational c); AVRational av_add_q(AVRational b, AVRational c); /** - * Substracts two rationals. + * Subtracts one rational from another. * @param b first rational. * @param c second rational. * returns b-c. |