Changeset 112 in 3DVCSoftware for branches/HTM-4.0-Orange/source/App
- Timestamp:
- 30 Aug 2012, 09:18:03 (13 years ago)
- Location:
- branches/HTM-4.0-Orange/source/App/TAppEncoder
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-4.0-Orange/source/App/TAppEncoder/TAppEncCfg.cpp
r110 r112 340 340 ("VSDWeight", m_iVSDWeight , 1 , "SAIT Weight" ) 341 341 ("DWeight", m_iDWeight , 1 , "SSE Weight" ) 342 #endif 343 344 #if OL_DEPTHLIMIT 345 ("DPL", m_bDepthPartitionLimiting , false , "Use DepthPartitionLimiting" ) 342 346 #endif 343 347 … … 1701 1705 printf("WVSO:%d ", m_bWVSO ); 1702 1706 #endif 1707 #if OL_DEPTHLIMIT 1708 printf("DPL:%d ", m_bDepthPartitionLimiting); 1709 #endif 1703 1710 #if HHI_DMM_WEDGE_INTRA || HHI_DMM_PRED_TEX 1704 1711 printf("DMM:%d ", m_bUseDMM ); -
branches/HTM-4.0-Orange/source/App/TAppEncoder/TAppEncCfg.h
r110 r112 308 308 #endif 309 309 310 #if OL_DEPTHLIMIT 311 Bool m_bDepthPartitionLimiting; 312 #endif 313 310 314 // internal member functions 311 315 Void xSetGlobal (); ///< set global variables -
branches/HTM-4.0-Orange/source/App/TAppEncoder/TAppEncTop.cpp
r110 r112 364 364 m_acTEncTopList[iViewIdx]->setUseDMM ( false ); 365 365 #endif 366 #if OL_DEPTHLIMIT 367 m_acTEncTopList[iViewIdx]->setUseDPL ( false ); 368 #endif 366 369 #if HHI_MPI 367 370 m_acTEncTopList[iViewIdx]->setUseMVI( false ); … … 639 642 #if HHI_DMM_WEDGE_INTRA || HHI_DMM_PRED_TEX 640 643 m_acTEncDepthTopList[iViewIdx]->setUseDMM ( m_bUseDMM ); 644 #endif 645 #if OL_DEPTHLIMIT 646 m_acTEncDepthTopList[iViewIdx]->setUseDPL (m_bDepthPartitionLimiting); 641 647 #endif 642 648 #if HHI_MPI
Note: See TracChangeset for help on using the changeset viewer.