Changeset 30 in SHVCSoftware for trunk/source/Lib/TLibCommon


Ignore:
Timestamp:
7 Feb 2013, 03:07:23 (12 years ago)
Author:
seregin
Message:

Adding braces and indents

Location:
trunk/source/Lib/TLibCommon
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/source/Lib/TLibCommon/TComPic.cpp

    r28 r30  
    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                        {
  • trunk/source/Lib/TLibCommon/TComTrQuant.cpp

    r17 r30  
    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.