Changeset 30 in SHVCSoftware for trunk/source/Lib/TLibCommon
- Timestamp:
- 7 Feb 2013, 03:07:23 (12 years ago)
- Location:
- trunk/source/Lib/TLibCommon
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/Lib/TLibCommon/TComPic.cpp
r28 r30 586 586 } 587 587 588 589 590 591 588 Void TComPic::copyUpsampledMvField(TComPic* pcPicBase) 592 589 { 593 594 595 596 590 Int iBWidth = pcPicBase->getPicYuvRec()->getWidth () - pcPicBase->getPicYuvRec()->getPicCropLeftOffset() - pcPicBase->getPicYuvRec()->getPicCropRightOffset(); 597 591 Int iBHeight = pcPicBase->getPicYuvRec()->getHeight() - pcPicBase->getPicYuvRec()->getPicCropTopOffset() - pcPicBase->getPicYuvRec()->getPicCropBottomOffset(); … … 599 593 Int iEWidth = getPicYuvRec()->getWidth() - getPicYuvRec()->getPicCropLeftOffset() - getPicYuvRec()->getPicCropRightOffset(); 600 594 Int iEHeight = getPicYuvRec()->getHeight() - getPicYuvRec()->getPicCropTopOffset() - getPicYuvRec()->getPicCropBottomOffset(); 601 602 595 603 596 UInt upSampleRatio = 0; 604 597 if(iEWidth == iBWidth && iEHeight == iBHeight) … … 654 647 } 655 648 } 656 657 649 else 658 650 { -
trunk/source/Lib/TLibCommon/TComTrQuant.cpp
r17 r30 1498 1498 #if NO_RESIDUAL_FLAG_FOR_BLPRED 1499 1499 if(pcCU->isIntraBL(uiAbsPartIdx) && eTxt == TEXT_LUMA) 1500 { 1500 1501 invtransformNxN( pcCU->getCUTransquantBypass(uiAbsPartIdx), eTxt, DC_IDX, pResi, uiStride, rpcCoeff, uiWidth, uiHeight, scalingListType, pcCU->getTransformSkip(uiAbsPartIdx, eTxt) ); 1502 } 1501 1503 else 1504 { 1502 1505 invtransformNxN( pcCU->getCUTransquantBypass(uiAbsPartIdx), eTxt, REG_DCT, pResi, uiStride, rpcCoeff, uiWidth, uiHeight, scalingListType, pcCU->getTransformSkip(uiAbsPartIdx, eTxt) ); 1506 } 1503 1507 #else 1504 1508 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.