Merge "Change eob[] array type in splitmv RD loop to a regular integer." into experimental

This commit is contained in:
pascal massimino 2012-10-23 14:00:01 -07:00 committed by Gerrit Code Review
commit 73d387dcd2

View File

@ -2247,7 +2247,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;
@ -2287,7 +2287,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;