Ignore:
Timestamp:
7 Nov 2013, 08:47:42 (11 years ago)
Author:
lg
Message:

JCT3V-F0159; JCT3V-F0160
Bugfix is included. (JCT3V-F0158)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified branches/HTM-8.2-dev3-LG/source/Lib/TLibDecoder/TDecCu.cpp ΒΆ

    r655 r673  
    693693    for( UInt uiX = 0; uiX < uiWidth; uiX++ )
    694694    {
     695#if LGE_PRED_RES_CODING_DLT_DOMAIN_F0159
     696        if( (isDimMode( uiLumaPredMode ) || uiLumaPredMode == HOR_IDX || uiLumaPredMode == VER_IDX || uiLumaPredMode == DC_IDX) && pcCU->getSlice()->getIsDepth() && pcCU->getSlice()->getVPS()->getUseDLTFlag(pcCU->getSlice()->getLayerIdInVps()) )
     697            pReco    [ uiX ] = pcCU->getSlice()->getVPS()->idx2DepthValue( pcCU->getSlice()->getLayerIdInVps(), Clip3( 0, pcCU->getSlice()->getVPS()->getNumDepthValues( pcCU->getSlice()->getLayerIdInVps() ) - 1, pcCU->getSlice()->getVPS()->depthValue2idx( pcCU->getSlice()->getLayerIdInVps(), pPred[ uiX ] ) + pResi[ uiX ] ) );
     698        else
     699            pReco    [ uiX ] = ClipY( pPred[ uiX ] + pResi[ uiX ] );
     700#else
    695701      pReco    [ uiX ] = ClipY( pPred[ uiX ] + pResi[ uiX ] );
     702#endif
    696703      pRecIPred[ uiX ] = pReco[ uiX ];
    697704    }
Note: See TracChangeset for help on using the changeset viewer.