Opened 10 years ago Closed 10 years ago #83 closed defect (fixed)Wrong IVP flag condition in encoder
Description
Condition if( bOnlyIVP && m_pcEncCfg->getUseIVP() ) in function TEncSearch::estIntraPredQT() results in testing else case when getUseIVP() is false, but should test nothing.
The bug can be fixed as follows: 1064a1065 > Bool bUseIVP = true; 1072a1074 > bUseIVP = m_pcEncCfg->getUseIVP(); 1073a1076,1077 > if( bUseIVP ) > { 1106a1111,1113 > #if HHI_DMM4_ENC_I0066 > } > #endif
TEncSearch.cpp: 3142,3144 < #if SEPARATE_FLAG_I0085 < if( bOnlyIVP && m_pcEncCfg->getUseIVP() ) < #else 3146d3142 < #endif Change history (2)comment:1 Changed 10 years ago by DefaultCC Plugin
comment:2 Changed 10 years ago by tech
Note: See TracTickets for help on using tickets. | This list contains all users that will be notified about changes made to this ticket. These roles will be notified: Reporter, Owner, Subscriber, Participant
|