Opened 13 years ago Closed 13 years ago #527 closed defect (fixed)Typo in derivation of MinCbAddrZS
Description
The inner loop of "Derivation process for the minimum coding block address of a coding block" is: for (i = 0, p = 0; i < Log2CtbSize - Log2MinCbSize; i++) { m = 1 << i p += (m & x ? m*m : 0) + (m & y ? 2*m*m : 0) MinCbAddrZS[x][y] += p }
But to get a proper zscan order(e.g. (0, 0) => 0, (0, 1) => 2, (1, 0) => 1, (1, 1) => 3), either the "p +=" should be a "p =" or the "MinCbAddrZS[x][y] += p" should be after the loop. Change History (2)comment:1 Changed 13 years ago by DefaultCC Plugin
comment:2 Changed 13 years ago by bbross
Note: See
TracTickets for help on using
tickets. | This list contains all users that will be notified about changes made to this ticket. These roles will be notified: Reporter, Owner, Subscriber, Participant
|
This is fixed in JCTVC-I1003_d3