﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
27	ROT index coding bug when ROT = 1 and MDDT = 0	wjhan	fbossen	"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 );
  }
"	defect	closed	minor		HM		fixed		fbossen ksuehring davidf jct-vc@…
