Opened 5 years ago
Closed 5 years ago
#501 closed defect (fixed)
8.5.2.14. Typo
Reported by: | fbarbier | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | |
Component: | spec | Version: | VVC D6 vE |
Keywords: | Cc: | ksuehring, bbross, XiangLi, fbossen, jvet@… |
Description
In 8.5.2.14 Rounding process for motion vectors
mvX[ 1 ] = ( ( mvX[ 0 ] + offset − ( mvX[ 1 ] >= 0 ) ) >> rightShift ) << leftShift (8‑654)
should be replaced by
mvX[ 1 ] = ( ( mvX[ 1 ] + offset − ( mvX[ 1 ] >= 0 ) ) >> rightShift ) << leftShift (8‑654)
(wrong usage of mvX[0] in current version)
Change history (1)
comment:1 Changed 5 years ago by bbross
- Resolution set to fixed
- Status changed from new to closed
Note: See TracTickets for help on using tickets.
Good catch! Thanks!
Fixed in a document we are preparing to be submitted as an editorial input
to the 16th JVET meeting.