diff --git a/vp8/encoder/encodemb.c b/vp8/encoder/encodemb.c index faa1a8e3300a7a58af5ec7a4f6a5f2e93530f397..db83b2f752e8dc4db0177c9c234bb7de5ec2e1ef 100644 --- a/vp8/encoder/encodemb.c +++ b/vp8/encoder/encodemb.c @@ -479,7 +479,7 @@ static void check_reset_2nd_coeffs(MACROBLOCKD *x, int type, if(bd->dequant[0]>=35 && bd->dequant[1]>=35) return; - for(i=0;i<bd->eob;i++) + for(i=0;i<(*bd->eob);i++) { int coef = bd->dqcoeff[vp8_default_zig_zag1d[i]]; sum+= (coef>=0)?coef:-coef; @@ -496,14 +496,14 @@ static void check_reset_2nd_coeffs(MACROBLOCKD *x, int type, **************************************************************************/ if(sum < 35) { - for(i=0;i<bd->eob;i++) + for(i=0;i<(*bd->eob);i++) { int rc = vp8_default_zig_zag1d[i]; bd->qcoeff[rc]=0; bd->dqcoeff[rc]=0; } - bd->eob = 0; - *a = *l = (bd->eob != !type); + *bd->eob = 0; + *a = *l = (*bd->eob != !type); } }