Opened 13 years ago Closed 13 years ago #252 closed defect (fixed)code that does nothing
Description
line 128 in TComTrQuant.h does nothing:
m_iRem = (iQP + 6*g_uiBitIncrement)%6; Change History (4)comment:1 Changed 13 years ago by DefaultCC Plugin
comment:2 Changed 13 years ago by kolyacomment:3 Changed 13 years ago by fbossen
Fixed in r1688 comment:4 Changed 13 years ago by davidf
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
|
line 128 in TComTrQuant.h does nothing:
m_iRem = (iQP + 6*g_uiBitIncrement)%6;
m_iRem = iQP % 6;
addition of multiple of 6 is redundant