Opened 12 years ago

Closed 12 years ago

#767 closed defect (fixed)

unnecessary condition for cbf_cb/cbf_cr in 7.3.8.8

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

Description

At 7.3.8.8 Transform tree syntax, the condition for cbf_cb / cbf_cr,
the condition " if ( trafoDepth == 0 | | log2TrafoSize > 2 ) " is present.
However, if trafoDepth is equal to "0", log2TrafoSize is always greater than and equal to "3".

Replace
if( trafoDepth == 0 | | log2TrafoSize > 2 ){

if( trafoDepth == 0 | | cbf_cb[ xBase ][ yBase ][ trafoDepth - 1 ] )

cbf_cb[ x0 ][ y0 ][ trafoDepth ]

if( trafoDepth == 0 | | cbf_cr[ xBase ][ yBase ][ trafoDepth - 1 ] )

cbf_cr[ x0 ][ y0 ][ trafoDepth ]

}
by
if( log2TrafoSize > 2 ) {

if( trafoDepth == 0 | | cbf_cb[ xBase ][ yBase ][ trafoDepth - 1 ] )

cbf_cb[ x0 ][ y0 ][ trafoDepth ]

if( trafoDepth == 0 | | cbf_cr[ xBase ][ yBase ][ trafoDepth - 1 ] )

cbf_cr[ x0 ][ y0 ][ trafoDepth ]

}

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)
  • sasai(Reporter)
  • Woo-Jin Han(Subscriber)