Opened 12 years ago

Closed 12 years ago

#548 closed defect (fixed)

Bug fixed for intra transform skipping (I0408) to support other LUC sizes

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

Description

For intra transform skipping(I0408), at decoder, a bug is fixed to enable the support of other LCU sizes besides 64x64.

Under the function "parseTransformSkipFlags",
the following three lines

if(eTType!= TEXT_LUMA && uiDepth == 4)
{

uiDepth --;

}

are modified to be as follows:

if(eTType!= TEXT_LUMA)
{

const UInt uiLog2TrafoSize = g_aucConvertToBit[pcCU->getSlice()->getSPS()->getMaxCUWidth()] + 2 - uiDepth;
if(uiLog2TrafoSize == 2)
{

uiDepth --;

}

}

Change History (2)

comment:1 Changed 12 years ago by DefaultCC Plugin

  • Cc fbossen ksuehring davidf jct-vc@… added

comment:2 Changed 12 years ago by fbossen

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

Fixed in r2483

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)
  • Frank Bossen(Subscriber, Participant)
  • jct-vc@…(Subscriber)
  • karl.sharman@…(Always)
  • Karsten Suehring(Subscriber, Always)