Changes between Initial Version and Version 2 of Ticket #364


Ignore:
Timestamp:
22 Jul 2019, 16:58:47 (5 years ago)
Author:
ksuehring
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #364

    • Property Version changed from VTM-5.0rc1 to VTM-5.2
  • Ticket #364 – Description

    initial v2  
    11QP 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.
    22
     3{{{
    34  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 ) )
    45  {
    56    return ( ( cs.getCU( cu.blocks[cu.chType].pos().offset( 0, -1 ), cu.chType ) )->qp );
    67  }
     8}}}