Opened 13 years ago Closed 13 years ago #376 closed defect (fixed)section 6.5.1 raster order to tile scan order
Description
(From version dk)
In 6.5.1, an array CtbAddrTS[] is defined, seemingly for conversion of raster scan to tile scan order.
In the slice data syntax tables, an undefined array is referenced: CtbAddrRStoTS. It looks like the array in 6.5.1 (CtbAddrTS) and CtbAddrRStoTS might be the same, and their names should be aligned. Note that CtbAddrTS is widely referenced elsewhere as a variable, rather than an array.
Also, the definition of the raster scan to tile scan array in 6.5.1 does not look correct, and needs checking. Change History (6)comment:1 Changed 13 years ago by DefaultCC Plugin
comment:2 in reply to: ↑ description ; follow-up: ↓ 3 Changed 13 years ago by stworrallcomment:3 in reply to: ↑ 2 ; follow-up: ↓ 4 Changed 13 years ago by shilin.xu
We think the original pseudocode in the CD text is incorrect, and we also think the "Corrected pseudocode" is incorrect as well, the recommended pseudocode is:
for( ctbAddrRS = 0; ctbAddrRS < PicHeightInCtbs * PicWidthInCtbs; ctbAddrRS++ ) {
} comment:4 in reply to: ↑ 3 Changed 13 years ago by stworrall
Merged corrections:
for( ctbAddrRS = 0; ctbAddrRS < PicHeightInCtbs * PicWidthInCtbs; ctbAddrRS++ ) {
}
Replying to shilin.xu:
comment:5 Changed 13 years ago by bbross
comment:6 Changed 13 years ago by bbross
Fixed in draft 7 (JCVTC-I1003_d3.doc) 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
|
Corrected pseudocode for section 6.5.1 (to replace first block of pseudocode):
for( ctbAddrRS = 0; ctbAddrRS < PicHeightInCtbs * PicWidthInCtbs; ctbAddrRS++ ) {
}
Replying to stworrall: