Changeset 673 in 3DVCSoftware for branches/HTM-8.2-dev3-LG/source/Lib/TLibDecoder
- Timestamp:
- 7 Nov 2013, 08:47:42 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified branches/HTM-8.2-dev3-LG/source/Lib/TLibDecoder/TDecCu.cpp ΒΆ
r655 r673 693 693 for( UInt uiX = 0; uiX < uiWidth; uiX++ ) 694 694 { 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 695 701 pReco [ uiX ] = ClipY( pPred[ uiX ] + pResi[ uiX ] ); 702 #endif 696 703 pRecIPred[ uiX ] = pReco[ uiX ]; 697 704 }
Note: See TracChangeset for help on using the changeset viewer.