Opened 5 years ago

Closed 4 years ago

#590 closed defect (fixed)

Typos and duplicates in spec

Reported by: LGE_VCC Owned by:
Priority: minor Milestone:
Component: spec Version: VVC D6 vE
Keywords: Cc: ksuehring, bbross, XiangLi, fbossen, jvet@…

Description

Editorial issues in three places (P2001 V9)
(1) 7.3.2.3 in the syntax table of seq_parameter_set_rbsp
These syntax elements are duplicated

	sps_seq_parameter_set_id
	chroma_format_idc
	if( chroma_format_idc  = =  3 )
		separate_colour_plane_flag

(2) 7.3.9.10 There is one extra left bracket “(“ in the if statement around cu_chroma_qp_offset_flag

if( ( ( CbWidth[ chType ][ x0 ][ y0 ]  >  64  … 
change to =>
if( ( CbWidth[ chType ][ x0 ][ y0 ]  >  64  … 

(3) For variable CuPredMode , its 5th and 24th occurrences need to add chType as array index. The two occurrences can be found by searching CuPredMode[ x

CuPredMode[ x0 ][ y0 ]  =>  CuPredMode[ chType ][ x0 ][ y0 ]
CuPredMode[ x ][ y ]  => CuPredMode[ chType ][ x0 ][ y0 ]

Change history (2)

comment:1 Changed 4 years ago by yk

Good catches! All fixed in JVET-P2001-v10.

comment:2 Changed 4 years ago by yk

  • Resolution set to fixed
  • Status changed from new to closed
Note: See TracTickets for help on using tickets.