Changeset 295 in 3DVCSoftware for branches/HTM-5.1-dev0/source/App
- Timestamp:
- 19 Feb 2013, 21:39:51 (12 years ago)
- Location:
- branches/HTM-5.1-dev0/source/App
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-5.1-dev0/source/App/TAppDecoder/TAppDecTop.cpp
r294 r295 295 295 if( ( viewDepthId == 0 && (viewDepthId != previousViewDepthId) ) || m_tDecTop.size() == 1 ) 296 296 { 297 #if H HI_INTER_VIEW_RESIDUAL_PRED297 #if H3D_IVRP 298 298 for( Int i = 0; i < m_tDecTop.size(); i++ ) 299 299 { -
branches/HTM-5.1-dev0/source/App/TAppEncoder/TAppEncCfg.cpp
r294 r295 382 382 ("MultiviewMvRegLambdaScale", m_dMultiviewMvRegLambdaScale, (Double)0, "lambda scale for multiview motion vector regularization" ) 383 383 #endif 384 #if H HI_INTER_VIEW_RESIDUAL_PRED384 #if H3D_IVRP 385 385 ("MultiviewResPred", m_uiMultiviewResPredMode, (UInt)0, "usage of inter-view residual prediction" ) 386 386 #endif … … 916 916 } 917 917 #endif 918 #if H HI_INTER_VIEW_RESIDUAL_PRED918 #if H3D_IVRP 919 919 xConfirmPara ( m_uiMultiviewResPredMode > 1, "MultiviewResPred must be less than or equal to 1" ); 920 920 xConfirmPara ( m_uiMultiviewResPredMode > 0 && m_uiPredDepthMapGeneration == 0 , "MultiviewResPred > 0 requires PredDepthMapGen > 0" ); -
branches/HTM-5.1-dev0/source/App/TAppEncoder/TAppEncCfg.h
r294 r295 217 217 Double m_dMultiviewMvRegLambdaScale; ///< lambda scale for multiview motion vectors regularization 218 218 #endif 219 #if H HI_INTER_VIEW_RESIDUAL_PRED219 #if H3D_IVRP 220 220 UInt m_uiMultiviewResPredMode; ///< using multiview residual prediction 221 221 #endif -
branches/HTM-5.1-dev0/source/App/TAppEncoder/TAppEncTop.cpp
r294 r295 222 222 m_acTEncTopList[iViewIdx]->setMultiviewMvRegLambdaScale ( iViewIdx ? m_dMultiviewMvRegLambdaScale : 0.0 ); 223 223 #endif 224 #if H HI_INTER_VIEW_RESIDUAL_PRED224 #if H3D_IVRP 225 225 m_acTEncTopList[iViewIdx]->setMultiviewResPredMode ( m_uiMultiviewResPredMode ); 226 226 #endif … … 553 553 m_acTEncDepthTopList[iViewIdx]->setMultiviewMvRegLambdaScale ( 0.0 ); 554 554 #endif 555 #if H HI_INTER_VIEW_RESIDUAL_PRED555 #if H3D_IVRP 556 556 m_acTEncDepthTopList[iViewIdx]->setMultiviewResPredMode ( 0 ); 557 557 #endif … … 1079 1079 #endif 1080 1080 1081 #if HHI_INTERVIEW_SKIP || H3D_IVMP || H HI_INTER_VIEW_RESIDUAL_PRED1081 #if HHI_INTERVIEW_SKIP || H3D_IVMP || H3D_IVRP 1082 1082 for( Int iViewIdx = 0; iViewIdx < m_iNumberOfViews; iViewIdx++ ) 1083 1083 {
Note: See TracChangeset for help on using the changeset viewer.