Opened 5 years ago
Closed 4 years ago
#738 closed enhancement (fixed)
unnecessary configure warnings when setting MaxNumTriangleCand to less than 6
Reported by: | hanhuang | Owned by: | |
---|---|---|---|
Priority: | trivial | Milestone: | VTM-10.0 |
Component: | VTM | Version: | |
Keywords: | Cc: | ksuehring, XiangLi, fbossen, jvet@… |
Description
There're unnecessary configure warnings when setting MaxNumTriangleCand to less than 6. Suggest to remove the following checks:
if( m_SubPuMvpMode == 3 && m_maxNumMergeCand < 7 )
{
msg( WARNING, "\n" );
msg( WARNING, " WARNING: Allowing less than 7 merge candidates, although both \n" );
msg( WARNING, " advanced sup-pu temporal merging modes are enabled. \n" );
msg( WARNING, "\n" );
}
else if( m_SubPuMvpMode != 0 && m_maxNumMergeCand < 6 )
{
msg( WARNING, "\n" );
msg( WARNING, " WARNING: Allowing less than 6 merge candidates, although \n" );
msg( WARNING, " an advanced sup-pu temporal merging mode is enabled. \n" );
msg( WARNING, "\n" );
}
Change history (2)
comment:1 Changed 4 years ago by fbossen
comment:2 Changed 4 years ago by fbossen
- Milestone set to VTM-10.0
- Resolution set to fixed
- Status changed from new to closed
Suggestion included in https://vcgit.hhi.fraunhofer.de/jvet/VVCSoftware_VTM/-/merge_requests/1805