﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
236	Tiles parameter naming convention change	shilin.xu		"The most recent WD text change two tiles parameters from ""tile_boundary_independence_idc"" and ""uniform_spacing_idc"" to ""tile_boundary_independence_flag"" and ""uniform_spacing_flag"", so we would like to make the same change in HM code to correspond to the WD test.
The places of the HM code which should be changed are:

1) In codePPS() function of TEncCavlc.cpp file,
WRITE_FLAG( pcPPS->getUniformSpacingIdr(), ""uniform_spacing_idc"" );
WRITE_FLAG( pcPPS->getTileBoundaryIndependenceIdr(), ""tile_boundary_independence_idc"" );
2) In codeSPS() function of TEncCavlc.cpp file,
WRITE_FLAG( pcSPS->getUniformSpacingIdr(), ""uniform_spacing_idc"" );
WRITE_FLAG( pcSPS->getTileBoundaryIndependenceIdr(), ""tile_boundary_independence_idc"" );
3) In parsePPS() function of TDecCAVLC.cpp file,
READ_FLAG ( uiCode, ""uniform_spacing_idc"" );
READ_FLAG ( uiCode, ""tile_boundary_independence_idc"" );
4) In parseSPS() function of TDecCAVLC,cpp file,
READ_FLAG ( uiCode, ""uniform_spacing_idc"" );
READ_FLAG ( uiCode, ""tile_boundary_independence_idc"" );

What we would like to do is change the ""idc"" to ""flag""."	defect	closed	minor		HM	HM-4.1	fixed		fbossen ksuehring davidf jct-vc@…
