Opened 4 years ago
Closed 4 years ago
#1287 closed defect (fixed)
Order of operations in Table 127
Reported by: | bheng | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | |
Component: | spec | Version: | VVC D10 vE |
Keywords: | Cc: | ksuehring, bbross, XiangLi, fbossen, jvet@… |
Description
In the cMax derivation for the last_sig_coeff_x_suffix and last_sig_coeff_y_suffix syntax elements in Table 127, the final parenthesis is misplaced.
cMax = ( 1 << ( ( last_sig_coeff_x_prefix >> 1 ) − 1 ) − 1 )
cMax = ( 1 << ( ( last_sig_coeff_y_prefix >> 1 ) − 1 ) − 1 )
I would suggest the following instead:
cMax = ( 1 << ( ( last_sig_coeff_x_prefix >> 1 ) − 1 ) ) − 1
cMax = ( 1 << ( ( last_sig_coeff_y_prefix >> 1 ) − 1 ) ) − 1
Change history (1)
comment:1 Changed 4 years ago by jlchen
- Resolution set to fixed
- Status changed from new to closed
Note: See TracTickets for help on using tickets.
Good catch! This issue will be fixed in S2001-vH release.