Changeset 1419 in SHVCSoftware for branches/SHM-dev/source/Lib/TLibEncoder/TEnc3DAsymLUT.cpp
- Timestamp:
- 5 Aug 2015, 03:02:48 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/Lib/TLibEncoder/TEnc3DAsymLUT.cpp
r1297 r1419 549 549 TComPicYuv *pcRecPicBL = pSlice->getBaseColPic(refLayerIdc)->getPicYuvRec(); 550 550 // borders of down-sampled picture 551 Int leftDS = (scalEL.getWindowLeftOffset() *g_posScalingFactor[refLayerIdc][0]+(1<<15))>>16;552 Int rightDS = pcRecPicBL->getWidth(COMPONENT_Y) - 1 + (((scalEL.getWindowRightOffset()) *g_posScalingFactor[refLayerIdc][0]+(1<<15))>>16);553 Int topDS = (((scalEL.getWindowTopOffset()) *g_posScalingFactor[refLayerIdc][1]+(1<<15))>>16);554 Int bottomDS = pcRecPicBL->getHeight(COMPONENT_Y) - 1 + (((scalEL.getWindowBottomOffset()) *g_posScalingFactor[refLayerIdc][1]+(1<<15))>>16);551 Int leftDS = (scalEL.getWindowLeftOffset() * pSlice->getPic()->getPosScalingFactor(refLayerIdc, 0)+(1<<15))>>16; 552 Int rightDS = pcRecPicBL->getWidth(COMPONENT_Y) - 1 + (((scalEL.getWindowRightOffset()) * pSlice->getPic()->getPosScalingFactor(refLayerIdc, 0)+(1<<15))>>16); 553 Int topDS = (((scalEL.getWindowTopOffset()) * pSlice->getPic()->getPosScalingFactor(refLayerIdc, 1)+(1<<15))>>16); 554 Int bottomDS = pcRecPicBL->getHeight(COMPONENT_Y) - 1 + (((scalEL.getWindowBottomOffset()) * pSlice->getPic()->getPosScalingFactor(refLayerIdc, 1)+(1<<15))>>16); 555 555 // overlapped region 556 556 Int left = max( 0 , leftDS );
Note: See TracChangeset for help on using the changeset viewer.