Changeset 112 in 3DVCSoftware for branches/HTM-4.0-Orange/source/App


Ignore:
Timestamp:
30 Aug 2012, 09:18:03 (13 years ago)
Author:
orange
Message:

joelb.jung@…
jct3v-a0044

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  
    340340  ("VSDWeight",                       m_iVSDWeight             , 1                                        , "SAIT Weight" )
    341341  ("DWeight",                                                                           m_iDWeight                                                  , 1                                          , "SSE Weight" )
     342#endif
     343
     344#if OL_DEPTHLIMIT
     345  ("DPL",   m_bDepthPartitionLimiting           , false         , "Use DepthPartitionLimiting" )
    342346#endif
    343347
     
    17011705  printf("WVSO:%d ", m_bWVSO );
    17021706#endif
     1707#if OL_DEPTHLIMIT
     1708  printf("DPL:%d ", m_bDepthPartitionLimiting);
     1709#endif
    17031710#if HHI_DMM_WEDGE_INTRA || HHI_DMM_PRED_TEX
    17041711  printf("DMM:%d ", m_bUseDMM );
  • branches/HTM-4.0-Orange/source/App/TAppEncoder/TAppEncCfg.h

    r110 r112  
    308308#endif
    309309
     310#if OL_DEPTHLIMIT
     311  Bool      m_bDepthPartitionLimiting;
     312#endif
     313
    310314  // internal member functions
    311315  Void  xSetGlobal      ();                                   ///< set global variables
  • branches/HTM-4.0-Orange/source/App/TAppEncoder/TAppEncTop.cpp

    r110 r112  
    364364    m_acTEncTopList[iViewIdx]->setUseDMM                     ( false );
    365365#endif
     366#if OL_DEPTHLIMIT
     367        m_acTEncTopList[iViewIdx]->setUseDPL                     ( false );
     368#endif
    366369#if HHI_MPI
    367370    m_acTEncTopList[iViewIdx]->setUseMVI( false );
     
    639642#if HHI_DMM_WEDGE_INTRA || HHI_DMM_PRED_TEX
    640643    m_acTEncDepthTopList[iViewIdx]->setUseDMM                     ( m_bUseDMM );
     644#endif
     645#if OL_DEPTHLIMIT
     646        m_acTEncDepthTopList[iViewIdx]->setUseDPL                      (m_bDepthPartitionLimiting);
    641647#endif
    642648#if HHI_MPI
Note: See TracChangeset for help on using the changeset viewer.