Changeset 115 in 3DVCSoftware for trunk/source/App/TAppEncoder/TAppEncCfg.cpp


Ignore:
Timestamp:
30 Aug 2012, 14:52:41 (12 years ago)
Author:
tech
Message:

Integrated revision 114. with:

  • A0119: VSO Depth Fidelity
  • A0044: Depth Quadtree Prediction
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/source/App/TAppEncoder/TAppEncCfg.cpp

    r100 r115  
    335335  ("AllowNegDist",                    m_bAllowNegDist           , true          , "Allow negative Distortion in VSO")
    336336#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
    337347
    338348#endif
     
    644654#endif
    645655
     656#if LGE_WVSO_A0119
     657  m_bWVSO = m_bUseVSO && m_bWVSO && m_bUsingDepthMaps;
     658#endif
    646659  xCleanUpVectors();
    647660
     
    16881701#if HHI_VSO
    16891702  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
    16911710#if HHI_DMM_WEDGE_INTRA || HHI_DMM_PRED_TEX
    16921711  printf("DMM:%d ", m_bUseDMM );
     
    16941713#if HHI_MPI
    16951714  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 );
    16961718#endif
    16971719  printf("\n\n");
Note: See TracChangeset for help on using the changeset viewer.