Changeset 598 in 3DVCSoftware for branches/HTM-DEV-2.0-dev0/source/App/TAppEncoder
- Timestamp:
- 29 Aug 2013, 13:55:40 (11 years ago)
- Location:
- branches/HTM-DEV-2.0-dev0/source/App/TAppEncoder
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-DEV-2.0-dev0/source/App/TAppEncoder/TAppEncCfg.cpp
r542 r598 505 505 #if H_3D_IC 506 506 ("IlluCompEnable", m_abUseIC, std::vector<Bool>(2, true), "Enable illumination compensation") 507 #endif 508 #if LGE_INTER_SDC_E0156 509 ("InterSDC", m_bDepthInterSDCFlag, true, "Enable depth inter SDC") 507 510 #endif 508 511 // Coding tools … … 2289 2292 printf("DLT:%d ", m_useDLT ); 2290 2293 #endif 2294 #if LGE_INTER_SDC_E0156 2295 printf( "interSDC: %d ", m_bDepthInterSDCFlag ? 1 : 0 ); 2296 #endif 2291 2297 printf("\n\n"); 2292 2298 -
branches/HTM-DEV-2.0-dev0/source/App/TAppEncoder/TAppEncCfg.h
r539 r598 432 432 Bool m_bUsePC; ///< flag for using Predictive Coding with QTL 433 433 #endif 434 #if LGE_INTER_SDC_E0156 435 Bool m_bDepthInterSDCFlag; ///< flag for inter SDC of depth map coding 436 #endif 434 437 #endif 435 438 // internal member functions -
branches/HTM-DEV-2.0-dev0/source/App/TAppEncoder/TAppEncTop.cpp
r542 r598 187 187 m_cTEncTop.setUseQTL ( isDepth ? m_bUseQTL : false ); 188 188 m_cTEncTop.setUsePC ( isDepth ? m_bUsePC : false ); 189 #endif 190 //====== Depth Inter SDC ========= 191 #if LGE_INTER_SDC_E0156 192 m_cTEncTop.setInterSDCEnable ( isDepth ? m_bDepthInterSDCFlag : false ); 189 193 #endif 190 194 #endif // H_3D … … 1225 1229 vps.setViewSynthesisPredFlag( layer, !isLayerZero && !isDepth && m_viewSynthesisPredFlag ); 1226 1230 #endif 1231 #if LGE_INTER_SDC_E0156 1232 vps.setInterSDCFlag( layer, !isLayerZero && isDepth && m_bDepthInterSDCFlag ); 1233 #endif 1227 1234 } 1228 1235 #if H_3D_TMVP
Note: See TracChangeset for help on using the changeset viewer.