Opened 7 years ago

Closed 7 years ago

#33 closed defect (fixed)

Block level IC flag may be on when slice level IC flag is off

Reported by: XiangLi Owned by:
Priority: minor Milestone: HM-16.6-JEM-4.0
Component: JEM Version: HM-16.6-JEM-3.2
Keywords: Cc: ksuehring, XiangLi, jvet@…

Description

In the following code, slice level IC flag is not checked so that block level IC flag may be on even when slice level IC flag is off.

#if VCEG_AZ06_IC

if( getSlice()->getSPS()->getICFlag() )
{

pbICFlag[iCount] = bAtmvpAva ? !bICFlag : false;

}

#endif

It is proposed to change as follows

#if VCEG_AZ06_IC

if( getSlice()->getApplyIC() )
{

pbICFlag[iCount] = bAtmvpAva ? !bICFlag : false;

}

#endif

Change history (1)

comment:1 Changed 7 years ago by XiangLi

  • Milestone set to HM-16.6-JEM-4.0
  • Resolution set to fixed
  • Status changed from new to closed

Fixed in r309.

Note: See TracTickets for help on using tickets.