From ce1ce992ce30f01c723b4fcf67ea17266ba91712 Mon Sep 17 00:00:00 2001 From: Johann Date: Mon, 18 Oct 2010 13:23:39 -0400 Subject: copy compiler warning fixes generic version got fixed, but not the arm version. fixes: vp8/encoder/arm/mcomp_arm.c: In function 'vp8_full_search_sadx3': vp8/encoder/arm/mcomp_arm.c:1208: warning: pointer targets in passing argument 5 of 'fn_ptr->sdx3f' differ in signedness vp8/encoder/arm/mcomp_arm.c:1208: note: expected 'unsigned int *' but argument is of type 'int *' and another unsigned change to keep the files similar Change-Id: I1b6255dc3a03b90394a791ee0d15d8167d9454db --- vp8/encoder/arm/mcomp_arm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'vp8') diff --git a/vp8/encoder/arm/mcomp_arm.c b/vp8/encoder/arm/mcomp_arm.c index 9a138e6fc..56358328e 100644 --- a/vp8/encoder/arm/mcomp_arm.c +++ b/vp8/encoder/arm/mcomp_arm.c @@ -1155,7 +1155,7 @@ int vp8_full_search_sadx3(MACROBLOCK *x, BLOCK *b, BLOCKD *d, MV *ref_mv, int er int r, c; unsigned char *check_here; - int thissad; + unsigned int thissad; int ref_row = ref_mv->row >> 3; int ref_col = ref_mv->col >> 3; @@ -1165,7 +1165,7 @@ int vp8_full_search_sadx3(MACROBLOCK *x, BLOCK *b, BLOCKD *d, MV *ref_mv, int er int col_min = ref_col - distance; int col_max = ref_col + distance; - int sad_array[3]; + unsigned int sad_array[3]; // Work out the mid point for the search in_what = *(d->base_pre) + d->pre; -- cgit v1.2.3