﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
1013	Missing byte alignment in general_constraint_info and other parameters	e.thomas		"From VVC spec Draft 8, the end of the general_constraint_info syntax is as follows:

{{{

no_aps_constraint_flag u(1)

while( !byte_aligned( ) )
  gci_alignment_zero_bit f(1)

num_reserved_constraint_bytes u(8)

for( i = 0; i < num_reserved_constraint_bytes; i++ )
  gci_reserved_constraint_byte[ i ] u(8)

while( !byte_aligned( ) )
  gci_alignment_zero_bit f(1)

num_reserved_constraint_bytes u(8)
for( i = 0; i < num_reserved_constraint_bytes; i++ )
  gci_reserved_constraint_byte[ i ] u(8)

}}}

This seems to be missing in both VCL reader and writer, e.g. here writer:

{{{

  WRITE_FLAG(cinfo->getNoGdrConstraintFlag() ? 1 : 0, ""no_gdr_constraint_flag"");
  WRITE_FLAG(cinfo->getNoApsConstraintFlag() ? 1 : 0, ""no_aps_constraint_flag"");
}

}}}

"	defect	closed	minor		VTM	VTM-8.0	fixed		ksuehring XiangLi fbossen jvet@…
