Opened 12 years ago Closed 12 years ago #907 closed defect (fixed)Incorrect cMax for last_significant_coeff_x_suffix and last_significant_coeff_y_suffix
Description
Table 9-32 says that last_significant_coeff_x_suffix uses a binarization of "FL, cMax =(last_significant_coeff_x_prefix >> 1) − 1".
However, on page 92 is says:
I believe this means that the binarization used is actually: Change History (4)comment:1 Changed 12 years ago by DefaultCC Plugin
comment:2 Changed 12 years ago by bbrosscomment:3 Changed 12 years ago by peterderivaz
I agree - sorry for the confusion in the initial bug report. comment:4 Changed 12 years ago by bbross
Fixed in JCTVC-L1003_v1. 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
|
Actually cMax is supposed to be the maximum value of the syntax element which is:
( 1 << ( ( last_significant_coeff_x_prefix >> 1 ) − 1 ) ) − 1
here. This it should be:
cMax = ( 1 << ( ( last_significant_coeff_x_prefix >> 1 ) − 1 ) ) − 1