Opened 4 years ago
Closed 4 years ago
#1135 closed defect (fixed)
A typo in section 7.3.10.4
Reported by: | chiaming | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | |
Component: | spec | Version: | VVC D9 vB |
Keywords: | Cc: | ksuehring, bbross, XiangLi, fbossen, jvet@… |
Description
In 7.3.10.4, cbHeightY should be replaced with cbHeight.
coding_tree( x0, y0, cbWidth, cbHeight, qgOnY, qgOnC, cbSubdiv, cqtDepth, mttDepth, depthOffset, partIdx, treeTypeCurr, modeTypeCurr ) {
...
if( !split_qt_flag ) {
if( MttSplitMode[ x0 ][ y0 ][ mttDepth ] = = SPLIT_BT_VER ) {
...
coding_tree( x0, y0, cbWidth / 2, cbHeight, qgOnY, qgOnC, cbSubdiv + 1,cqtDepth, mttDepth + 1, depthOffset, 0, treeType, modeType )
if( x1 < pps_pic_width_in_luma_samples )
coding_tree( x1, y0, cbWidth / 2, cbHeight
Y, qgOnY, qgOnC, cbSubdiv + 1, cqtDepth, mttDepth + 1, depthOffset, 1, treeType, modeType )
}
...
}
...
}
Change history (1)
comment:1 Changed 4 years ago by bbross
- Resolution set to fixed
- Status changed from new to closed
Good catch, will be fixed in JVET-S2001-v7.