Commit cc7a42e5 authored by michael's avatar michael

2nd try on documenting av_gcd().


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@20939 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent a60ed2c5
...@@ -58,7 +58,7 @@ enum AVRounding { ...@@ -58,7 +58,7 @@ enum AVRounding {
/** /**
* Returns the greatest common divisor of a and b. * Returns the greatest common divisor of a and b.
* If either a or b are 0 or either or both are <0 then behavior is * If both a and b are 0 or either or both are <0 then behavior is
* undefined. * undefined.
*/ */
int64_t av_const av_gcd(int64_t a, int64_t b); int64_t av_const av_gcd(int64_t a, int64_t b);
......
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