Opened 5 years ago
Closed 4 years ago
#1387 closed defect (fixed)
6.5.3: wrong loop variable in equation 26
Reported by: | fbossen | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | |
Component: | spec | Version: | VVC D10 vH |
Keywords: | Cc: | ksuehring, bbross, XiangLi, fbossen, jvet@… |
Description
for( x = 0; y < blkWidth; y++ )
should most likely be
for( x = 0; x < blkWidth; x++ )
Change history (2)
comment:1 Changed 5 years ago by bbross
comment:2 Changed 4 years ago by bbross
- Resolution set to fixed
- Status changed from new to closed
Fixed as discussed/suggested in JVET-T0110-v2.
Note: See TracTickets for help on using tickets.
Thanks! Good catch und will be fixed.