Ignore:
Timestamp:
21 Nov 2013, 13:28:24 (11 years ago)
Author:
tech
Message:

Merged DEV3 ( branch HTM-8.2-dev3-Samsung@699 )

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HTM-8.2-dev0/source/Lib/TLibDecoder/TDecCu.cpp

    r708 r712  
    741741    for( UInt uiX = 0; uiX < uiWidth; uiX++ )
    742742    {
     743#if LGE_PRED_RES_CODING_DLT_DOMAIN_F0159
     744        if( (isDimMode( uiLumaPredMode ) || uiLumaPredMode == HOR_IDX || uiLumaPredMode == VER_IDX || uiLumaPredMode == DC_IDX) && pcCU->getSlice()->getIsDepth() && pcCU->getSlice()->getVPS()->getUseDLTFlag(pcCU->getSlice()->getLayerIdInVps()) )
     745        {
     746            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 ] ) );
     747        }
     748        else
     749        {
    743750      pReco    [ uiX ] = ClipY( pPred[ uiX ] + pResi[ uiX ] );
     751        }
     752#else
     753      pReco    [ uiX ] = ClipY( pPred[ uiX ] + pResi[ uiX ] );
     754#endif
    744755      pRecIPred[ uiX ] = pReco[ uiX ];
    745756    }
Note: See TracChangeset for help on using the changeset viewer.