Opened 12 years ago

Closed 12 years ago

#764 closed defect (fixed)

misplaced parenthesis in cRiceParam Eq. (9-7)

Reported by: sorin Owned by: bbross
Priority: minor Milestone:
Component: Text Version: D8 (K0030) v3
Keywords: coeff_abs_level_remaining Cc: bbross, wjhan, jct-vc@…

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

  • Cc bbross wjhan jct-vc@… added

comment:2 Changed 12 years ago by bbross

  • Resolution set to fixed
  • Status changed from new to closed

This will be fixed in JCVTC-K0030_v4.

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

  • Benjamin Bross(Owner, Subscriber, Participant)
  • jct-vc@…(Subscriber)
  • karl.sharman@…(Always)
  • Karsten Suehring(Always)
  • Sorin Cismas(Reporter)
  • Woo-Jin Han(Subscriber)