Merge "Fix int64_t to unsigned int conversion warnings"
diff --git a/vp9/encoder/vp9_rdopt.c b/vp9/encoder/vp9_rdopt.c index d3a1db8..c55f1e4 100644 --- a/vp9/encoder/vp9_rdopt.c +++ b/vp9/encoder/vp9_rdopt.c
@@ -172,7 +172,7 @@ 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;