Changeset 181 in 3DVCSoftware for branches/HTM-4.1-dev2-Orange/source/App
- Timestamp:
- 14 Nov 2012, 17:23:56 (12 years ago)
- Location:
- branches/HTM-4.1-dev2-Orange/source/App/TAppEncoder
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-4.1-dev2-Orange/source/App/TAppEncoder/TAppEncCfg.cpp
r177 r181 370 370 #endif 371 371 372 #if OL_ DEPTHLIMIT_A0044373 (" DPL", m_bDepthPartitionLimiting , false , "Use DepthPartitionLimiting" )372 #if OL_QTLIMIT_PREDCODING_B0068 373 ("QTLPC", m_bUseQTLPC , true , "Use depth Quadtree Limitation + Predictive Coding" ) 374 374 #endif 375 375 … … 1740 1740 printf("WVSO:%d ", m_bUseWVSO ); 1741 1741 #endif 1742 1743 #if OL_DEPTHLIMIT_A0044 1744 printf("DPL:%d ", m_bDepthPartitionLimiting); 1742 #if OL_QTLIMIT_PREDCODING_B0068 1743 printf("QTLPC:%d ", m_bUseQTLPC); 1745 1744 #endif 1746 1745 #if HHI_DMM_WEDGE_INTRA || HHI_DMM_PRED_TEX -
branches/HTM-4.1-dev2-Orange/source/App/TAppEncoder/TAppEncCfg.h
r177 r181 315 315 #endif 316 316 317 #if OL_ DEPTHLIMIT_A0044318 Bool m_b DepthPartitionLimiting;317 #if OL_QTLIMIT_PREDCODING_B0068 318 Bool m_bUseQTLPC; ///< flag for using depth QuadTree Limitation + Predictive Coding 319 319 #endif 320 320 -
branches/HTM-4.1-dev2-Orange/source/App/TAppEncoder/TAppEncTop.cpp
r177 r181 367 367 m_acTEncTopList[iViewIdx]->setUseDMM ( false ); 368 368 #endif 369 #if OL_ DEPTHLIMIT_A0044370 m_acTEncTopList[iViewIdx]->setUse DPL( false );369 #if OL_QTLIMIT_PREDCODING_B0068 370 m_acTEncTopList[iViewIdx]->setUseQTLPC ( false ); 371 371 #endif 372 372 #if HHI_MPI … … 653 653 m_acTEncDepthTopList[iViewIdx]->setUseDMM ( m_bUseDMM ); 654 654 #endif 655 #if OL_ DEPTHLIMIT_A0044656 m_acTEncDepthTopList[iViewIdx]->setUse DPL (m_bDepthPartitionLimiting);655 #if OL_QTLIMIT_PREDCODING_B0068 656 m_acTEncDepthTopList[iViewIdx]->setUseQTLPC (m_bUseQTLPC); 657 657 #endif 658 658 #if HHI_MPI
Note: See TracChangeset for help on using the changeset viewer.