shithub: libvpx

Download patch

ref: 3108fbd22987c4a0a15b9b51c6e8c4877df6acda
parent: 799ab7c064ec4fec8f0ea1a480f814fc4d4e97bf
author: Johann <johannkoenig@google.com>
date: Thu Jun 16 10:22:55 EDT 2016

vp8 stats file: initialize to 0

Cleans up -Wextra warning:
missing initializer for field ‘intra_error’ of ‘FIRSTPASS_STATS’

Change-Id: I42c1413234aba207f8e89f2e040e14a81bca511e

--- a/vp8/encoder/firstpass.c
+++ b/vp8/encoder/firstpass.c
@@ -18,6 +18,7 @@
 #include "onyx_int.h"
 #include "vpx_dsp/variance.h"
 #include "encodeintra.h"
+#include "vp8/common/common.h"
 #include "vp8/common/setupintrarecon.h"
 #include "vp8/common/systemdependent.h"
 #include "mcomp.h"
@@ -2417,7 +2418,7 @@
     int tmp_q;
     int frames_left = (int)(cpi->twopass.total_stats.count - cpi->common.current_video_frame);
 
-    FIRSTPASS_STATS this_frame = {0};
+    FIRSTPASS_STATS this_frame;
     FIRSTPASS_STATS this_frame_copy;
 
     double this_frame_intra_error;
@@ -2424,6 +2425,8 @@
     double this_frame_coded_error;
 
     int overhead_bits;
+
+    vp8_zero(this_frame);
 
     if (!cpi->twopass.stats_in)
     {