Custom query (96 matches)

Filters
 
or
 
  
 
Columns

Show under each result:


Results (76 - 78 of 96)

Ticket Resolution Summary Owner Reporter
#83 fixed Wrong IVP flag condition in encoder tech merkle
Description

Condition if( bOnlyIVP && m_pcEncCfg->getUseIVP() ) in function TEncSearch::estIntraPredQT() results in testing else case when getUseIVP() is false, but should test nothing. This only happens for non-CTC cases and only affects encoder optimization.

The bug can be fixed as follows: TEncCu.cpp:

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
#85 fixed Memory leak tech tech
Description

Following arrays are not deleted in TEncTop.cpp:

#if MTK_LOW_LATENCY_IC_ENCODING_H0086_FIX

m_aICEnableCandidate = new Int[ 10 ]; m_aICEnableNum = new Int[ 10 ];

....

#86 fixed Memory leak tech tech
Description

Following object is not deleted in TDecCAVLC.cpp:

TComDLT* pcDLT = new TComDLT;

Note: See TracQuery for help on using queries.