Changeset 640 in 3DVCSoftware
- Timestamp:
- 18 Oct 2013, 12:44:21 (11 years ago)
- Location:
- branches/HTM-8.2-dev0-KWU/source/Lib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-8.2-dev0-KWU/source/Lib/TLibCommon/TypeDef.h
r639 r640 312 312 #endif 313 313 314 #define KWU_RC_VIEWRC_E0227 0///< JCT3V-E0227, view-wise target bitrate allocation315 #define KWU_RC_MADPRED_E0227 0///< JCT3V-E0227, inter-view MAD prediction314 #define KWU_RC_VIEWRC_E0227 1 ///< JCT3V-E0227, view-wise target bitrate allocation 315 #define KWU_RC_MADPRED_E0227 1 ///< JCT3V-E0227, inter-view MAD prediction 316 316 317 317 #define MAX_CPB_CNT 32 ///< Upper bound of (cpb_cnt_minus1 + 1) -
branches/HTM-8.2-dev0-KWU/source/Lib/TLibEncoder/TEncCu.cpp
r639 r640 1062 1062 { 1063 1063 xCheckRDCostIntra( rpcBestCU, rpcTempCU, SIZE_2Nx2N ); 1064 #if RATE_CONTROL_LAMBDA_DOMAIN && !M0036_RC_IMPROVEMENT 1064 #if RATE_CONTROL_LAMBDA_DOMAIN 1065 #if !M0036_RC_IMPROVEMENT 1065 1066 if ( uiDepth <= m_addSADDepth ) 1066 1067 { … … 1068 1069 m_addSADDepth = uiDepth; 1069 1070 } 1070 #elif RATE_CONTROL_LAMBDA_DOMAIN && KWU_RC_MADPRED_E0227 1071 #endif 1072 #if KWU_RC_MADPRED_E0227 1071 1073 if ( uiDepth <= m_addSADDepth ) 1072 1074 { … … 1074 1076 m_addSADDepth = uiDepth; 1075 1077 } 1078 #endif 1076 1079 #endif 1077 1080 #if !RATE_CONTROL_LAMBDA_DOMAIN && KWU_RC_MADPRED_E0227 … … 2314 2317 rpcTempCU->getTotalCost() = m_pcRdCost->calcRdCost( rpcTempCU->getTotalBits(), rpcTempCU->getTotalDistortion() ); 2315 2318 2316 #if RATE_CONTROL_LAMBDA_DOMAIN && !M0036_RC_IMPROVEMENT 2319 #if RATE_CONTROL_LAMBDA_DOMAIN 2320 #if !M0036_RC_IMPROVEMENT 2317 2321 UChar uhDepth = rpcTempCU->getDepth( 0 ); 2318 2322 if ( m_pcEncCfg->getUseRateCtrl() && m_pcEncCfg->getLCULevelRC() && eSize == SIZE_2Nx2N && uhDepth <= m_addSADDepth ) … … 2323 2327 m_spatialSAD = (Int)SAD; 2324 2328 } 2325 #elif RATE_CONTROL_LAMBDA_DOMAIN && KWU_RC_MADPRED_E0227 2329 #endif 2330 #if KWU_RC_MADPRED_E0227 2326 2331 UChar uhDepth = rpcTempCU->getDepth( 0 ); 2327 2332 if ( m_pcEncCfg->getUseRateCtrl() && m_pcEncCfg->getLCULevelRC() && eSize == SIZE_2Nx2N && uhDepth <= m_addSADDepth ) … … 2332 2337 m_spatialSAD = (Int)SAD; 2333 2338 } 2339 #endif 2334 2340 #endif 2335 2341 #if !RATE_CONTROL_LAMBDA_DOMAIN && KWU_RC_MADPRED_E0227
Note: See TracChangeset for help on using the changeset viewer.