Ignore:
Timestamp:
15 Nov 2013, 05:46:48 (11 years ago)
Author:
samsung-htm
Message:

Integration of F0147 and F0151
F0147: DMM simplification and signalling
F0151: Removal of IC in depth coding

Location:
branches/HTM-8.2-dev3-Samsung/source/App/TAppEncoder
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/HTM-8.2-dev3-Samsung/source/App/TAppEncoder/TAppEncCfg.cpp

    r697 r699  
    511511#endif
    512512#if H_3D_IC
     513#if SEC_ONLY_TEXTURE_IC_F0151
     514  ("IlluCompEnable",           m_abUseIC, true, "Enable illumination compensation")
     515#else
    513516  ("IlluCompEnable",           m_abUseIC, std::vector<Bool>(2, true), "Enable illumination compensation")
     517#endif
    514518#endif
    515519#if H_3D_INTER_SDC
     
    24222426#endif
    24232427#if H_3D_IC
     2428#if SEC_ONLY_TEXTURE_IC_F0151
     2429  printf( "IlluCompEnable: %d ", m_abUseIC);
     2430#else
    24242431  printf( "IlluCompEnable: %d %d ", m_abUseIC[0] ? 1 : 0, m_abUseIC[1] ? 1 : 0 );
     2432#endif
    24252433#endif
    24262434#if H_3D_NBDV_REF
  • branches/HTM-8.2-dev3-Samsung/source/App/TAppEncoder/TAppEncCfg.h

    r697 r699  
    122122#endif
    123123#if H_3D_IC
     124#if SEC_ONLY_TEXTURE_IC_F0151
     125  Bool   m_abUseIC;
     126#else
    124127  vector<Bool> m_abUseIC;                                    ///< flag for using illumination compensation for inter-view prediction
     128#endif
    125129#endif
    126130#if H_3D_NBDV_REF
  • branches/HTM-8.2-dev3-Samsung/source/App/TAppEncoder/TAppEncTop.cpp

    r697 r699  
    177177#endif
    178178#if H_3D_IC
     179#if SEC_ONLY_TEXTURE_IC_F0151
     180    m_cTEncTop.setUseIC                        ( vps.getViewIndex( layerId ) == 0 || isDepth ? false : m_abUseIC );
     181#else
    179182    m_cTEncTop.setUseIC                        ( vps.getViewIndex( layerId ) == 0 ? false : m_abUseIC[isDepth ? 1 : 0] );
     183#endif
    180184#endif
    181185  //========== Depth intra modes ==========
Note: See TracChangeset for help on using the changeset viewer.