diff --git a/source/Lib/DecoderLib/DecLib.cpp b/source/Lib/DecoderLib/DecLib.cpp index c3af03c82b6ff9006bc27ad00253abf63b78d1f3..c9fb454ebd58e9ed7d263dcf1b2ef535d9953329 100644 --- a/source/Lib/DecoderLib/DecLib.cpp +++ b/source/Lib/DecoderLib/DecLib.cpp @@ -1821,6 +1821,26 @@ void DecLib::xActivateParameterSets( const InputNALUnit nalu ) if (sps->getNnlfHopEnabledFlag()) { m_nnfilterHOP.init(m_nnlfHopModelName, pps->getPicWidthInLumaSamples(), pps->getPicHeightInLumaSamples(), sps->getChromaFormatIdc(), sps->getNnlfHopMaxNumPrms()); + + NnlfHopInferGranularity hopInferGranularity = NNLF_HOP_INFER_GRANULARITY_BASE; + if (pSlice->getSliceType() == I_SLICE) + { + hopInferGranularity = NNLF_HOP_INFER_GRANULARITY_LARGE; + } + else if (pSlice->getSliceQp() < 23) + { + hopInferGranularity = NNLF_HOP_INFER_GRANULARITY_BASE; + } + else if (pSlice->getSliceQp() < 29) + { + hopInferGranularity = NNLF_HOP_INFER_GRANULARITY_BASE; + } + else + { + hopInferGranularity = pps->getPicWidthInLumaSamples() <= 832 ? NNLF_HOP_INFER_GRANULARITY_BASE : NNLF_HOP_INFER_GRANULARITY_LARGE; + } + pSlice->setNnlfHopInferGranularity(hopInferGranularity); + m_pcPic->initPicprms(*pSlice); } #endif diff --git a/source/Lib/DecoderLib/VLCReader.cpp b/source/Lib/DecoderLib/VLCReader.cpp index 609d494b8cb995b74734f7d8df9c74e5188581ab..91fea3b161ff5f1f67a5b6b18cde8991825b5f30 100644 --- a/source/Lib/DecoderLib/VLCReader.cpp +++ b/source/Lib/DecoderLib/VLCReader.cpp @@ -4274,26 +4274,6 @@ void HLSyntaxReader::parseSliceHeader (Slice* pcSlice, PicHeader* picHeader, Par } } pcSlice->setNnlfHopParameters(prm); - - NnlfHopInferGranularity hopInferGranularity = NNLF_HOP_INFER_GRANULARITY_BASE; - if (pcSlice->getSliceType() == I_SLICE) - { - hopInferGranularity = NNLF_HOP_INFER_GRANULARITY_LARGE; - } - else if (pcSlice->getSliceQp() < 23) - { - hopInferGranularity = NNLF_HOP_INFER_GRANULARITY_BASE; - } - else if (pcSlice->getSliceQp() < 29) - { - hopInferGranularity = NNLF_HOP_INFER_GRANULARITY_BASE; - } - else - { - hopInferGranularity = - pps->getPicWidthInLumaSamples() <= 832 ? NNLF_HOP_INFER_GRANULARITY_BASE : NNLF_HOP_INFER_GRANULARITY_LARGE; - } - pcSlice->setNnlfHopInferGranularity(hopInferGranularity); } #endif