Changeset 468 in 3DVCSoftware for branches/HTM-DEV-0.3-dev2a/source/App
- Timestamp:
- 16 Jun 2013, 05:33:39 (12 years ago)
- Location:
- branches/HTM-DEV-0.3-dev2a/source/App/TAppEncoder
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-DEV-0.3-dev2a/source/App/TAppEncoder/TAppEncCfg.cpp
r464 r468 508 508 ("AdvMultiviewResPred", m_uiUseAdvResPred, (UInt)1, "Usage of Advanced Residual Prediction" ) 509 509 #endif 510 510 #if H_3D_IC 511 ("IlluCompEnable", m_abUseIC, std::vector<Bool>(2, true), "Enable illumination compensation") 512 #endif 511 513 // Coding tools 512 514 ("AMP", m_enableAMP, true, "Enable asymmetric motion partitions") … … 2289 2291 printf(" ARP:%d ", m_uiUseAdvResPred ); 2290 2292 #endif 2293 #if H_3D_IC 2294 printf( "IlluCompEnable: %d %d ", m_abUseIC[0] ? 1 : 0, m_abUseIC[1] ? 1 : 0 ); 2295 #endif 2291 2296 printf("\n\n"); 2292 2297 -
branches/HTM-DEV-0.3-dev2a/source/App/TAppEncoder/TAppEncCfg.h
r464 r468 243 243 UInt m_uiARPStepNum; 244 244 #endif 245 245 #if H_3D_IC 246 vector<Bool> m_abUseIC; ///< flag for using illumination compensation for inter-view prediction 247 #endif 246 248 Bool m_useFastDecisionForMerge; ///< flag for using Fast Decision Merge RD-Cost 247 249 Bool m_bUseCbfFastMode; ///< flag for using Cbf Fast PU Mode Decision -
branches/HTM-DEV-0.3-dev2a/source/App/TAppEncoder/TAppEncTop.cpp
r465 r468 178 178 m_cTEncTop.setUseAdvRP ( ( isDepth || 0==layer ) ? 0 : m_uiUseAdvResPred ); 179 179 m_cTEncTop.setARPStepNum ( ( isDepth || 0==layer ) ? 1 : H_3D_ARP_WFNR ); 180 #endif 181 #if H_3D_IC 182 m_cTEncTop.setUseIC ( vps.getViewIndex( layer ) == 0 ? false : m_abUseIC[isDepth ? 1 : 0] ); 180 183 #endif 181 184 #endif // H_3D
Note: See TracChangeset for help on using the changeset viewer.