mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-13 21:28:01 +02:00
Document av_gcd().
Originally committed as revision 20935 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
a69be798dc
commit
03703cb3d1
@ -56,6 +56,11 @@ enum AVRounding {
|
|||||||
AV_ROUND_NEAR_INF = 5, ///< Round to nearest and halfway cases away from zero.
|
AV_ROUND_NEAR_INF = 5, ///< Round to nearest and halfway cases away from zero.
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 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
|
||||||
|
* 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);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user