shithub: libvpx

Download patch

ref: 546a21025929aaea1ce6a2598616057f1959c653
parent: c9a459216dc3d33db60147d14caad58c586f354b
author: Jerome Jiang <jianj@google.com>
date: Thu Apr 12 11:05:58 EDT 2018

Silence warning when built with --enable-internal-stats.

Change-Id: I3a600a9baf2b8e46c109f4ec2b5bd6bafda4bf58

--- a/vpx_dsp/ssim.c
+++ b/vpx_dsp/ssim.c
@@ -284,7 +284,7 @@
   for (i = 0; i < height;
        i += 4, img1 += img1_pitch * 4, img2 += img2_pitch * 4) {
     for (j = 0; j < width; j += 4, ++c) {
-      Ssimv sv = { 0 };
+      Ssimv sv = { 0, 0, 0, 0, 0, 0 };
       double ssim;
       double ssim2;
       double dssim;