mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Avoid using log2() freebsd does not support it.
Originally committed as revision 13184 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
ba321adb94
commit
ee83232aa9
@ -246,7 +246,7 @@ static av_cold int encode_init(AVCodecContext *avctx)
|
||||
int lvl = 9;
|
||||
|
||||
for(i=1; i<256; i++)
|
||||
score_tab[i]= -i * log2(i/(double)(ZMBV_BLOCK*ZMBV_BLOCK)) * 256;
|
||||
score_tab[i]= -i * log(i/(double)(ZMBV_BLOCK*ZMBV_BLOCK)) * (256/M_LN2);
|
||||
|
||||
c->avctx = avctx;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user