Changeset 1051 in 3DVCSoftware for branches/HTM-12.0-dev1/source
- Timestamp:
- 27 Aug 2014, 18:12:33 (10 years ago)
- Location:
- branches/HTM-12.0-dev1/source/Lib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-12.0-dev1/source/Lib/TLibCommon/TypeDef.h
r1049 r1051 306 306 #define H_3D_VSO_RM_ASSERTIONS 0 // Output VSO assertions 307 307 #define H_3D_VSO_SYNTH_DIST_OUT 0 // Output of synthesized view distortion instead of depth distortion in encoder output 308 #define H_3D_VSO_FIX 0// This fix should be enabled after verification308 #define H_3D_VSO_FIX 1 // This fix should be enabled after verification 309 309 #endif 310 310 -
branches/HTM-12.0-dev1/source/Lib/TLibEncoder/TEncSearch.cpp
r1048 r1051 3083 3083 Double dLambda; 3084 3084 if ( m_pcRdCost->getUseLambdaScaleVSO() ) 3085 { 3085 3086 dLambda = m_pcRdCost->getUseRenModel() ? m_pcRdCost->getLambdaVSO() : m_pcRdCost->getSqrtLambdaVSO(); 3087 } 3086 3088 else 3089 { 3087 3090 dLambda = m_pcRdCost->getSqrtLambda(); 3088 3089 Double cost = (Double)uiSad + (Double)iModeBits * m_pcRdCost->getSqrtLambda(); 3091 } 3092 3093 Double cost = (Double)uiSad + (Double)iModeBits * dLambda; 3090 3094 #else 3091 3095 Double cost = (Double)uiSad + (Double)iModeBits * m_pcRdCost->getSqrtLambda();
Note: See TracChangeset for help on using the changeset viewer.