ref: 9ba1d60bd1b0ff097b7fc88958be7ba7b589e7ca
parent: 4bb4c2291b20cb688e95f83efff3ca81d9a165ee
author: Yunqing Wang <[email protected]>
date: Tue Jul 1 04:58:05 EDT 2014
Fix visual studio build issue Fixed the signed/unsigned mismatch. Change-Id: Id83d603b8f1745b71f4cf695a0751e55518b1316
--- a/vp9/encoder/vp9_encodeframe.c
+++ b/vp9/encoder/vp9_encodeframe.c
@@ -1172,7 +1172,7 @@
const int offset = (mi_row >> 1) * cm->mb_cols + (mi_col >> 1);
int is_larger_better = 0;
int use32x32 = 0;
- int thr = cpi->source_var_thresh;
+ unsigned int thr = cpi->source_var_thresh;
vpx_memset(d32, 0, 4 * sizeof(diff));