Changeset 115 in 3DVCSoftware for trunk/source/App/TAppEncoder/TAppEncCfg.cpp
- Timestamp:
- 30 Aug 2012, 14:52:41 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/App/TAppEncoder/TAppEncCfg.cpp
r100 r115 335 335 ("AllowNegDist", m_bAllowNegDist , true , "Allow negative Distortion in VSO") 336 336 #endif 337 #if LGE_WVSO_A0119 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 345 ("DPL", m_bDepthPartitionLimiting , false , "Use DepthPartitionLimiting" ) 346 #endif 337 347 338 348 #endif … … 644 654 #endif 645 655 656 #if LGE_WVSO_A0119 657 m_bWVSO = m_bUseVSO && m_bWVSO && m_bUsingDepthMaps; 658 #endif 646 659 xCleanUpVectors(); 647 660 … … 1688 1701 #if HHI_VSO 1689 1702 printf("VSO:%d ", m_bUseVSO ); 1690 #endif 1703 #endif 1704 #if LGE_WVSO_A0119 1705 printf("WVSO:%d ", m_bWVSO ); 1706 #endif 1707 #if OL_DEPTHLIMIT 1708 printf("DPL:%d ", m_bDepthPartitionLimiting); 1709 #endif 1691 1710 #if HHI_DMM_WEDGE_INTRA || HHI_DMM_PRED_TEX 1692 1711 printf("DMM:%d ", m_bUseDMM ); … … 1694 1713 #if HHI_MPI 1695 1714 printf("MVI:%d ", m_bUseMVI ? 1 : 0 ); 1715 #endif 1716 #if LGE_WVSO_A0119 1717 printf("\nVSO : SAIT : SAD weight = %d : %d : %d ", m_iVSOWeight, m_iVSDWeight, m_iDWeight ); 1696 1718 #endif 1697 1719 printf("\n\n");
Note: See TracChangeset for help on using the changeset viewer.