Changeset 695 in SHVCSoftware for branches/SHM-6-dev/source/Lib
- Timestamp:
- 18 Apr 2014, 19:18:30 (11 years ago)
- Location:
- branches/SHM-6-dev/source/Lib
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-6-dev/source/Lib/TLibCommon/TComUpsampleFilter.cpp
r694 r695 128 128 #if Q0200_CONFORMANCE_BL_SIZE 129 129 const Window &confBL = currSlice->getBaseColPic(refLayerIdc)->getConformanceWindow(); 130 widthBL -= (confBL.getWindowLeftOffset() + confBL.getWindowRightOffset());131 heightBL -= (confBL.getWindowBottomOffset() + confBL.getWindowTopOffset());130 widthBL -= confBL.getWindowLeftOffset() + confBL.getWindowRightOffset(); 131 heightBL -= confBL.getWindowBottomOffset() + confBL.getWindowTopOffset(); 132 132 #endif 133 133 #if P0312_VERT_PHASE_ADJ … … 442 442 leftOffset = leftStartC > 0 ? leftStartC : 0; 443 443 #if Q0200_CONFORMANCE_BL_SIZE 444 leftStartC+= (confBL.getWindowLeftOffset()>>1)<<4;445 topStartC+= (confBL.getWindowTopOffset()>>1)<<4;444 leftStartC += ( confBL.getWindowLeftOffset() >> 1 ) << 4; 445 topStartC += ( confBL.getWindowTopOffset() >> 1 ) << 4; 446 446 #endif 447 447 shiftX = 16; -
branches/SHM-6-dev/source/Lib/TLibDecoder/TDecTop.cpp
r694 r695 1556 1556 Int heightBL = pcSlice->getBaseColPic(refLayerIdc)->getPicYuvRec()->getHeight(); 1557 1557 #if Q0200_CONFORMANCE_BL_SIZE 1558 const Window &confBL = pcSlice->getBaseColPic(refLayerIdc)->getConformanceWindow();1559 widthBL -= (confBL.getWindowLeftOffset()+confBL.getWindowRightOffset());1560 heightBL -= (confBL.getWindowTopOffset()+confBL.getWindowBottomOffset());1558 const Window &confBL = pcSlice->getBaseColPic(refLayerIdc)->getConformanceWindow(); 1559 widthBL -= confBL.getWindowLeftOffset() + confBL.getWindowRightOffset(); 1560 heightBL -= confBL.getWindowTopOffset() + confBL.getWindowBottomOffset(); 1561 1561 #endif 1562 1562 Int widthEL = pcPic->getPicYuvRec()->getWidth() - scalEL.getWindowLeftOffset() - scalEL.getWindowRightOffset(); -
branches/SHM-6-dev/source/Lib/TLibEncoder/TEncGOP.cpp
r694 r695 1044 1044 Int heightBL = pcSlice->getBaseColPic(refLayerIdc)->getPicYuvRec()->getHeight(); 1045 1045 #if Q0200_CONFORMANCE_BL_SIZE 1046 const Window &confBL = pcSlice->getBaseColPic(refLayerIdc)->getConformanceWindow();1047 widthBL -= (confBL.getWindowLeftOffset()+confBL.getWindowRightOffset());1048 heightBL -= (confBL.getWindowTopOffset()+confBL.getWindowBottomOffset());1046 const Window &confBL = pcSlice->getBaseColPic(refLayerIdc)->getConformanceWindow(); 1047 widthBL -= confBL.getWindowLeftOffset() + confBL.getWindowRightOffset(); 1048 heightBL -= confBL.getWindowTopOffset() + confBL.getWindowBottomOffset(); 1049 1049 #endif 1050 1050 Int widthEL = pcPic->getPicYuvRec()->getWidth() - scalEL.getWindowLeftOffset() - scalEL.getWindowRightOffset();
Note: See TracChangeset for help on using the changeset viewer.