Merge "Fix int64_t to unsigned int conversion warnings"

This commit is contained in:
Jingning Han 2014-08-29 17:15:46 -07:00 committed by Gerrit Code Review
commit deb8882cca

View File

@ -172,7 +172,7 @@ static void model_rd_for_sb(VP9_COMP *cpi, BLOCK_SIZE bsize,
const int ref = xd->mi[0]->mbmi.ref_frame[0];
unsigned int sse;
unsigned int var = 0;
int64_t sum_sse = 0;
unsigned int sum_sse = 0;
const int shift = 8;
int rate;
int64_t dist;