Custom query (96 matches)

Filters
 
or
 
  
 
Columns

Show under each result:


Results (22 - 24 of 96)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
Ticket Resolution Summary Owner Reporter
#21 fixed DMM Signalling tech lizhang
Description

'y0+i' should be replaced by 'y0+j' in all the following arrays used in section H.7.3.9.1: wedge_full_tab_idx[ x0 + i ][ y0 + i ] wedge_predtex_tab_idx[ x0 + i ][ y0 + i ] dmm_delta_end_flag[ x0 + i ][ y0 + i ] dmm_delta_end_abs_minus1[ x0 + i ][ y0 + i ] dmm_dc_1_abs[ x0 + i ][ y0 + i ] dmm_dc_1_sign_flag[ x0 + i ][ y0 + i ] dmm_dc_2_abs[ x0 + i ][ y0 + i ] dmm_dc_2_sign_flag[ x0 + i ][ y0 + i ]

'dmm_delta_end_sign_flag[ x0 ][ y0 ]' used in section H.7.3.9.1 should be replaced by 'dmm_delta_end_sign_flag[ x0 + i ][ y0 + j ]'

#22 fixed Semantics related to chain coding tech lizhang
Description

The following two equations, DcOffsetP0[ x0 ][ y0 ] = ( 1 − 2 *edge_dc_0_sign_flag[ x0 ][ y0 ]) * edge_dc_1_abs[ x0 ][ y0 ] (H 12) DcOffsetP1[ x0 ][ y0 ] = ( 1 − 2 *edge_dc_0_sign_flag[ x0 ][ y0 ]) * edge_dc_1_abs[ x0 ][ y0 ]

should be replaced by: DcOffsetP0[ x0 ][ y0 ] = ( 1 − 2 *edge_dc_0_sign_flag[ x0 ][ y0 ]) * edge_dc_0_abs[ x0 ][ y0 ] (H 12) DcOffsetP1[ x0 ][ y0 ] = ( 1 − 2 *edge_dc_1_sign_flag[ x0 ][ y0 ]) * edge_dc_1_abs[ x0 ][ y0 ] (H 13)

#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() ) )

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