Changeset 116 in 3DVCSoftware for trunk/source/App/TAppEncoder
- Timestamp:
- 30 Aug 2012, 16:09:23 (12 years ago)
- Location:
- trunk/source/App/TAppEncoder
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/App/TAppEncoder/TAppEncCfg.cpp
r115 r116 336 336 #endif 337 337 #if LGE_WVSO_A0119 338 ("WVSO", m_bWVSO , true , "Use WVSO" )339 ("VSOWeight", m_iVSOWeight , 10 340 ("VSDWeight", m_iVSDWeight , 1, "SAIT Weight" )341 ("DWeight", m_iDWeight , 1, "SSE Weight" )342 #endif 343 344 #if OL_DEPTHLIMIT 338 ("WVSO", m_bWVSO , true , "Use WVSO" ) 339 ("VSOWeight", m_iVSOWeight , 10 , "VSO Weight" ) 340 ("VSDWeight", m_iVSDWeight , 1 , "SAIT Weight" ) 341 ("DWeight", m_iDWeight , 1 , "SSE Weight" ) 342 #endif 343 344 #if OL_DEPTHLIMIT_A0044 345 345 ("DPL", m_bDepthPartitionLimiting , false , "Use DepthPartitionLimiting" ) 346 346 #endif … … 1705 1705 printf("WVSO:%d ", m_bWVSO ); 1706 1706 #endif 1707 #if OL_DEPTHLIMIT 1707 #if OL_DEPTHLIMIT_A0044 1708 1708 printf("DPL:%d ", m_bDepthPartitionLimiting); 1709 1709 #endif -
trunk/source/App/TAppEncoder/TAppEncCfg.h
r115 r116 299 299 #if LGE_WVSO_A0119 300 300 Bool m_bWVSO; ///< flag for using View Synthesis Optimization 301 Int 301 Int m_iVSOWeight; 302 302 Int m_iVSDWeight; 303 Int 303 Int m_iDWeight; 304 304 #endif 305 305 // coding tools (depth intra modes) … … 308 308 #endif 309 309 310 #if OL_DEPTHLIMIT 310 #if OL_DEPTHLIMIT_A0044 311 311 Bool m_bDepthPartitionLimiting; 312 312 #endif -
trunk/source/App/TAppEncoder/TAppEncTop.cpp
r115 r116 208 208 #endif 209 209 #if LGE_WVSO_A0119 210 m_acTEncTopList[iViewIdx]->setWVSO 210 m_acTEncTopList[iViewIdx]->setWVSO ( false ); 211 211 #endif 212 212 #endif … … 364 364 m_acTEncTopList[iViewIdx]->setUseDMM ( false ); 365 365 #endif 366 #if OL_DEPTHLIMIT 367 366 #if OL_DEPTHLIMIT_A0044 367 m_acTEncTopList[iViewIdx]->setUseDPL ( false ); 368 368 #endif 369 369 #if HHI_MPI … … 643 643 m_acTEncDepthTopList[iViewIdx]->setUseDMM ( m_bUseDMM ); 644 644 #endif 645 #if OL_DEPTHLIMIT 646 645 #if OL_DEPTHLIMIT_A0044 646 m_acTEncDepthTopList[iViewIdx]->setUseDPL (m_bDepthPartitionLimiting); 647 647 #endif 648 648 #if HHI_MPI
Note: See TracChangeset for help on using the changeset viewer.