Custom query (96 matches)

Filters
 
or
 
  
 
Columns

Show under each result:


Results (19 - 21 of 96)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
Ticket Resolution Summary Owner Reporter
#86 fixed Memory leak tech tech
Description

Following object is not deleted in TDecCAVLC.cpp:

TComDLT* pcDLT = new TComDLT;

#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 ];

....

#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
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
Note: See TracQuery for help on using queries.