id,summary,reporter,owner,description,type,status,priority,milestone,component,version,resolution,keywords,cc 648,Incorrect derivation process of ctxIdxInc for the syntax element significnat_coeff_flag,tsukuba,bbross,"In ""9.3.3.1.4 Derivation process of ctxIdxInc for the syntax element significant_coeff_flag"", there is a mismatch ('''bold type''') on eq.(9-26) between D8/J1003 d7 and HM7.2-dev(r2666). According to HM7.2-dev(r2666) or the adopted text of JCTVC-J0256, the offset value on 8x8TU is dependent on the scanIdx in both luma and chroma as follows; TComTrQuant.cpp::Int TComTrQuant::getSigCtxInc(...) { ... Int offset = '''blockType == 3 ? (scanIdx==SCAN_DIAG ? 9 : 15)''' : (textureType == TEXT_LUMA ? 21 : 12); ...} However, in D8/J1003 d7 eq.(9-26) is not matched with the above. –The variable sigCtx is modified as follows. –If cIdx is equal to 0, the following applies. ... –If log2TrafoSize is equal to 3, the following applies. sigCtx += ( scanIdx = = 0 ) ? 9 : 15 (9-24) ... –Otherwise (cIdx is greater than 0), the following applies. –If log2TrafoSize is equal to 3, the following applies. '''sigCtx += 9 (9-26)''' ... So, eq.(9-26) should be modified as follows; '''sigCtx += ( scanIdx = = 0 ) ? 9 : 15'''",defect,closed,minor,,Text,D8 (J1003) d7,invalid,,bbross wjhan jct-vc@…