Changeset 653 in 3DVCSoftware
- Timestamp:
- 21 Oct 2013, 18:32:39 (11 years ago)
- Location:
- branches/HTM-8.2-dev0-Cleanup/source/Lib
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-8.2-dev0-Cleanup/source/Lib/TLibCommon/TypeDef.h
r648 r653 173 173 #endif 174 174 175 #endif // H_3D176 177 175 178 176 // Rate Control … … 180 178 #define KWU_RC_VIEWRC_E0227 0 ///< JCT3V-E0227, view-wise target bitrate allocation 181 179 #define KWU_RC_MADPRED_E0227 0 ///< JCT3V-E0227, inter-view MAD prediction 180 181 #endif // H_3D 182 183 182 184 183 185 ///////////////////////////////////////////////////////////////////////////////////////// -
branches/HTM-8.2-dev0-Cleanup/source/Lib/TLibEncoder/TEncCavlc.cpp
r651 r653 730 730 #endif 731 731 //future extensions here.. 732 733 return; 732 734 } 733 735 -
branches/HTM-8.2-dev0-Cleanup/source/Lib/TLibEncoder/TEncCu.cpp
r652 r653 272 272 #if RATE_CONTROL_LAMBDA_DOMAIN 273 273 #if !M0036_RC_IMPROVEMENT 274 m_addSADDepth = 0; 274 275 m_LCUPredictionSAD = 0; 275 m_addSADDepth = 0;276 276 m_temporalSAD = 0; 277 277 #endif … … 1189 1189 1190 1190 // further split 1191 #if H_3D_QTLPC 1191 1192 if( bSubBranch && bTrySplitDQP && uiDepth < g_uiMaxCUDepth - g_uiAddCUDepth ) 1193 #else 1194 if( bSubBranch && uiDepth < g_uiMaxCUDepth - g_uiAddCUDepth ) 1195 #endif 1192 1196 { 1193 1197 #if H_3D_VSO // M9 -
branches/HTM-8.2-dev0-Cleanup/source/Lib/TLibEncoder/TEncGOP.cpp
r651 r653 2355 2355 iterPic++; 2356 2356 } 2357 2357 2358 #if !H_MV 2359 assert( rpcPic != NULL ); 2360 #endif 2358 2361 assert (rpcPic->getPOC() == pocCurr); 2359 2362 -
branches/HTM-8.2-dev0-Cleanup/source/Lib/TLibEncoder/TEncSearch.cpp
r650 r653 7024 7024 } 7025 7025 7026 #if H_3D_DIM 7026 7027 // ------------------------------------------------------------------------------------------------------------------- 7027 7028 // Depth intra search 7028 7029 // ------------------------------------------------------------------------------------------------------------------- 7029 #if H_3D_DIM7030 7030 Void TEncSearch::xCalcBiSegDCs( Pel* ptrSrc, UInt srcStride, Bool* biSegPattern, Int patternStride, Pel& valDC1, Pel& valDC2 ) 7031 7031 { -
branches/HTM-8.2-dev0-Cleanup/source/Lib/TLibEncoder/TEncSearch.h
r650 r653 343 343 UInt stateU0V1Both2 ); 344 344 345 345 #if H_3D_DIM 346 346 // ------------------------------------------------------------------------------------------------------------------- 347 347 // Depth intra search 348 348 // ------------------------------------------------------------------------------------------------------------------- 349 #if H_3D_DIM350 349 Void xCalcBiSegDCs ( Pel* ptrSrc, UInt srcStride, Bool* biSegPattern, Int patternStride, Pel& valDC1, Pel& valDC2 ); 351 350 #if H_3D_DIM_DMM -
branches/HTM-8.2-dev0-Cleanup/source/Lib/TLibEncoder/TEncTop.cpp
r651 r653 923 923 #endif 924 924 m_cPPS.setSignHideFlag(getSignHideFlag()); 925 m_cPPS.setDeblockingFilterControlPresentFlag (m_DeblockingFilterControlPresent ); 925 if ( getDeblockingFilterMetric() ) 926 { 927 m_cPPS.setDeblockingFilterControlPresentFlag (true); 928 m_cPPS.setDeblockingFilterOverrideEnabledFlag(true); 929 m_cPPS.setPicDisableDeblockingFilterFlag(false); 930 m_cPPS.setDeblockingFilterBetaOffsetDiv2(0); 931 m_cPPS.setDeblockingFilterTcOffsetDiv2(0); 932 } 933 else 934 { 935 m_cPPS.setDeblockingFilterControlPresentFlag (m_DeblockingFilterControlPresent ); 936 } 926 937 m_cPPS.setLog2ParallelMergeLevelMinus2 (m_log2ParallelMergeLevelMinus2 ); 927 938 m_cPPS.setCabacInitPresentFlag(CABAC_INIT_PRESENT_FLAG);
Note: See TracChangeset for help on using the changeset viewer.