summaryrefslogtreecommitdiff
path: root/vp8
diff options
context:
space:
mode:
authorRonald S. Bultje <rbultje@google.com>2012-10-23 09:23:23 -0700
committerRonald S. Bultje <rbultje@google.com>2012-10-23 09:23:23 -0700
commit6498516bb6fe15cc8f3d8b895f1f10ba3cbc44fb (patch)
tree29a6a3525fb14208376da954770bf7f30da577f1 /vp8
parentf93d316e0c7121aca5857f3d6e1530dcd82e9d7f (diff)
downloadlibvpx-6498516bb6fe15cc8f3d8b895f1f10ba3cbc44fb.tar
libvpx-6498516bb6fe15cc8f3d8b895f1f10ba3cbc44fb.tar.gz
libvpx-6498516bb6fe15cc8f3d8b895f1f10ba3cbc44fb.tar.bz2
libvpx-6498516bb6fe15cc8f3d8b895f1f10ba3cbc44fb.zip
Change eob[] array type in splitmv RD loop to a regular integer.
Change-Id: I240d6b50069fd3f35cc4fed2f4507796f0ef25e9
Diffstat (limited to 'vp8')
-rw-r--r--vp8/encoder/rdopt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/vp8/encoder/rdopt.c b/vp8/encoder/rdopt.c
index 136151bef..2c31f960a 100644
--- a/vp8/encoder/rdopt.c
+++ b/vp8/encoder/rdopt.c
@@ -2249,7 +2249,7 @@ typedef struct {
int segment_yrate;
B_PREDICTION_MODE modes[16];
int_mv mvs[16], second_mvs[16];
- unsigned char eobs[16];
+ int eobs[16];
int mvthresh;
int *mdcounts;
@@ -2289,7 +2289,7 @@ static void rd_check_segment_txsize(VP8_COMP *cpi, MACROBLOCK *x,
int rate = 0;
int sbr = 0, sbd = 0;
int segmentyrate = 0;
- uint8_t best_eobs[16] = { 0 };
+ int best_eobs[16] = { 0 };
vp8_variance_fn_ptr_t *v_fn_ptr;