Changeset 653 in 3DVCSoftware


Ignore:
Timestamp:
21 Oct 2013, 18:32:39 (11 years ago)
Author:
tech
Message:

Added missing parts of merge.

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  
    173173#endif
    174174
    175 #endif // H_3D
    176 
    177175
    178176// Rate Control
     
    180178#define KWU_RC_VIEWRC_E0227               0  ///< JCT3V-E0227, view-wise target bitrate allocation
    181179#define KWU_RC_MADPRED_E0227              0  ///< JCT3V-E0227, inter-view MAD prediction
     180
     181#endif // H_3D
     182
     183
    182184
    183185/////////////////////////////////////////////////////////////////////////////////////////
  • branches/HTM-8.2-dev0-Cleanup/source/Lib/TLibEncoder/TEncCavlc.cpp

    r651 r653  
    730730#endif
    731731  //future extensions here..
     732
     733  return;
    732734}
    733735
  • branches/HTM-8.2-dev0-Cleanup/source/Lib/TLibEncoder/TEncCu.cpp

    r652 r653  
    272272#if RATE_CONTROL_LAMBDA_DOMAIN
    273273#if !M0036_RC_IMPROVEMENT
     274  m_addSADDepth      = 0;
    274275  m_LCUPredictionSAD = 0;
    275   m_addSADDepth      = 0;
    276276  m_temporalSAD      = 0;
    277277#endif
     
    11891189
    11901190    // further split
     1191#if H_3D_QTLPC
    11911192    if( bSubBranch && bTrySplitDQP && uiDepth < g_uiMaxCUDepth - g_uiAddCUDepth )
     1193#else
     1194    if( bSubBranch && uiDepth < g_uiMaxCUDepth - g_uiAddCUDepth )
     1195#endif
    11921196    {
    11931197#if H_3D_VSO // M9
  • branches/HTM-8.2-dev0-Cleanup/source/Lib/TLibEncoder/TEncGOP.cpp

    r651 r653  
    23552355    iterPic++;
    23562356  }
    2357  
     2357
     2358#if !H_MV
     2359  assert( rpcPic != NULL );
     2360#endif
    23582361  assert (rpcPic->getPOC() == pocCurr);
    23592362 
  • branches/HTM-8.2-dev0-Cleanup/source/Lib/TLibEncoder/TEncSearch.cpp

    r650 r653  
    70247024}
    70257025
     7026#if H_3D_DIM
    70267027  // -------------------------------------------------------------------------------------------------------------------
    70277028  // Depth intra search
    70287029  // -------------------------------------------------------------------------------------------------------------------
    7029 #if H_3D_DIM
    70307030Void TEncSearch::xCalcBiSegDCs( Pel* ptrSrc, UInt srcStride, Bool* biSegPattern, Int patternStride, Pel& valDC1, Pel& valDC2 )
    70317031{
  • branches/HTM-8.2-dev0-Cleanup/source/Lib/TLibEncoder/TEncSearch.h

    r650 r653  
    343343                                    UInt         stateU0V1Both2 );
    344344
    345 
     345#if H_3D_DIM
    346346  // -------------------------------------------------------------------------------------------------------------------
    347347  // Depth intra search
    348348  // -------------------------------------------------------------------------------------------------------------------
    349 #if H_3D_DIM
    350349  Void xCalcBiSegDCs              ( Pel* ptrSrc, UInt srcStride, Bool* biSegPattern, Int patternStride, Pel& valDC1, Pel& valDC2 );
    351350#if H_3D_DIM_DMM
  • branches/HTM-8.2-dev0-Cleanup/source/Lib/TLibEncoder/TEncTop.cpp

    r651 r653  
    923923#endif
    924924  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  }
    926937  m_cPPS.setLog2ParallelMergeLevelMinus2   (m_log2ParallelMergeLevelMinus2 );
    927938  m_cPPS.setCabacInitPresentFlag(CABAC_INIT_PRESENT_FLAG);
Note: See TracChangeset for help on using the changeset viewer.