Custom query (96 matches)

Filters
 
or
 
  
 
Columns

Show under each result:


Results (40 - 42 of 96)

Ticket Resolution Summary Owner Reporter
#55 fixed Pruning process for DV candidate in HTM 9.3 tech parkmw
Description

In HTM 9.3, the wrong motion information is used for pruning of DV candidate.

Line 4497 in TComDataCU.cpp is if(puhInterDirNeighbours[iCount] == puhInterDirNeighbours[iCnloop] && pcMvFieldNeighbours[iCnloop<<1]==pcMvFieldNeighbours[(iCount<<1)] && pcMvFieldNeighbours[(iCnloop<<1)+1]==pcMvFieldNeighbours[(iCount<<1)+1])

It should be fixed to if(ivCandDir[1] == puhInterDirNeighbours[iCnloop] && pcMvFieldNeighbours[iCnloop<<1]==tmpMV[0] && pcMvFieldNeighbours[(iCnloop<<1)+1]==tmpMV[1])

#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
#29 invalid HTM-7.0r1 problem when encoding two views and two depth maps tech maria.cucca
Description

Setting cfg file to encode two views and two depth maps, encoder stops running after encoding the first frame. Error message: Assertion failed: 0, file ..\..\source\App\TAppEncoder\TAppEncTop.cpp, line 1506

Note: See TracQuery for help on using queries.