Opened 14 years ago

Closed 14 years ago

#27 closed defect (fixed)

ROT index coding bug when ROT = 1 and MDDT = 0

Reported by: wjhan Owned by: fbossen
Priority: minor Milestone:
Component: HM Version:
Keywords: Cc: fbossen, ksuehring, davidf, jct-vc@…

Description

ROT index is now coded even when ROT=0 and MDDT=1.

For example: (when MDDT=1)

if (uiWidth >= 16)

encodeROTindex( pcCU, uiAbsPartIdx, uiDepth );

Should be:

if ( pcCU->getSlice()->getSPS()->getUseROT() && uiWidth >= 16 )
{

m_pcEntropyCoder->encodeROTindex( pcCU, uiAbsPartIdx, uiDepth );

}

Change History (6)

comment:1 Changed 14 years ago by fbossen

  • Owner set to fbossen
  • Status changed from new to accepted

comment:2 Changed 14 years ago by wjhan

Decoder should be changed in the similar way.

comment:3 Changed 14 years ago by fbossen

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

Fixed in r128

comment:4 Changed 12 years ago by davidf

  • Component set to HM

Updating component after adding WD (Text) tickets

comment:5 Changed 12 years ago by davidf

  • Cc fbossen ksuehring davidf added

comment:6 Changed 12 years ago by davidf

  • Cc jct-vc@… added
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

  • David Flynn(Subscriber, Participant)
  • Frank Bossen(Owner, Subscriber, Participant)
  • jct-vc@…(Subscriber)
  • karl.sharman@…(Always)
  • Karsten Suehring(Subscriber, Always)
  • Woo-Jin Han(Reporter, Participant)