Opened 12 years ago Closed 12 years ago #764 closed defect (fixed)misplaced parenthesis in cRiceParam Eq. (9-7)
Description
Section 9.3.2.7:
cRiceParam = Min( cLastRiceParam + ( cLastAbsLevel > ( 3 * ( 1 << cLastRiceParam ) ) ) ? 1 : 0, 4 ) (9 7)
should be:
cRiceParam = Min( cLastRiceParam + ( cLastAbsLevel > ( 3 * ( 1 << cLastRiceParam ) ) ? 1 : 0 ), 4 ) (9 7)
or:
cRiceParam = Min( cLastRiceParam + ( cLastAbsLevel > 3 * ( 1 << cLastRiceParam ) ? 1 : 0 ), 4 ) (9 7) Change History (2)comment:1 Changed 12 years ago by DefaultCC Plugin
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
|