Fix an uninitialized warning.

Change-Id: I3ac1070df2948f6d8637ade7192400be53a7675c
This commit is contained in:
Alex Converse 2016-02-05 09:52:53 -08:00
parent f7b4364cbb
commit def519efb3

View File

@ -949,7 +949,8 @@ static void estimate_block_intra(int plane, int block, BLOCK_SIZE plane_bsize,
// TODO(jingning): Skip is signalled per prediciton block not per tx block.
rate += vp9_cost_bit(vp9_get_skip_prob(&cpi->common, xd), is_skippable);
} else {
unsigned int var, sse;
unsigned int var = 0;
unsigned int sse = 0;
model_rd_for_sb_uv(cpi, plane_bsize, x, xd, &rate, &dist, &var, &sse,
plane, plane);
}