Changeset 1048 in 3DVCSoftware for branches/HTM-12.0-dev1/source/Lib/TLibEncoder
- Timestamp:
- 18 Aug 2014, 09:35:34 (11 years ago)
- Location:
- branches/HTM-12.0-dev1/source/Lib/TLibEncoder
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-12.0-dev1/source/Lib/TLibEncoder/TEncCavlc.cpp
r1039 r1048 2126 2126 } 2127 2127 #if H_3D 2128 #if LGE_FCO_I0116 2129 if( pcSlice->getVPS()->hasCamParInSliceHeader( pcSlice->getViewIndex() ) && pcSlice->getIsDepth() ) 2130 #else 2128 2131 if( pcSlice->getVPS()->hasCamParInSliceHeader( pcSlice->getViewIndex() ) && !pcSlice->getIsDepth() ) 2132 #endif 2129 2133 { 2130 2134 for( UInt uiId = 0; uiId < pcSlice->getViewIndex(); uiId++ ) -
branches/HTM-12.0-dev1/source/Lib/TLibEncoder/TEncCu.cpp
r1039 r1048 538 538 #if MTK_I0099_VPS_EX2 539 539 #if MTK_I0099_FIX 540 #if LGE_FCO_I0116 541 if(depthMapDetect && !bIntraSliceDetect && !rapPic && ( m_pcEncCfg->getUseQTL() || bLimQtPredFalg ) && pcTexture->getReconMark()) 542 #else 540 543 if(depthMapDetect && !bIntraSliceDetect && !rapPic && ( m_pcEncCfg->getUseQTL() || bLimQtPredFalg )) 544 #endif 541 545 #else 542 546 if(depthMapDetect && !bIntraSliceDetect && !rapPic && bLimQtPredFalg) … … 2588 2592 // fetch virtual depth block 2589 2593 UInt uiDepthStride = 0; 2594 #if LGE_FCO_I0116 2595 Pel* pDepthPels = rpcTempCU->getVirtualDepthBlock(rpcTempCU->getZorderIdxInCU(), uiWidth, uiHeight, uiDepthStride); 2596 #else 2590 2597 Pel* pDepthPels = rpcTempCU->getVirtualDepthBlock(0, uiWidth, uiHeight, uiDepthStride); 2598 #endif 2591 2599 AOF( pDepthPels != NULL ); 2592 2600 AOF( uiDepthStride != 0 ); -
branches/HTM-12.0-dev1/source/Lib/TLibEncoder/TEncSbac.cpp
r1039 r1048 732 732 UInt uiTexturePart = eSize; 733 733 #if MTK_I0099_VPS_EX2 734 #if LGE_FCO_I0116 735 if(bDepthMapDetect && !bIntraSliceDetect && !rapPic && pcCU->getPic()->getReduceBitsFlag() && bLimQtPredFlag && pcTexture->getReconMark()) 736 #else 734 737 if(bDepthMapDetect && !bIntraSliceDetect && !rapPic && pcCU->getPic()->getReduceBitsFlag() && bLimQtPredFlag ) 738 #endif 735 739 #else 736 740 if(bDepthMapDetect && !bIntraSliceDetect && !rapPic && pcCU->getPic()->getReduceBitsFlag() && sps->getUseQTL() && sps->getUsePC() ) … … 1106 1110 1107 1111 #if MTK_I0099_VPS_EX2 1112 #if LGE_FCO_I0116 1113 if(bDepthMapDetect && !bIntraSliceDetect && !rapPic && pcCU->getPic()->getReduceBitsFlag() && bLimQtPredFlag && pcTexture->getReconMark() ) 1114 #else 1108 1115 if(bDepthMapDetect && !bIntraSliceDetect && !rapPic && pcCU->getPic()->getReduceBitsFlag() && bLimQtPredFlag ) 1116 #endif 1109 1117 #else 1110 1118 if(bDepthMapDetect && !bIntraSliceDetect && !rapPic && pcCU->getPic()->getReduceBitsFlag() && sps->getUseQTL() && sps->getUsePC()) -
branches/HTM-12.0-dev1/source/Lib/TLibEncoder/TEncSearch.cpp
r1039 r1048 3212 3212 #if H_3D_FCO 3213 3213 TComPic* picTexture = pcCU->getSlice()->getIvPic(false, pcCU->getSlice()->getViewIndex() ); 3214 #if LGE_FCO_I0116 3215 if ( !picTexture->getReconMark() && (DMM4_IDX == dmmType ) ) 3216 #else 3214 3217 if ( !picTexture->getReconMark() && (DMM3_IDX == dmmType || DMM4_IDX == dmmType ) ) 3218 #endif 3215 3219 { 3216 3220 continue;
Note: See TracChangeset for help on using the changeset viewer.