shithub: libvpx

Download patch

ref: 15296c24a6cbaabdccb7a30aa01295a803db6673
parent: eab09e34e3e3cd0da671b4dbb7fd75e976915fa7
author: James Zern <jzern@google.com>
date: Mon Jul 9 13:36:01 EDT 2012

I420VideoSource: add members to ctor initialization

silences valgrind warnings about uninitialized values in SetSize()

Change-Id: I54c4fdcc246687793393735b213c8777e79e47da

--- a/test/i420_video_source.h
+++ b/test/i420_video_source.h
@@ -28,6 +28,9 @@
         img_(NULL),
         start_(start),
         limit_(limit),
+        frame_(0),
+        width_(0),
+        height_(0),
         framerate_numerator_(rate_numerator),
         framerate_denominator_(rate_denominator) {
 
--