Custom query (96 matches)

Filters
 
or
 
  
 
Columns

Show under each result:


Results (55 - 57 of 96)

Ticket Resolution Summary Owner Reporter
#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

#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
#36 fixed Range of distortion vaule for VSO tech parkmw
Description

In HTM 7.0r1, when performing VSO, sometimes distortion value can exceed the range of 32-bit integer.

This problem can be solved by changing the variable type "Dist" from 32-bit integer to 64-bit integer.

The bug-fix provides 0.1% bit-saving for synthesized views.

Note: See TracQuery for help on using queries.