Ignore:
Timestamp:
28 Jun 2013, 03:51:50 (11 years ago)
Author:
zhang
Message:

Merge Dev2.a to Dev2 and simulation results updated

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HTM-DEV-0.3-dev2/source/App/TAppEncoder/TAppEncCfg.cpp

    r499 r504  
    505505#endif
    506506
     507#if H_3D_ARP
     508  ("AdvMultiviewResPred",      m_uiUseAdvResPred,           (UInt)1, "Usage of Advanced Residual Prediction" )
     509#endif
     510#if H_3D_IC
     511  ("IlluCompEnable",           m_abUseIC, std::vector<Bool>(2, true), "Enable illumination compensation")
     512#endif
    507513  // Coding tools
    508514  ("AMP",                      m_enableAMP,                 true,  "Enable asymmetric motion partitions")
     
    14001406  xConfirmPara(  m_maxNumMergeCand < 1,  "MaxNumMergeCand must be 1 or greater.");
    14011407  xConfirmPara(  m_maxNumMergeCand > 5,  "MaxNumMergeCand must be 5 or smaller.");
     1408
     1409#if H_3D_ARP
     1410  xConfirmPara( ( 0 != m_uiUseAdvResPred ) &&  ( 1 != m_uiUseAdvResPred ), "UseAdvResPred must be 0 or 1." );
     1411#endif
    14021412
    14031413#if ADAPTIVE_QP_SELECTION
     
    22942304  printf("IvMvPred:%d ", m_ivMvPredFlag );
    22952305#endif
     2306#if H_3D_ARP
     2307  printf(" ARP:%d  ", m_uiUseAdvResPred  );
     2308#endif
     2309#if H_3D_IC
     2310  printf( "IlluCompEnable: %d %d ", m_abUseIC[0] ? 1 : 0, m_abUseIC[1] ? 1 : 0 );
     2311#endif
    22962312#if H_3D_NBDV_REF
    22972313  printf("DepthRefinement:%d ", m_depthRefinementFlag ); 
Note: See TracChangeset for help on using the changeset viewer.