Commit 7145e3f7 authored by Yaowu Xu's avatar Yaowu Xu
Browse files

fixed comparison of different int types.

Change-Id: Iaa5543eb9e17589d46d9ed2bc363e2646ed4e01e
Showing with 2 additions and 2 deletions
......@@ -761,7 +761,7 @@ static void cal_nmvsadcosts_hp(int *mvsadcost[2]) {
VP9_COMP *vp9_create_compressor(VP9EncoderConfig *oxcf) {
int i, j;
unsigned int i, j;
VP9_COMP *const cpi = vpx_memalign(32, sizeof(VP9_COMP));
VP9_COMMON *const cm = cpi != NULL ? &cpi->common : NULL;
......@@ -1054,7 +1054,7 @@ VP9_COMP *vp9_create_compressor(VP9EncoderConfig *oxcf) {
}
void vp9_remove_compressor(VP9_COMP *cpi) {
int i;
unsigned int i;
if (!cpi)
return;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment