﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
548	Bug fixed for intra transform skipping (I0408) to support other LUC sizes	cuilinglan		"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 --;
    }
  }"	defect	closed	minor		HM	HM-7.0	fixed	LCU sizes	fbossen ksuehring davidf jct-vc@…
