Changeset 487 in 3DVCSoftware


Ignore:
Timestamp:
20 Jun 2013, 19:57:23 (11 years ago)
Author:
tech
Message:

Fixed bug in TComDataCU::getInterMergeCandidates.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HTM-DEV-0.3-dev2/source/Lib/TLibCommon/TComDataCU.cpp

    r486 r487  
    44434443    Int iBlkX = ( getAddr() % picDepth->getFrameWidthInCU() ) * g_uiMaxCUWidth  + g_auiRasterToPelX[ g_auiZscanToRaster[ uiAbsPartAddrCurrCU ] ];
    44444444    Int iBlkY = ( getAddr() / picDepth->getFrameWidthInCU() ) * g_uiMaxCUHeight + g_auiRasterToPelY[ g_auiZscanToRaster[ uiAbsPartAddrCurrCU ] ];
    4445    
     4445
    44464446    Int* aiShiftLUT = getSlice()->getDepthToDisparityB(refViewIdx );
    44474447
     
    46634663#endif // H_3D_NBDV_REF
    46644664
    4665   TComMv      cDv = depthRefineFlag ? pDInfo->m_acNBDV : pDInfo->m_acDoNBDV;
    4666 
     4665  TComMv      cDv = depthRefineFlag ? pDInfo->m_acDoNBDV : pDInfo->m_acNBDV;
     4666 
    46674667  Int         iBasePosX   = Clip3( 0, pcBaseRec->getWidth () - 1, iCurrPosX + ( (cDv.getHor() + 2 ) >> 2 ) );
    46684668  Int         iBasePosY   = Clip3( 0, pcBaseRec->getHeight() - 1, iCurrPosY + ( (cDv.getVer() + 2 ) >> 2 ));
     
    47294729
    47304730#if H_3D_NBDV_REF
    4731         TComMv cMv = depthRefineFlag ? pDInfo->m_acNBDV : pDInfo->m_acDoNBDV;
     4731        TComMv cMv = depthRefineFlag ? pDInfo->m_acDoNBDV : pDInfo->m_acNBDV;
    47324732#endif // H_3D_NBDV_REF
    47334733        cMv.setVer(0);
Note: See TracChangeset for help on using the changeset viewer.