Changeset 34 in SHVCSoftware for branches/SHM-1.0-dev/source/Lib/TLibCommon


Ignore:
Timestamp:
8 Feb 2013, 00:16:24 (12 years ago)
Author:
seregin
Message:

Merge with trunk

Location:
branches/SHM-1.0-dev/source
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/SHM-1.0-dev/source

  • branches/SHM-1.0-dev/source/Lib/TLibCommon/TComPic.cpp

    r32 r34  
    586586}
    587587
    588 
    589 
    590 
    591588Void TComPic::copyUpsampledMvField(TComPic* pcPicBase)
    592589{
    593 
    594 
    595 
    596590  Int iBWidth   = pcPicBase->getPicYuvRec()->getWidth () - pcPicBase->getPicYuvRec()->getPicCropLeftOffset() - pcPicBase->getPicYuvRec()->getPicCropRightOffset();
    597591  Int iBHeight  = pcPicBase->getPicYuvRec()->getHeight() - pcPicBase->getPicYuvRec()->getPicCropTopOffset() - pcPicBase->getPicYuvRec()->getPicCropBottomOffset();
     
    599593  Int iEWidth   = getPicYuvRec()->getWidth() -  getPicYuvRec()->getPicCropLeftOffset() - getPicYuvRec()->getPicCropRightOffset();
    600594  Int iEHeight  = getPicYuvRec()->getHeight() - getPicYuvRec()->getPicCropTopOffset() -  getPicYuvRec()->getPicCropBottomOffset();
    601 
    602 
     595 
    603596  UInt upSampleRatio = 0;
    604597  if(iEWidth == iBWidth && iEHeight == iBHeight)
     
    654647        }
    655648      }
    656 
    657649      else
    658650      {
  • branches/SHM-1.0-dev/source/Lib/TLibCommon/TComTrQuant.cpp

    r17 r34  
    14981498#if NO_RESIDUAL_FLAG_FOR_BLPRED
    14991499    if(pcCU->isIntraBL(uiAbsPartIdx) && eTxt == TEXT_LUMA)
     1500    {
    15001501      invtransformNxN( pcCU->getCUTransquantBypass(uiAbsPartIdx), eTxt, DC_IDX, pResi, uiStride, rpcCoeff, uiWidth, uiHeight, scalingListType, pcCU->getTransformSkip(uiAbsPartIdx, eTxt) );
     1502    }
    15011503    else
     1504    {
    15021505      invtransformNxN( pcCU->getCUTransquantBypass(uiAbsPartIdx), eTxt, REG_DCT, pResi, uiStride, rpcCoeff, uiWidth, uiHeight, scalingListType, pcCU->getTransformSkip(uiAbsPartIdx, eTxt) );
     1506    }
    15031507#else
    15041508    invtransformNxN( pcCU->getCUTransquantBypass(uiAbsPartIdx), eTxt, REG_DCT, pResi, uiStride, rpcCoeff, uiWidth, uiHeight, scalingListType, pcCU->getTransformSkip(uiAbsPartIdx, eTxt) );
Note: See TracChangeset for help on using the changeset viewer.