Skip to content

Commit 2b11bd9

Browse files
hughberobryk
authored andcommitted
Fix double to float truncation warnings with MSVC
1 parent d21005a commit 2b11bd9

File tree

6 files changed

+40
-40
lines changed

6 files changed

+40
-40
lines changed

guetzli/butteraugli_comparator.cc

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ ButteraugliComparator::ButteraugliComparator(const int width, const int height,
3535
rgb_linear_pregamma_(3, std::vector<float>(width_ * height_)),
3636
comparator_(width_, height_, kButteraugliStep),
3737
distance_(0.0),
38-
distmap_(width_, height_),
38+
distmap_(width_, static_cast<float>(height_)),
3939
stats_(stats) {
4040
const double* lut = Srgb8ToLinearTable();
4141
for (int c = 0; c < 3; ++c) {
@@ -180,7 +180,7 @@ void ButteraugliComparator::ComputeBlockErrorAdjustmentWeights(
180180
for (int block_y = 0; block_y < block_height; ++block_y) {
181181
for (int block_x = 0; block_x < block_width; ++block_x) {
182182
int block_ix = block_y * block_width + block_x;
183-
float max_local_dist = target_distance;
183+
float max_local_dist = static_cast<float>(target_distance);
184184
int x_min = std::max(0, block_x - max_block_dist);
185185
int y_min = std::max(0, block_y - max_block_dist);
186186
int x_max = std::min(block_width, block_x + 1 + max_block_dist);

guetzli/guetzli.cc

+2-2
Original file line numberDiff line numberDiff line change
@@ -270,8 +270,8 @@ int main(int argc, char** argv) {
270270
std::string out_data;
271271

272272
guetzli::Params params;
273-
params.butteraugli_target =
274-
guetzli::ButteraugliScoreForQuality(quality);
273+
params.butteraugli_target = static_cast<float>(
274+
guetzli::ButteraugliScoreForQuality(quality));
275275

276276
guetzli::ProcessStats stats;
277277

guetzli/output_image.cc

+2-2
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ void OutputImageComponent::ToFloatPixels(float* out, int stride) const {
113113
int y = block_y * 8 + iy;
114114
int x = block_x * 8 + ix;
115115
if (y >= height_ || x >= width_) continue;
116-
out[(y * width_ + x) * stride] = blockd[8 * iy + ix] + 128.0;
116+
out[(y * width_ + x) * stride] = static_cast<float>(blockd[8 * iy + ix] + 128.0);
117117
}
118118
}
119119
}
@@ -430,7 +430,7 @@ void OutputImage::ToLinearRGB(int xmin, int ymin, int xsize, int ysize,
430430
std::vector<uint8_t> rgb_pixels = ToSRGB(xmin, ymin, xsize, ysize);
431431
for (int p = 0; p < xsize * ysize; ++p) {
432432
for (int i = 0; i < 3; ++i) {
433-
(*rgb)[i][p] = lut[rgb_pixels[3 * p + i]];
433+
(*rgb)[i][p] = static_cast<float>(lut[rgb_pixels[3 * p + i]]);
434434
}
435435
}
436436
}

guetzli/preprocess_downsample.cc

+5-5
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ std::vector<float> Convolve2D(const std::vector<float>& image, int w, int h,
4242
for (int j = 0; j < size * size; j++) {
4343
int x2 = x + j % size - size2;
4444
int y2 = y + j / size - size2;
45-
v += kernel[j] * image[y2 * w + x2];
45+
v += static_cast<float>(kernel[j]) * image[y2 * w + x2];
4646
}
4747
result[i] = v;
4848
}
@@ -62,9 +62,9 @@ std::vector<float> Convolve2X(const std::vector<float>& image, int w, int h,
6262
float v = 0;
6363
for (int j = 0; j < size; j++) {
6464
int x2 = x + j - size2;
65-
v += kernel[j] * image[y * w + x2];
65+
v += static_cast<float>(kernel[j]) * image[y * w + x2];
6666
}
67-
temp[i] = v * mul;
67+
temp[i] = v * static_cast<float>(mul);
6868
}
6969
auto result = temp;
7070
for (size_t i = 0; i < temp.size(); i++) {
@@ -75,9 +75,9 @@ std::vector<float> Convolve2X(const std::vector<float>& image, int w, int h,
7575
float v = 0;
7676
for (int j = 0; j < size; j++) {
7777
int y2 = y + j - size2;
78-
v += kernel[j] * temp[y2 * w + x];
78+
v += static_cast<float>(kernel[j]) * temp[y2 * w + x];
7979
}
80-
result[i] = v * mul;
80+
result[i] = v * static_cast<float>(mul);
8181
}
8282
return result;
8383
}

guetzli/processor.cc

+3-3
Original file line numberDiff line numberDiff line change
@@ -390,8 +390,8 @@ void Processor::ComputeBlockZeroingOrder(
390390
if (params_.new_zeroing_model) {
391391
score = std::abs(orig_block[idx]) * csf[idx] + bias[idx];
392392
} else {
393-
score = (std::abs(orig_block[idx]) - kJPEGZigZagOrder[k] / 64.0) *
394-
kWeight[c] / oldCsf[k];
393+
score = static_cast<float>((std::abs(orig_block[idx]) - kJPEGZigZagOrder[k] / 64.0) *
394+
kWeight[c] / oldCsf[k]);
395395
}
396396
input_order.push_back(std::make_pair(idx, score));
397397
}
@@ -425,7 +425,7 @@ void Processor::ComputeBlockZeroingOrder(
425425
int block_xx = block_x * factor_x + ix;
426426
int block_yy = block_y * factor_y + iy;
427427
if (8 * block_xx < img->width() && 8 * block_yy < img->height()) {
428-
float err = comparator_->CompareBlock(*img, ix, iy);
428+
float err = static_cast<float>(comparator_->CompareBlock(*img, ix, iy));
429429
max_err = std::max(max_err, err);
430430
}
431431
}

third_party/butteraugli/butteraugli/butteraugli.cc

+26-26
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ static void Convolution(size_t xsize, size_t ysize,
8686
for (int j = minx; j <= maxx; ++j) {
8787
sum += inp[y * xsize + j] * multipliers[j - x + offset];
8888
}
89-
result[ox * ysize + y] = sum * scale;
89+
result[ox * ysize + y] = static_cast<float>(sum * scale);
9090
}
9191
}
9292
}
@@ -101,7 +101,7 @@ void Blur(size_t xsize, size_t ysize, float* channel, double sigma,
101101
const int expn_size = 2 * diff + 1;
102102
std::vector<float> expn(expn_size);
103103
for (int i = -diff; i <= diff; ++i) {
104-
expn[i + diff] = exp(scaler * i * i);
104+
expn[i + diff] = static_cast<float>(exp(scaler * i * i));
105105
}
106106
const int xstep = std::max(1, int(sigma / 3));
107107
const int ystep = xstep;
@@ -818,8 +818,8 @@ void MaskHighIntensityChange(
818818
// Interpolate lineraly between the average color and the actual
819819
// color -- to reduce the importance of this pixel.
820820
for (int i = 0; i < 3; ++i) {
821-
xyb0[i][ix] = mix[i] * c0[i][ix] + (1 - mix[i]) * ave[i];
822-
xyb1[i][ix] = mix[i] * c1[i][ix] + (1 - mix[i]) * ave[i];
821+
xyb0[i][ix] = static_cast<float>(mix[i] * c0[i][ix] + (1 - mix[i]) * ave[i]);
822+
xyb1[i][ix] = static_cast<float>(mix[i] * c1[i][ix] + (1 - mix[i]) * ave[i]);
823823
}
824824
}
825825
}
@@ -915,12 +915,12 @@ static inline float GammaPolynomial(float value) {
915915
12.262350348616792, 20.557285797683576, 12.161463238367844,
916916
4.711532733641639, 0.899112889751053, 0.035662329617191,
917917
}};
918-
return r(value);
918+
return static_cast<float>(r(value));
919919
}
920920

921921
static inline double Gamma(double v) {
922922
// return SimpleGamma(v);
923-
return GammaPolynomial(v);
923+
return GammaPolynomial(static_cast<float>(v));
924924
}
925925

926926
void OpsinDynamicsImage(size_t xsize, size_t ysize,
@@ -950,16 +950,16 @@ void OpsinDynamicsImage(size_t xsize, size_t ysize,
950950
cur_mixed[2] *= sensitivity[2];
951951
double x, y, z;
952952
RgbToXyb(cur_mixed[0], cur_mixed[1], cur_mixed[2], &x, &y, &z);
953-
rgb[0][i] = x;
954-
rgb[1][i] = y;
955-
rgb[2][i] = z;
953+
rgb[0][i] = static_cast<float>(x);
954+
rgb[1][i] = static_cast<float>(y);
955+
rgb[2][i] = static_cast<float>(z);
956956
}
957957
}
958958

959959
static void ScaleImage(double scale, std::vector<float> *result) {
960960
PROFILER_FUNC;
961961
for (size_t i = 0; i < result->size(); ++i) {
962-
(*result)[i] *= scale;
962+
(*result)[i] *= static_cast<float>(scale);
963963
}
964964
}
965965

@@ -1015,7 +1015,7 @@ void CalculateDiffmap(const size_t xsize, const size_t ysize,
10151015
for (size_t y = 0; y < ysize - s; ++y) {
10161016
for (size_t x = 0; x < xsize - s; ++x) {
10171017
(*diffmap)[(y + s2) * xsize + x + s2]
1018-
+= mul1 * blurred[y * (xsize - s) + x];
1018+
+= static_cast<float>(mul1) * blurred[y * (xsize - s) + x];
10191019
}
10201020
}
10211021
ScaleImage(scale, diffmap);
@@ -1084,8 +1084,8 @@ void ButteraugliComparator::BlockDiffMap(
10841084
ButteraugliBlockDiff(block0, block1,
10851085
diff_xyb_dc, diff_xyb_ac, diff_xyb_edge_dc);
10861086
for (int i = 0; i < 3; ++i) {
1087-
(*block_diff_dc)[3 * res_ix + i] = diff_xyb_dc[i];
1088-
(*block_diff_ac)[3 * res_ix + i] = diff_xyb_ac[i];
1087+
(*block_diff_dc)[3 * res_ix + i] = static_cast<float>(diff_xyb_dc[i]);
1088+
(*block_diff_ac)[3 * res_ix + i] = static_cast<float>(diff_xyb_ac[i]);
10891089
}
10901090
}
10911091
}
@@ -1117,7 +1117,7 @@ void ButteraugliComparator::EdgeDetectorMap(
11171117
blurred0, blurred1,
11181118
diff_xyb);
11191119
for (int i = 0; i < 3; ++i) {
1120-
(*edge_detector_map)[3 * res_ix + i] = diff_xyb[i];
1120+
(*edge_detector_map)[3 * res_ix + i] = static_cast<float>(diff_xyb[i]);
11211121
}
11221122
}
11231123
}
@@ -1173,7 +1173,7 @@ void ButteraugliComparator::EdgeDetectorLowFreq(
11731173
}
11741174
}
11751175
for (int i = 0; i < 3; ++i) {
1176-
(*block_diff_ac)[3 * res_ix + i] += kMul * max_diff_xyb[i];
1176+
(*block_diff_ac)[3 * res_ix + i] += static_cast<float>(kMul * max_diff_xyb[i]);
11771177
}
11781178
}
11791179
}
@@ -1197,8 +1197,8 @@ void ButteraugliComparator::CombineChannels(
11971197
mask[i] = mask_xyb[i][(res_y + 3) * xsize_ + (res_x + 3)];
11981198
dc_mask[i] = mask_xyb_dc[i][(res_y + 3) * xsize_ + (res_x + 3)];
11991199
}
1200-
(*result)[res_ix] =
1201-
(DotProduct(&block_diff_dc[3 * res_ix], dc_mask) +
1200+
(*result)[res_ix] = static_cast<float>(
1201+
DotProduct(&block_diff_dc[3 * res_ix], dc_mask) +
12021202
DotProduct(&block_diff_ac[3 * res_ix], mask) +
12031203
DotProduct(&edge_detector_map[3 * res_ix], mask));
12041204
}
@@ -1319,7 +1319,7 @@ void MinSquareVal(size_t square_size, size_t offset,
13191319
for (size_t j = minh + 1; j < maxh; ++j) {
13201320
min = fmin(min, values[x + j * xsize]);
13211321
}
1322-
tmp[x + y * xsize] = min;
1322+
tmp[x + y * xsize] = static_cast<float>(min);
13231323
}
13241324
}
13251325
for (size_t x = 0; x < xsize; ++x) {
@@ -1330,7 +1330,7 @@ void MinSquareVal(size_t square_size, size_t offset,
13301330
for (size_t j = minw + 1; j < maxw; ++j) {
13311331
min = fmin(min, tmp[j + y * xsize]);
13321332
}
1333-
values[x + y * xsize] = min;
1333+
values[x + y * xsize] = static_cast<float>(min);
13341334
}
13351335
}
13361336
}
@@ -1438,7 +1438,7 @@ void DiffPrecompute(
14381438
double sup0 = fabs(valsh0[i]) + fabs(valsv0[i]);
14391439
double sup1 = fabs(valsh1[i]) + fabs(valsv1[i]);
14401440
double m = std::min(sup0, sup1);
1441-
(*mask)[i][ix] = m;
1441+
(*mask)[i][ix] = static_cast<float>(m);
14421442
}
14431443
}
14441444
}
@@ -1483,12 +1483,12 @@ void Mask(const std::vector<std::vector<float> > &xyb0,
14831483
const double p1 = w11 * s1;
14841484
const double p2 = w22 * s2;
14851485

1486-
(*mask)[0][idx] = MaskX(p0);
1487-
(*mask)[1][idx] = MaskY(p1);
1488-
(*mask)[2][idx] = MaskB(p2);
1489-
(*mask_dc)[0][idx] = MaskDcX(p0);
1490-
(*mask_dc)[1][idx] = MaskDcY(p1);
1491-
(*mask_dc)[2][idx] = MaskDcB(p2);
1486+
(*mask)[0][idx] = static_cast<float>(MaskX(p0));
1487+
(*mask)[1][idx] = static_cast<float>(MaskY(p1));
1488+
(*mask)[2][idx] = static_cast<float>(MaskB(p2));
1489+
(*mask_dc)[0][idx] = static_cast<float>(MaskDcX(p0));
1490+
(*mask_dc)[1][idx] = static_cast<float>(MaskDcY(p1));
1491+
(*mask_dc)[2][idx] = static_cast<float>(MaskDcB(p2));
14921492
}
14931493
}
14941494
for (int i = 0; i < 3; ++i) {

0 commit comments

Comments
 (0)