Changeset 292 in 3DVCSoftware for branches/HTM-5.1-dev0/source/App
- Timestamp:
- 19 Feb 2013, 17:50:51 (12 years ago)
- Location:
- branches/HTM-5.1-dev0/source/App/TAppEncoder
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-5.1-dev0/source/App/TAppEncoder/TAppEncCfg.cpp
r287 r292 398 398 ("PredDepthMapGen", m_uiPredDepthMapGeneration, (UInt)0, "generation of prediction depth maps for motion data prediction" ) 399 399 #endif 400 #if H HI_INTER_VIEW_MOTION_PRED400 #if H3D_IVMP 401 401 ("MultiviewMvPred", m_uiMultiviewMvPredMode, (UInt)0, "usage of predicted depth maps" ) 402 402 ("MultiviewMvRegMode", m_uiMultiviewMvRegMode, (UInt)0, "regularization mode for multiview motion vectors" ) … … 974 974 xConfirmPara ( m_uiPredDepthMapGeneration >= 2 && !m_bUsingDepthMaps, "PredDepthMapGen >= 2 requires CodeDepthMaps = 1" ); 975 975 #endif 976 #if H HI_INTER_VIEW_MOTION_PRED976 #if H3D_IVMP 977 977 xConfirmPara ( m_uiMultiviewMvPredMode > 7, "MultiviewMvPred must be less than or equal to 7" ); 978 978 xConfirmPara ( m_uiMultiviewMvPredMode > 0 && m_uiPredDepthMapGeneration == 0 , "MultiviewMvPred > 0 requires PredDepthMapGen > 0" ); -
branches/HTM-5.1-dev0/source/App/TAppEncoder/TAppEncCfg.h
r287 r292 233 233 UInt m_uiPredDepthMapGeneration; ///< using of (virtual) depth maps for texture coding 234 234 #endif 235 #if H HI_INTER_VIEW_MOTION_PRED235 #if H3D_IVMP 236 236 UInt m_uiMultiviewMvPredMode; ///< usage of predictors for multi-view mv prediction 237 237 UInt m_uiMultiviewMvRegMode; ///< regularization for multiview motion vectors -
branches/HTM-5.1-dev0/source/App/TAppEncoder/TAppEncTop.cpp
r289 r292 235 235 m_acTEncTopList[iViewIdx]->setPdmOffset ( m_cCameraData.getPdmOffset () ); 236 236 #endif 237 #if H HI_INTER_VIEW_MOTION_PRED237 #if H3D_IVMP 238 238 m_acTEncTopList[iViewIdx]->setMultiviewMvPredMode ( m_uiMultiviewMvPredMode ); 239 239 m_acTEncTopList[iViewIdx]->setMultiviewMvRegMode ( iViewIdx ? m_uiMultiviewMvRegMode : 0 ); … … 605 605 m_acTEncDepthTopList[iViewIdx]->setPredDepthMapGeneration ( 0 ); 606 606 #endif 607 #if H HI_INTER_VIEW_MOTION_PRED607 #if H3D_IVMP 608 608 m_acTEncDepthTopList[iViewIdx]->setMultiviewMvPredMode ( 0 ); 609 609 m_acTEncDepthTopList[iViewIdx]->setMultiviewMvRegMode ( 0 ); … … 741 741 } 742 742 743 #if H HI_INTER_VIEW_MOTION_PRED743 #if H3D_IVMP 744 744 else if( m_uiMultiviewMvRegMode ) 745 745 { … … 828 828 m_acTEncDepthTopList[iViewIdx]->create(); 829 829 } 830 #if H HI_INTER_VIEW_MOTION_PRED830 #if H3D_IVMP 831 831 else if( m_uiMultiviewMvRegMode ) 832 832 { … … 975 975 pcDepthPicYuvOrg->create( m_iSourceWidth, m_iSourceHeight, m_uiMaxCUWidth, m_uiMaxCUHeight, m_uiMaxCUDepth ); 976 976 977 #if H HI_INTER_VIEW_MOTION_PRED977 #if H3D_IVMP 978 978 if( m_uiMultiviewMvRegMode ) 979 979 { … … 995 995 m_acTVideoIOYuvInputFileList[iViewIdx]->read( pcPicYuvOrg, m_aiPad ); 996 996 997 #if H HI_INTER_VIEW_MOTION_PRED997 #if H3D_IVMP 998 998 if( m_uiMultiviewMvRegMode && iViewIdx ) 999 999 { … … 1002 1002 #endif 1003 1003 1004 #if H HI_INTER_VIEW_MOTION_PRED1004 #if H3D_IVMP 1005 1005 m_acTEncTopList[iViewIdx]->initNewPic( pcPicYuvOrg, ( m_uiMultiviewMvRegMode && iViewIdx ? pcPdmDepthOrg : 0 ) ); 1006 1006 #else … … 1151 1151 #endif 1152 1152 1153 #if HHI_INTERVIEW_SKIP || H HI_INTER_VIEW_MOTION_PRED|| HHI_INTER_VIEW_RESIDUAL_PRED1153 #if HHI_INTERVIEW_SKIP || H3D_IVMP || HHI_INTER_VIEW_RESIDUAL_PRED 1154 1154 for( Int iViewIdx = 0; iViewIdx < m_iNumberOfViews; iViewIdx++ ) 1155 1155 {
Note: See TracChangeset for help on using the changeset viewer.