Fix issue 374: eob read incorrectly
Updated eob changes to check_reset_2nd_coeffs function. Change-Id: Id1b21c91c7f0fd286640b487ffe47867009b717d
This commit is contained in:
parent
46639567a0
commit
d497ec688d
@ -479,7 +479,7 @@ static void check_reset_2nd_coeffs(MACROBLOCKD *x, int type,
|
|||||||
if(bd->dequant[0]>=35 && bd->dequant[1]>=35)
|
if(bd->dequant[0]>=35 && bd->dequant[1]>=35)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
for(i=0;i<bd->eob;i++)
|
for(i=0;i<(*bd->eob);i++)
|
||||||
{
|
{
|
||||||
int coef = bd->dqcoeff[vp8_default_zig_zag1d[i]];
|
int coef = bd->dqcoeff[vp8_default_zig_zag1d[i]];
|
||||||
sum+= (coef>=0)?coef:-coef;
|
sum+= (coef>=0)?coef:-coef;
|
||||||
@ -496,14 +496,14 @@ static void check_reset_2nd_coeffs(MACROBLOCKD *x, int type,
|
|||||||
**************************************************************************/
|
**************************************************************************/
|
||||||
if(sum < 35)
|
if(sum < 35)
|
||||||
{
|
{
|
||||||
for(i=0;i<bd->eob;i++)
|
for(i=0;i<(*bd->eob);i++)
|
||||||
{
|
{
|
||||||
int rc = vp8_default_zig_zag1d[i];
|
int rc = vp8_default_zig_zag1d[i];
|
||||||
bd->qcoeff[rc]=0;
|
bd->qcoeff[rc]=0;
|
||||||
bd->dqcoeff[rc]=0;
|
bd->dqcoeff[rc]=0;
|
||||||
}
|
}
|
||||||
bd->eob = 0;
|
*bd->eob = 0;
|
||||||
*a = *l = (bd->eob != !type);
|
*a = *l = (*bd->eob != !type);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user