Opened 12 years ago Closed 12 years ago #890 closed defect (fixed)wrong value of log2TrafoSize in transform unit syntax 7.3.8.10
Description
In the current text, log2TrafoSize is used for the third argument when residual_coding for chroma is called in the following code :
if( log2TrafoSize > 2 ) {
}
Since the spec defines only the format 4:2:0 for the moment, the size of chroma transform block is half of that of luma. So the spec should be changed to :
if( log2TrafoSize > 2 ) {
} Change History (2)comment:1 Changed 12 years ago by DefaultCC Plugin
comment:2 Changed 12 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 issue is fixed in the current draft v10. In general, as for HM bugs, please check the latest version (of the draft) before reporting issues.