1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-08-07 10:04:15 +02:00

BSD doesnt have log2

Originally committed as revision 2407 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2003-10-21 01:00:31 +00:00
parent 5c9e4723e0
commit 33a6984b8c

View File

@ -53,7 +53,7 @@ AVRational av_sub_q(AVRational b, AVRational c){
AVRational av_d2q(double d, int max){
AVRational a;
int exponent= FFMAX( (int)log2(ABS(d) + 1e-20), 0);
int exponent= FFMAX( (int)(log(ABS(d) + 1e-20)/log(2)), 0);
int64_t den= 1LL << (61 - exponent);
av_reduce(&a.num, &a.den, (int64_t)(d * den + 0.5), den, max);