Changeset 699 in 3DVCSoftware for branches/HTM-8.2-dev3-Samsung/source/App/TAppEncoder
- Timestamp:
- 15 Nov 2013, 05:46:48 (11 years ago)
- 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 511 511 #endif 512 512 #if H_3D_IC 513 #if SEC_ONLY_TEXTURE_IC_F0151 514 ("IlluCompEnable", m_abUseIC, true, "Enable illumination compensation") 515 #else 513 516 ("IlluCompEnable", m_abUseIC, std::vector<Bool>(2, true), "Enable illumination compensation") 517 #endif 514 518 #endif 515 519 #if H_3D_INTER_SDC … … 2422 2426 #endif 2423 2427 #if H_3D_IC 2428 #if SEC_ONLY_TEXTURE_IC_F0151 2429 printf( "IlluCompEnable: %d ", m_abUseIC); 2430 #else 2424 2431 printf( "IlluCompEnable: %d %d ", m_abUseIC[0] ? 1 : 0, m_abUseIC[1] ? 1 : 0 ); 2432 #endif 2425 2433 #endif 2426 2434 #if H_3D_NBDV_REF -
branches/HTM-8.2-dev3-Samsung/source/App/TAppEncoder/TAppEncCfg.h
r697 r699 122 122 #endif 123 123 #if H_3D_IC 124 #if SEC_ONLY_TEXTURE_IC_F0151 125 Bool m_abUseIC; 126 #else 124 127 vector<Bool> m_abUseIC; ///< flag for using illumination compensation for inter-view prediction 128 #endif 125 129 #endif 126 130 #if H_3D_NBDV_REF -
branches/HTM-8.2-dev3-Samsung/source/App/TAppEncoder/TAppEncTop.cpp
r697 r699 177 177 #endif 178 178 #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 179 182 m_cTEncTop.setUseIC ( vps.getViewIndex( layerId ) == 0 ? false : m_abUseIC[isDepth ? 1 : 0] ); 183 #endif 180 184 #endif 181 185 //========== Depth intra modes ==========
Note: See TracChangeset for help on using the changeset viewer.