Changeset 687 in 3DVCSoftware for branches/HTM-8.2-dev3-LG/source/Lib/TLibDecoder
- Timestamp:
- 12 Nov 2013, 05:14:41 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-8.2-dev3-LG/source/Lib/TLibDecoder/TDecCu.cpp
r673 r687 695 695 #if LGE_PRED_RES_CODING_DLT_DOMAIN_F0159 696 696 if( (isDimMode( uiLumaPredMode ) || uiLumaPredMode == HOR_IDX || uiLumaPredMode == VER_IDX || uiLumaPredMode == DC_IDX) && pcCU->getSlice()->getIsDepth() && pcCU->getSlice()->getVPS()->getUseDLTFlag(pcCU->getSlice()->getLayerIdInVps()) ) 697 { 697 698 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 ] ) ); 699 } 698 700 else 701 { 699 702 pReco [ uiX ] = ClipY( pPred[ uiX ] + pResi[ uiX ] ); 703 } 700 704 #else 701 705 pReco [ uiX ] = ClipY( pPred[ uiX ] + pResi[ uiX ] );
Note: See TracChangeset for help on using the changeset viewer.