diff --git a/source/Lib/CommonLib/TypeDef.h b/source/Lib/CommonLib/TypeDef.h index 2a76d17995b0bf889180aefc013d10ef7fa4ad05..c671f65730ae9ae38423b171a705ddeb3b349eed 100644 --- a/source/Lib/CommonLib/TypeDef.h +++ b/source/Lib/CommonLib/TypeDef.h @@ -121,7 +121,6 @@ -#define JVET_R0114_NEGATIVE_SCALING_WINDOW_OFFSETS 1 // JVET-R0114: Allow negative scaling window offsets #define JVET_R0071_SPS_PPS_CELANUP 1 // JVET-R0071 item 2-4: cleanups on subpicture signalling (item 1 has been ported in JVET_R0156_ASPECT4) diff --git a/source/Lib/CommonLib/UnitTools.cpp b/source/Lib/CommonLib/UnitTools.cpp index 69a5681428dbcd31bc676201301f5913bfb10209..865f3268ae3f5448df38cf7e7c4a7530c8503664 100644 --- a/source/Lib/CommonLib/UnitTools.cpp +++ b/source/Lib/CommonLib/UnitTools.cpp @@ -127,10 +127,8 @@ bool CU::getRprScaling( const SPS* sps, const PPS* curPPS, Picture* refPic, int& CHECK(curPicWidth > refPicWidth * 8, "curPicWidth shall be less than or equal to refPicWidth * 8"); CHECK(curPicHeight > refPicHeight * 8, "curPicHeight shall be less than or equal to refPicHeight * 8"); -#if JVET_R0114_NEGATIVE_SCALING_WINDOW_OFFSETS CHECK(SPS::getWinUnitX(sps->getChromaFormatIdc()) * (abs(curScalingWindow.getWindowLeftOffset()) + abs(curScalingWindow.getWindowRightOffset())) > curPPS->getPicWidthInLumaSamples(), "The value of SubWidthC * ( Abs(pps_scaling_win_left_offset) + Abs(pps_scaling_win_right_offset) ) shall be less than pic_width_in_luma_samples"); CHECK(SPS::getWinUnitY(sps->getChromaFormatIdc()) * (abs(curScalingWindow.getWindowTopOffset()) + abs(curScalingWindow.getWindowBottomOffset())) > curPPS->getPicHeightInLumaSamples(), "The value of SubHeightC * ( Abs(pps_scaling_win_top_offset) + Abs(pps_scaling_win_bottom_offset) ) shall be less than pic_height_in_luma_samples"); -#endif return refPic->isRefScaled( curPPS ); } diff --git a/source/Lib/DecoderLib/VLCReader.cpp b/source/Lib/DecoderLib/VLCReader.cpp index ad5eacd9e03d2a33dcadd63e7a0c03de6b0b802e..95496d5646f14aac4a1a2f404933933a630b5509 100644 --- a/source/Lib/DecoderLib/VLCReader.cpp +++ b/source/Lib/DecoderLib/VLCReader.cpp @@ -443,17 +443,10 @@ void HLSyntaxReader::parsePPS( PPS* pcPPS ) if( uiCode != 0 ) { Window &scalingWindow = pcPPS->getScalingWindow(); -#if JVET_R0114_NEGATIVE_SCALING_WINDOW_OFFSETS READ_SVLC( iCode, "pps_scaling_win_left_offset" ); scalingWindow.setWindowLeftOffset( iCode ); READ_SVLC( iCode, "pps_scaling_win_right_offset" ); scalingWindow.setWindowRightOffset( iCode ); READ_SVLC( iCode, "pps_scaling_win_top_offset" ); scalingWindow.setWindowTopOffset( iCode ); READ_SVLC( iCode, "pps_scaling_win_bottom_offset" ); scalingWindow.setWindowBottomOffset( iCode ); -#else - READ_UVLC( uiCode, "scaling_win_left_offset" ); scalingWindow.setWindowLeftOffset( uiCode ); - READ_UVLC( uiCode, "scaling_win_right_offset" ); scalingWindow.setWindowRightOffset( uiCode ); - READ_UVLC( uiCode, "scaling_win_top_offset" ); scalingWindow.setWindowTopOffset( uiCode ); - READ_UVLC( uiCode, "scaling_win_bottom_offset" ); scalingWindow.setWindowBottomOffset( uiCode ); -#endif } else { diff --git a/source/Lib/EncoderLib/VLCWriter.cpp b/source/Lib/EncoderLib/VLCWriter.cpp index 328a216a072ee1cc72c14606815e5dfb1c3bb24b..828c82a0a8557d940406073c9dae669188e20a0d 100644 --- a/source/Lib/EncoderLib/VLCWriter.cpp +++ b/source/Lib/EncoderLib/VLCWriter.cpp @@ -269,17 +269,10 @@ void HLSWriter::codePPS( const PPS* pcPPS ) WRITE_FLAG( scalingWindow.getWindowEnabledFlag(), "scaling_window_flag" ); if( scalingWindow.getWindowEnabledFlag() ) { -#if JVET_R0114_NEGATIVE_SCALING_WINDOW_OFFSETS WRITE_SVLC( scalingWindow.getWindowLeftOffset(), "pps_scaling_win_left_offset" ); WRITE_SVLC( scalingWindow.getWindowRightOffset(), "pps_scaling_win_right_offset" ); WRITE_SVLC( scalingWindow.getWindowTopOffset(), "pps_scaling_win_top_offset" ); WRITE_SVLC( scalingWindow.getWindowBottomOffset(), "pps_scaling_win_bottom_offset" ); -#else - WRITE_UVLC( scalingWindow.getWindowLeftOffset(), "scaling_win_left_offset" ); - WRITE_UVLC( scalingWindow.getWindowRightOffset(), "scaling_win_right_offset" ); - WRITE_UVLC( scalingWindow.getWindowTopOffset(), "scaling_win_top_offset" ); - WRITE_UVLC( scalingWindow.getWindowBottomOffset(), "scaling_win_bottom_offset" ); -#endif } WRITE_FLAG( pcPPS->getOutputFlagPresentFlag() ? 1 : 0, "output_flag_present_flag" );