Commit 10300158 authored by gpoirier's avatar gpoirier

fix 2 mistakes in doxy comments, spotted by Michael

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@8133 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
No related merge requests found
...@@ -80,7 +80,7 @@ int av_reduce(int *dst_nom, int *dst_den, int64_t nom, int64_t den, int64_t max) ...@@ -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); ...@@ -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.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment