Opened 5 years ago

Closed 5 years ago

#449 closed defect (fixed)

Typo on pred_mode_plt_flag signaling condition

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

Description

There are two minor typos on pred_mode_plt_flag signaling condition.

  1. Double "&&" word
if( ( ( ( slice_type = = I | | ( cbWidth = = 4 && cbHeight = = 4 ) | | sps_ibc_enabled_flag ) && CuPredMode[ x0 ][ y0 ] = = MODE_INTRA ) | | ( slice_type != I && !( cbWidth = = 4 && Height = = 4 ) && !sps_ibc_enabled_flag && CuPredMode[ x0 ][ y0 ] != MODE_INTRA ) ) && sps_palette_enabled_flag && cbWidth <= 64 && cbHeight <= 64 && && cu_skip_flag[ x0 ][ y0 ] = = 0 && modeType != MODE_INTER )
pred_mode_plt_flag ae(v)
  1. modeType typo
if( ( ( ( slice_type = = I | | ( cbWidth = = 4 && cbHeight = = 4 ) | | sps_ibc_enabled_flag ) && CuPredMode[ x0 ][ y0 ] = = MODE_INTRA ) | | ( slice_type != I && !( cbWidth = = 4 && Height = = 4 ) && !sps_ibc_enabled_flag && CuPredMode[ x0 ][ y0 ] != MODE_INTRA ) ) && sps_palette_enabled_flag && cbWidth <= 64 && cbHeight <= 64 && && cu_skip_flag[ x0 ][ y0 ] = = 0 && modeType != MODE_TYPE_INTER )
pred_mode_plt_flag ae(v)

Change history (1)

comment:1 Changed 5 years ago by bbross

  • Resolution set to fixed
  • Status changed from new to closed

Good catch! Thanks!

Fixed it in a document we are preparing to be submitted as an editorial input to the 16th JVET meeting.

Note: See TracTickets for help on using tickets.