Opened 5 years ago
Closed 5 years ago
#893 closed defect (fixed)
TYPO in the semantics of max_num_merge_cand_minus_max_num_gpm_cand
Reported by: | chunchic | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | |
Component: | spec | Version: | VVC D8 vB |
Keywords: | Cc: | ksuehring, XiangLi, fbossen, jvet@…, bbross |
Description ¶
In JVET-Q2001-vC, there is a TYPO in the semantics of max_num_merge_cand_minus_max_num_gpm_cand, as shown below.
The "MaxNumMergeCand = 2" should be corrected by "MaxNumGpmMergeCand = 2".
[JVET-Q2001-vC]
if( sps_gpm_enabled_flag && MaxNumMergeCand >= 3 ) MaxNumGpmMergeCand = MaxNumMergeCand − max_num_merge_cand_minus_max_num_gpm_cand (66) else if( sps_gpm_enabled_flag && MaxNumMergeCand = = 2 ) '''MaxNumMergeCand = 2''' else
[Correction]
if( sps_gpm_enabled_flag && MaxNumMergeCand >= 3 ) MaxNumGpmMergeCand = MaxNumMergeCand − max_num_merge_cand_minus_max_num_gpm_cand (66) else if( sps_gpm_enabled_flag && MaxNumMergeCand = = 2 ) '''MaxNumGpmMergeCand = 2''' else
Change history (1)
comment:1 Changed 5 years ago by yk
- Resolution set to fixed
- Status changed from new to closed
Note: See TracTickets for help on using tickets.
Good catch! Thanks! Will be fixed in Q2001-vD.