Custom query (96 matches)

Filters
 
or
 
  
 
Columns

Show under each result:


Results (31 - 33 of 96)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
Ticket Resolution Summary Owner Reporter
#23 fixed Disparity vector derivation of VSP mode in depth coding tech hongbin.liu
Description

In section H.8.5.4, NBDV is used to derive an initial disparity vector for both texture and depth. However, in HTM-6.1,NBDV is not called for depth, instead, (0, 0) is always used as an initial disparity vector. As shown in the following codes, in function TComDataCU::getInterMergeCandidates, NBDV is called only when "bNoPdmMerge" is false, and "bNoPdmMerge" is fasle for texture but is true for depth.

if(!bNoPdmMerge)

{

#if FCO_DVP_REFINE_C0132_C0170

if( !getPic()->getDepthCoded() )

#endif

getDisMvpCandNBDV(uiPUIdx, uiAbsPartIdx, &cDisInfo , true

#if MERL_VSP_C0152

, true

#endif );

}

A suggested revision is to change if(!bNoPdmMerge) to if(!bNoPdmMerge | | ( getSlice()->getIsDepth() && getSlice()->getViewId() ) )

#24 fixed cabac ctx initialization error for edge_Intra and SDC tech hongbin.liu
Description

In HTM-6.1 ContextTables.h, Following array including INIT_EDGE_INTRA, INIT_EDGE_INTRA_DELTA_DC, INIT_SDC_FLAG, INIT_SDC_RESIDUAL_FLAG, INIT_SDC_SIGN_FLAG, INIT_SDC_RESIDUAL and INIT_SDC_PRED_MODE should be defined as "static const UChar" instead of "static const Short"

#50 fixed delete problems in HTM9.0 tech jicheng
Description

In HTM9.0, the following code in TDecCU.cpp (490), TDecEntropy.cpp(404), TEncCU.cpp(2096), and TEncSearch.cpp(4494)

delete pcMvFieldSP; delete puhInterDirSP;

should be modified as

delete [] pcMvFieldSP; delete [] puhInterDirSP;

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
Note: See TracQuery for help on using queries.