diff --git a/source/Lib/CommonLib/Picture.cpp b/source/Lib/CommonLib/Picture.cpp index 3fc433befd5ec84f93e4bd7b2fc63bd06845a411..1d4ff49097c0c165ca9758c910cad513ab590a35 100644 --- a/source/Lib/CommonLib/Picture.cpp +++ b/source/Lib/CommonLib/Picture.cpp @@ -243,6 +243,7 @@ void Picture::finalInit( const VPS* vps, const SPS& sps, const PPS& pps, PicHead m_conformanceWindow = pps.getConformanceWindow(); m_scalingWindow = pps.getScalingWindow(); mixedNaluTypesInPicFlag = pps.getMixedNaluTypesInPicFlag(); + nonReferencePictureFlag = picHeader->getNonReferencePictureFlag(); if (m_spliceIdx == NULL) { diff --git a/source/Lib/CommonLib/Slice.cpp b/source/Lib/CommonLib/Slice.cpp index 4b5c0474211336b26c83c96f394006a2be0b34d8..5a4c3cd857a43bd362d68bd2af26789d433ff575 100644 --- a/source/Lib/CommonLib/Slice.cpp +++ b/source/Lib/CommonLib/Slice.cpp @@ -673,9 +673,7 @@ void Slice::checkRPL(const ReferencePictureList* pRPL0, const ReferencePictureLi } // Generated reference picture does not have picture header - const bool isGeneratedRefPic = pcRefPic->slices[0]->getPicHeader() ? false : true; - - const bool nonReferencePictureFlag = isGeneratedRefPic ? pcRefPic->nonReferencePictureFlag : pcRefPic->slices[0]->getPicHeader()->getNonReferencePictureFlag(); + const bool nonReferencePictureFlag = pcRefPic->nonReferencePictureFlag; CHECK( pcRefPic == m_pcPic || nonReferencePictureFlag, "The picture referred to by each entry in RefPicList[ 0 ] or RefPicList[ 1 ] shall not be the current picture and shall have ph_non_ref_pic_flag equal to 0" ); if( i < numActiveEntries[refPicList] )