fix 2 mistakes in doxy comments, spotted by Michael

Originally committed as revision 8133 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Guillaume Poirier 2007-02-26 14:53:42 +00:00
parent 0b0065992e
commit ca9049efc8
1 changed files with 2 additions and 2 deletions

View File

@ -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); AVRational av_mul_q(AVRational b, AVRational c);
/** /**
* Divides two rationals. * Divides one rational by another.
* @param b first rational. * @param b first rational.
* @param c second rational. * @param c second rational.
* @return b/c. * @return b/c.
@ -96,7 +96,7 @@ AVRational av_div_q(AVRational b, AVRational c);
AVRational av_add_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 b first rational.
* @param c second rational. * @param c second rational.
* returns b-c. * returns b-c.