Opened 5 years ago

Closed 5 years ago

#479 closed defect (fixed)

Typo in 8.4.5.2.14

Reported by: chiaming Owned by:
Priority: minor Milestone:
Component: spec Version: VVC D6 vE
Keywords: Cc: ksuehring, bbross, XiangLi, fbossen, jvet@…

Description

The allowed line check for PDPC when predModeIntra is greater than INTRA_ANGULAR50 should be changed from:

2. The variables refL[ x ][ y ], refT[ x ][ y ], wT[ y ], wL[ x ] and wTL[ x ][ y ] are derived as follows:
refL[ x ][ y ] = ( y < ( 3 << nScale ) ) ? sideRef[ dY[ x ][ y ] ] : 0	(8-262)

To the following:

2. The variables refL[ x ][ y ], refT[ x ][ y ], wT[ y ], wL[ x ] and wTL[ x ][ y ] are derived as follows:
refL[ x ][ y ] = ( x < ( 3 << nScale ) ) ? sideRef[ dY[ x ][ y ] ] : 0	(8-262)

Change history (1)

comment:1 Changed 5 years ago by bbross

  • Resolution set to fixed
  • Status changed from new to closed

Good catch! Thanks!
Fixed in a document we are preparing to be submitted as an editorial input
to the 16th JVET meeting.

Note: See TracTickets for help on using tickets.