Changeset 695 in SHVCSoftware
- Timestamp:
- 18 Apr 2014, 19:18:30 (11 years ago)
- Location:
- branches/SHM-6-dev/source
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-6-dev/source/App/TAppDecoder/TAppDecTop.cpp
r694 r695 704 704 #if REPN_FORMAT_IN_VPS 705 705 #if Q0200_CONFORMANCE_BL_SIZE 706 Int xScal =1,yScal=1;706 Int xScal = 1, yScal = 1; 707 707 #else 708 708 UInt chromaFormatIdc = pcPic->getSlice(0)->getChromaFormatIdc(); … … 828 828 #if REPN_FORMAT_IN_VPS 829 829 #if Q0200_CONFORMANCE_BL_SIZE 830 Int xScal =1,yScal=1;830 Int xScal = 1, yScal = 1; 831 831 #else 832 832 UInt chromaFormatIdc = pcPic->getSlice(0)->getChromaFormatIdc(); … … 947 947 #if REPN_FORMAT_IN_VPS 948 948 #if Q0200_CONFORMANCE_BL_SIZE 949 Int xScal =1,yScal=1;949 Int xScal = 1, yScal = 1; 950 950 #else 951 951 UInt chromaFormatIdc = pcPic->getSlice(0)->getChromaFormatIdc(); … … 1073 1073 #if REPN_FORMAT_IN_VPS 1074 1074 #if Q0200_CONFORMANCE_BL_SIZE 1075 Int xScal =1,yScal=1;1075 Int xScal = 1,yScal = 1; 1076 1076 #else 1077 1077 UInt chromaFormatIdc = pcPic->getSlice(0)->getChromaFormatIdc(); -
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.