Changes between Initial Version and Version 2 of Ticket #364
- Timestamp:
- 22 Jul 2019, 16:58:47 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #364
- Property Version changed from VTM-5.0rc1 to VTM-5.2
-
Ticket #364 – Description
initial v2 1 1 QP prediction from the top CTU (at left edge) is being used across slice/tile/brick boundaries. The following if statement should include an additional isSameSliceAndTile check before using the top CTU QP. 2 2 3 {{{ 3 4 if ( !cu.blocks[cu.chType].x && !( cu.blocks[cu.chType].y & ( cs.pcv->maxCUHeightMask >> getChannelTypeScaleY( cu.chType, cu.chromaFormat ) ) ) && ( cs.getCU( cu.blocks[cu.chType].pos().offset( 0, -1 ), cu.chType) != NULL ) ) 4 5 { 5 6 return ( ( cs.getCU( cu.blocks[cu.chType].pos().offset( 0, -1 ), cu.chType ) )->qp ); 6 7 } 8 }}}