Opened 4 years ago

Closed 4 years ago

#906 closed defect (fixed)

typo for number of extra SH bits

Reported by: jeromnhsu Owned by:
Priority: trivial Milestone:
Component: spec Version:
Keywords: Cc: ksuehring, bbross, XiangLi, fbossen, jvet@…

Description

In JVET-Q2001-vC,
7.4.3.18
NumExtraShBits = 0
for( i = 0; i < ( num_extra_sh_bits_bytes * 8 ); i++ )

if( extra_sh_bit_present_flag[ i ] ) (92)

NumExtraPhBits++

Should be
NumExtraShBits = 0
for( i = 0; i < ( num_extra_sh_bits_bytes * 8 ); i++ )

if( extra_sh_bit_present_flag[ i ] ) (92)

NumExtraPhShBits++

In 7.3.7.1
for( i = 0; i < NumExtraPhBits; i++ )

sh_extra_bit[ i ]

Should be
for( i = 0; i < NumExtraPhShBits; i++ )

sh_extra_bit[ i ]

Change history (2)

comment:1 Changed 4 years ago by yk

Thanks. Good catch! Will be fixed in Q2001-vD.

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.