﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
33	Block level IC flag may be on when slice level IC flag is off	XiangLi		"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

"	defect	closed	minor	HM-16.6-JEM-4.0	JEM	HM-16.6-JEM-3.2	fixed		ksuehring XiangLi jvet@…
