From 15296c24a6cbaabdccb7a30aa01295a803db6673 Mon Sep 17 00:00:00 2001 From: James Zern Date: Mon, 9 Jul 2012 17:36:01 -0700 Subject: [PATCH] I420VideoSource: add members to ctor initialization silences valgrind warnings about uninitialized values in SetSize() Change-Id: I54c4fdcc246687793393735b213c8777e79e47da --- test/i420_video_source.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/i420_video_source.h b/test/i420_video_source.h index f4717647b..c7362d2b5 100644 --- a/test/i420_video_source.h +++ b/test/i420_video_source.h @@ -28,6 +28,9 @@ class I420VideoSource : public VideoSource { img_(NULL), start_(start), limit_(limit), + frame_(0), + width_(0), + height_(0), framerate_numerator_(rate_numerator), framerate_denominator_(rate_denominator) { -- 2.50.1