diff --git a/source/Lib/CommonLib/ContextModelling.h b/source/Lib/CommonLib/ContextModelling.h index af67152c7a99756347c8692c9679de86f34f3946..630d3ac9c06f8fe0f1aad2ccf763c1ae6ea5623d 100644 --- a/source/Lib/CommonLib/ContextModelling.h +++ b/source/Lib/CommonLib/ContextModelling.h @@ -446,9 +446,7 @@ public: violatesLfnstConstrained[CHANNEL_TYPE_LUMA ] = false; violatesLfnstConstrained[CHANNEL_TYPE_CHROMA] = false; #endif - lastScanPos[COMPONENT_Y ] = -1; - lastScanPos[COMPONENT_Cb] = -1; - lastScanPos[COMPONENT_Cr] = -1; + lfnstLastScanPos = false; } #else qgStart(false), @@ -471,9 +469,7 @@ public: violatesLfnstConstrained[CHANNEL_TYPE_LUMA ] = false; violatesLfnstConstrained[CHANNEL_TYPE_CHROMA] = false; #endif - lastScanPos[COMPONENT_Y ] = -1; - lastScanPos[COMPONENT_Cb] = -1; - lastScanPos[COMPONENT_Cr] = -1; + lfnstLastScanPos = false; } #else #if JVET_O0094_LFNST_ZERO_PRIM_COEFFS @@ -492,7 +488,7 @@ public: bool isChromaQpAdjCoded; bool qgStart; #if JVET_O0472_LFNST_SIGNALLING_LAST_SCAN_POS - int lastScanPos[MAX_NUM_COMPONENT]; + bool lfnstLastScanPos; #else uint32_t numNonZeroCoeffNonTs; #endif diff --git a/source/Lib/DecoderLib/CABACReader.cpp b/source/Lib/DecoderLib/CABACReader.cpp index 8f4da3cf6bafb86568f8cf6ac6a733e7d87bb1a3..28420c8eb07c0fde4c3db214000743f5fb4b410c 100755 --- a/source/Lib/DecoderLib/CABACReader.cpp +++ b/source/Lib/DecoderLib/CABACReader.cpp @@ -1491,9 +1491,7 @@ void CABACReader::cu_residual( CodingUnit& cu, Partitioner &partitioner, CUCtx& cuCtx.violatesLfnstConstrained[CHANNEL_TYPE_CHROMA] = false; #endif #if JVET_O0472_LFNST_SIGNALLING_LAST_SCAN_POS - cuCtx.lastScanPos[COMPONENT_Y ] = -1; - cuCtx.lastScanPos[COMPONENT_Cb] = -1; - cuCtx.lastScanPos[COMPONENT_Cr] = -1; + cuCtx.lfnstLastScanPos = false; #endif ChromaCbfs chromaCbfs; @@ -2896,7 +2894,8 @@ void CABACReader::residual_coding( TransformUnit& tu, ComponentID compID ) #if JVET_O0472_LFNST_SIGNALLING_LAST_SCAN_POS if( tu.mtsIdx != MTS_SKIP && tu.blocks[ compID ].height >= 4 && tu.blocks[ compID ].width >= 4 ) { - cuCtx.lastScanPos[compID] = cctx.scanPosLast(); + const int lfnstLastScanPosTh = isLuma( compID ) ? LFNST_LAST_SIG_LUMA : LFNST_LAST_SIG_CHROMA; + cuCtx.lfnstLastScanPos |= cctx.scanPosLast() >= lfnstLastScanPosTh; } #endif // parse subblocks @@ -3064,24 +3063,20 @@ void CABACReader::residual_lfnst_mode( CodingUnit& cu ) #else bool nonZeroCoeffNonTsCorner8x8 = CU::getNumNonZeroCoeffNonTsCorner8x8( cu, lumaFlag, chromaFlag ) > 0; #endif -#if JVET_O0472_LFNST_SIGNALLING_LAST_SCAN_POS - const bool skipLfnst = CS::isDualITree( *cu.cs ) ? ( isLuma( cu.chType ) ? ( cuCtx.lastScanPos[ COMPONENT_Y ] < LFNST_LAST_SIG_LUMA ) : - ( cuCtx.lastScanPos[ COMPONENT_Cb ] < LFNST_LAST_SIG_CHROMA && cuCtx.lastScanPos[ COMPONENT_Cr ] < LFNST_LAST_SIG_CHROMA ) ) : - ( cuCtx.lastScanPos[ COMPONENT_Y ] < LFNST_LAST_SIG_LUMA && cuCtx.lastScanPos[ COMPONENT_Cb ] < LFNST_LAST_SIG_CHROMA && cuCtx.lastScanPos[ COMPONENT_Cr ] < LFNST_LAST_SIG_CHROMA ); -#else +#if !JVET_O0472_LFNST_SIGNALLING_LAST_SCAN_POS const int nonZeroCoeffThr = CS::isDualITree( *cu.cs ) ? ( isLuma( cu.chType ) ? LFNST_SIG_NZ_LUMA : LFNST_SIG_NZ_CHROMA ) : LFNST_SIG_NZ_LUMA + LFNST_SIG_NZ_CHROMA; nonZeroCoeffNonTs = CU::getNumNonZeroCoeffNonTs( cu, lumaFlag, chromaFlag ) > nonZeroCoeffThr; #endif #if JVET_O0368_LFNST_WITH_DCT2_ONLY const bool isNonDCT2 = (TU::getCbf(*cu.firstTU, ComponentID(COMPONENT_Y)) && cu.firstTU->mtsIdx != MTS_DCT2_DCT2); #if JVET_O0472_LFNST_SIGNALLING_LAST_SCAN_POS - if( skipLfnst || nonZeroCoeffNonTsCorner8x8 || isNonDCT2 ) + if( !cuCtx.lfnstLastScanPos || nonZeroCoeffNonTsCorner8x8 || isNonDCT2 ) #else if (!nonZeroCoeffNonTs || nonZeroCoeffNonTsCorner8x8 || isNonDCT2) #endif #else #if JVET_O0472_LFNST_SIGNALLING_LAST_SCAN_POS - if( skipLfnst || nonZeroCoeffNonTsCorner8x8 ) + if( !cuCtx.lfnstLastScanPos || nonZeroCoeffNonTsCorner8x8 ) #else if( !nonZeroCoeffNonTs || nonZeroCoeffNonTsCorner8x8 ) #endif diff --git a/source/Lib/EncoderLib/CABACWriter.cpp b/source/Lib/EncoderLib/CABACWriter.cpp index a0c6462a834f5e95056a3a98ab4b2de0a873be64..9cc563d7ab7457d6a3c8a09c9c0ca48fb998417e 100755 --- a/source/Lib/EncoderLib/CABACWriter.cpp +++ b/source/Lib/EncoderLib/CABACWriter.cpp @@ -1380,9 +1380,7 @@ void CABACWriter::cu_residual( const CodingUnit& cu, Partitioner& partitioner, C cuCtx.violatesLfnstConstrained[CHANNEL_TYPE_CHROMA] = false; #endif #if JVET_O0472_LFNST_SIGNALLING_LAST_SCAN_POS - cuCtx.lastScanPos[COMPONENT_Y ] = -1; - cuCtx.lastScanPos[COMPONENT_Cb] = -1; - cuCtx.lastScanPos[COMPONENT_Cr] = -1; + cuCtx.lfnstLastScanPos = false; #endif #if !JVET_O0596_CBF_SIG_ALIGN_TO_SPEC @@ -2784,7 +2782,8 @@ void CABACWriter::residual_coding( const TransformUnit& tu, ComponentID compID) #if JVET_O0472_LFNST_SIGNALLING_LAST_SCAN_POS if( cuCtx && tu.mtsIdx != MTS_SKIP && tu.blocks[ compID ].height >= 4 && tu.blocks[ compID ].width >= 4 ) { - cuCtx->lastScanPos[compID] = cctx.scanPosLast(); + const int lfnstLastScanPosTh = isLuma( compID ) ? LFNST_LAST_SIG_LUMA : LFNST_LAST_SIG_CHROMA; + cuCtx->lfnstLastScanPos |= cctx.scanPosLast() >= lfnstLastScanPosTh; } #endif // code last coeff position @@ -2945,11 +2944,7 @@ void CABACWriter::residual_lfnst_mode( const CodingUnit& cu, CUCtx& cuCtx ) #else bool nonZeroCoeffNonTsCorner8x8 = CU::getNumNonZeroCoeffNonTsCorner8x8( cu, lumaFlag, chromaFlag ) > 0; #endif -#if JVET_O0472_LFNST_SIGNALLING_LAST_SCAN_POS - const bool skipLfnst = CS::isDualITree( *cu.cs ) ? ( isLuma( cu.chType ) ? ( cuCtx.lastScanPos[ COMPONENT_Y ] < LFNST_LAST_SIG_LUMA ) : - ( cuCtx.lastScanPos[ COMPONENT_Cb ] < LFNST_LAST_SIG_CHROMA && cuCtx.lastScanPos[ COMPONENT_Cr ] < LFNST_LAST_SIG_CHROMA ) ) : - ( cuCtx.lastScanPos[ COMPONENT_Y ] < LFNST_LAST_SIG_LUMA && cuCtx.lastScanPos[ COMPONENT_Cb ] < LFNST_LAST_SIG_CHROMA && cuCtx.lastScanPos[ COMPONENT_Cr ] < LFNST_LAST_SIG_CHROMA ); -#else +#if !JVET_O0472_LFNST_SIGNALLING_LAST_SCAN_POS const int nonZeroCoeffThr = CS::isDualITree( *cu.cs ) ? ( isLuma( cu.chType ) ? LFNST_SIG_NZ_LUMA : LFNST_SIG_NZ_CHROMA ) : LFNST_SIG_NZ_LUMA + LFNST_SIG_NZ_CHROMA; cuCtx.numNonZeroCoeffNonTs = CU::getNumNonZeroCoeffNonTs( cu, lumaFlag, chromaFlag ); nonZeroCoeffNonTs = cuCtx.numNonZeroCoeffNonTs > nonZeroCoeffThr; @@ -2957,13 +2952,13 @@ void CABACWriter::residual_lfnst_mode( const CodingUnit& cu, CUCtx& cuCtx ) #if JVET_O0368_LFNST_WITH_DCT2_ONLY const bool isNonDCT2 = (TU::getCbf(*cu.firstTU, ComponentID(COMPONENT_Y)) && cu.firstTU->mtsIdx != MTS_DCT2_DCT2); #if JVET_O0472_LFNST_SIGNALLING_LAST_SCAN_POS - if( skipLfnst || nonZeroCoeffNonTsCorner8x8 || isNonDCT2 ) + if( !cuCtx.lfnstLastScanPos || nonZeroCoeffNonTsCorner8x8 || isNonDCT2 ) #else if (!nonZeroCoeffNonTs || nonZeroCoeffNonTsCorner8x8 || isNonDCT2 ) #endif #else #if JVET_O0472_LFNST_SIGNALLING_LAST_SCAN_POS - if( skipLfnst || nonZeroCoeffNonTsCorner8x8 ) + if( !cuCtx.lfnstLastScanPos || nonZeroCoeffNonTsCorner8x8 ) #else if( !nonZeroCoeffNonTs || nonZeroCoeffNonTsCorner8x8 ) #endif diff --git a/source/Lib/EncoderLib/EncCu.cpp b/source/Lib/EncoderLib/EncCu.cpp index fe5b1633dd3eeefe92f4f1847336c1a60cf289bc..8887591ceddb5f057941ce3cb0f7181de3ab4b46 100644 --- a/source/Lib/EncoderLib/EncCu.cpp +++ b/source/Lib/EncoderLib/EncCu.cpp @@ -1554,12 +1554,10 @@ void EncCu::xCheckRDCostIntra( CodingStructure *&tempCS, CodingStructure *&bestC // Check if low frequency non-separable transform (LFNST) is too expensive #if JVET_O0472_LFNST_SIGNALLING_LAST_SCAN_POS - const bool skipLfnst = CS::isDualITree( *cu.cs ) ? ( isLuma( cu.chType ) ? ( cuCtx.lastScanPos[ COMPONENT_Y ] < LFNST_LAST_SIG_LUMA ) : - ( cuCtx.lastScanPos[ COMPONENT_Cb ] < LFNST_LAST_SIG_CHROMA && cuCtx.lastScanPos[ COMPONENT_Cr ] < LFNST_LAST_SIG_CHROMA ) ) : - ( cuCtx.lastScanPos[ COMPONENT_Y ] < LFNST_LAST_SIG_LUMA && cuCtx.lastScanPos[ COMPONENT_Cb ] < LFNST_LAST_SIG_CHROMA && cuCtx.lastScanPos[ COMPONENT_Cr ] < LFNST_LAST_SIG_CHROMA ); - if( lfnstIdx && skipLfnst ) + if( lfnstIdx && !cuCtx.lfnstLastScanPos ) { - if( cuCtx.lastScanPos[ COMPONENT_Y ] > -1 || cuCtx.lastScanPos[ COMPONENT_Cb ] > -1 || cuCtx.lastScanPos[ COMPONENT_Cr ] > -1 ) + bool cbfAtZeroDepth = CS::isDualITree( *tempCS ) ? cu.rootCbf : std::min( cu.firstTU->blocks[ 1 ].width, cu.firstTU->blocks[ 1 ].height ) < 4 ? TU::getCbfAtDepth( *cu.firstTU, COMPONENT_Y, 0 ) : cu.rootCbf; + if( cbfAtZeroDepth ) { tempCS->cost = MAX_DOUBLE; }