mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
av_d2q() documentation
Originally committed as revision 2522 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
11498da334
commit
bf63eb4bba
@ -51,6 +51,10 @@ AVRational av_sub_q(AVRational b, AVRational c){
|
|||||||
return b;
|
return b;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Converts a double precission floating point number to a AVRational.
|
||||||
|
* @param max the maximum allowed numerator and denominator
|
||||||
|
*/
|
||||||
AVRational av_d2q(double d, int max){
|
AVRational av_d2q(double d, int max){
|
||||||
AVRational a;
|
AVRational a;
|
||||||
int exponent= FFMAX( (int)(log(ABS(d) + 1e-20)/log(2)), 0);
|
int exponent= FFMAX( (int)(log(ABS(d) + 1e-20)/log(2)), 0);
|
||||||
|
Loading…
Reference in New Issue
Block a user