fixed a warning

where variable is used without initialization

Change-Id: Ic6b52623802641060cad4a72271050aeaf20ad5c
This commit is contained in:
Yaowu Xu 2012-12-17 11:10:16 -08:00
parent 6247b239bc
commit 0405cd8e9f

View 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;