Changeset 1429 in SHVCSoftware


Ignore:
Timestamp:
10 Aug 2015, 19:04:08 (9 years ago)
Author:
seregin
Message:

change determin to determine

Location:
branches/SHM-dev/source/Lib/TLibEncoder
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/SHM-dev/source/Lib/TLibEncoder/TEncGOP.cpp

    r1428 r1429  
    18151815          Bool bSignalPPS = m_bSeqFirst;
    18161816          bSignalPPS |= m_pcCfg->getGOPSize() > 1 ? pocCurr % m_pcCfg->getIntraPeriod() == 0 : pocCurr % m_pcCfg->getFrameRate() == 0;
    1817           xDetermin3DAsymLUT( pcSlice, pcPic, refLayerIdc, m_pcCfg, bSignalPPS );
     1817          xDetermine3DAsymLUT( pcSlice, pcPic, refLayerIdc, m_pcCfg, bSignalPPS );
    18181818
    18191819          // update PPS in TEncTop and TComPicSym classes
     
    41234123
    41244124#if CGS_3D_ASYMLUT
    4125 Void TEncGOP::xDetermin3DAsymLUT( TComSlice * pSlice, TComPic * pCurPic, UInt refLayerIdc, TEncCfg * pCfg, Bool bSignalPPS )
     4125Void TEncGOP::xDetermine3DAsymLUT( TComSlice * pSlice, TComPic * pCurPic, UInt refLayerIdc, TEncCfg * pCfg, Bool bSignalPPS )
    41264126{
    41274127  Int nCGSFlag = pSlice->getPPS()->getCGSFlag();
     
    41424142  dFrameLambda = 0.68 * pow (2, (QP  - SHIFT_QP) / 3.0) * (m_pcCfg->getGOPSize() > 1 && pSlice->isInterB()? 2 : 1);
    41434143
    4144   if(m_pcCfg->getCGSLutSizeRDO() == 1 && (!bSignalPPS && (pSlice->getDepth() < nTLthres)))
     4144  if(m_pcCfg->getCGSLutSizeRDO() == 1 && (!bSignalPPS && (pSlice->getDepth() < nTLthres)))
     4145  {
    41454146    dErrorUpdatedPPS = m_Enc3DAsymLUTPicUpdate.derive3DAsymLUT( pSlice , pCurPic , refLayerIdc , pCfg , bSignalPPS , m_pcEncTop->getElRapSliceTypeB(), dFrameLambda );
     4147  }
    41464148  else if (pSlice->getDepth() >= nTLthres)
     4149  {
    41474150    dErrorUpdatedPPS = MAX_DOUBLE;
     4151  }
    41484152  else // if (m_pcCfg->getCGSLutSizeRDO() = 0 || bSignalPPS)
    41494153#endif   
  • branches/SHM-dev/source/Lib/TLibEncoder/TEncGOP.h

    r1419 r1429  
    286286#endif
    287287#if CGS_3D_ASYMLUT
    288   Void xDetermin3DAsymLUT( TComSlice * pSlice , TComPic * pCurPic , UInt refLayerIdc , TEncCfg * pCfg , Bool bSignalPPS );
     288  Void xDetermine3DAsymLUT( TComSlice * pSlice , TComPic * pCurPic , UInt refLayerIdc , TEncCfg * pCfg , Bool bSignalPPS );
    289289  Void downScalePic( TComPicYuv* pcYuvSrc, TComPicYuv* pcYuvDest, BitDepths& bitDepth, Int** posScalingFactor);
    290290  Void downScaleComponent2x2( const Pel* pSrc, Pel* pDest, const Int iSrcStride, const Int iDestStride, const Int iSrcWidth, const Int iSrcHeight, const Int inputBitDepth, const Int outputBitDepth );
Note: See TracChangeset for help on using the changeset viewer.