fixed a warning
authorYaowu Xu <yaowu@google.com>
Mon, 17 Dec 2012 19:10:16 +0000 (11:10 -0800)
committerYaowu Xu <yaowu@google.com>
Mon, 17 Dec 2012 19:11:07 +0000 (11:11 -0800)
where variable is used without initialization

Change-Id: Ic6b52623802641060cad4a72271050aeaf20ad5c

vp9/common/vp9_mbpitch.c

index 84e473b..1107402 100644 (file)
@@ -45,7 +45,7 @@ static void setup_macroblock(MACROBLOCKD *xd, BLOCKSET bs) {
   int block;
 
   unsigned char **y, **u, **v;
-  unsigned char **y2, **u2, **v2;
+  unsigned char **y2 = NULL, **u2 = NULL, **v2 = NULL;
   BLOCKD *blockd = xd->block;
   int stride;