mirror of
https://github.com/webmproject/libwebp.git
synced 2025-07-13 06:24:27 +02:00
fix some implicit type conversion warnings
Change-Id: I0653d10410c0d46f91fedad4c4dffa9c1de402cb
This commit is contained in:
@ -132,7 +132,7 @@ float VP8LFastLog(int v) {
|
||||
}
|
||||
return kLogTable[v] + (log_cnt * LOG_2_BASE_E);
|
||||
}
|
||||
return log(v);
|
||||
return (float)log(v);
|
||||
}
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user