mirror of
https://github.com/webmproject/libwebp.git
synced 2025-01-27 15:12:54 +01:00
fix double to float conversion warning
introduced in: a792b91 fix the -g/O3 discrepancy for 32bit compile Change-Id: I6a77223f237527eda4ee1d6eaa993351bd74f1d6
This commit is contained in:
parent
7b3eb372ad
commit
e855208c16
@ -552,7 +552,7 @@ static int BackwardReferencesHashChainDistanceOnly(
|
||||
cost_val += GetLiteralCost(cost_model, argb[i]) * mul1;
|
||||
}
|
||||
if (cost[i] > cost_val) {
|
||||
cost[i] = cost_val;
|
||||
cost[i] = (float)cost_val;
|
||||
dist_array[i] = 1; // only one is inserted.
|
||||
}
|
||||
if (use_color_cache) VP8LColorCacheInsert(&hashers, argb[i]);
|
||||
|
Loading…
x
Reference in New Issue
Block a user