diff --git a/source/Lib/CommonLib/TypeDef.h b/source/Lib/CommonLib/TypeDef.h index 239ac9525646aafb11addb478c5c9181082b00eb..3e709eabf8aca16bc49569ca2538e41bdeb5df3b 100644 --- a/source/Lib/CommonLib/TypeDef.h +++ b/source/Lib/CommonLib/TypeDef.h @@ -52,6 +52,8 @@ #define JVET_N0494_DRAP 1 // JVET-N0494: Dependent random access point indication SEI +#define JVET_OO152_BP_SEI_GDR 1 // JVET-O0152: Allowing association of a buffering period SEI with GDR picture + #define JVET_OO147_LEADING_PIC_CHECKING 1 // JVET-O0147: Constraints on leading pictures #define JVET_O0299_APS_SCALINGLIST 1 // JVET-O0299: Scaling List Matrices Support in APS diff --git a/source/Lib/EncoderLib/EncGOP.cpp b/source/Lib/EncoderLib/EncGOP.cpp index 57e526936d9081943cb507d4aaa6f470b42840ad..9abf1b45766621b98bcf04e5a14ef335e5ba2d07 100644 --- a/source/Lib/EncoderLib/EncGOP.cpp +++ b/source/Lib/EncoderLib/EncGOP.cpp @@ -696,10 +696,17 @@ void EncGOP::xCreateIRAPLeadingSEIMessages (SEIMessages& seiMessages, const SPS void EncGOP::xCreatePerPictureSEIMessages (int picInGOP, SEIMessages& seiMessages, SEIMessages& nestedSeiMessages, Slice *slice) { +#if JVET_OO152_BP_SEI_GDR + if ((m_pcCfg->getBufferingPeriodSEIEnabled()) && (slice->isIRAP() || slice->getNalUnitType() == NAL_UNIT_CODED_SLICE_GDR) && + (slice->getSPS()->getVuiParametersPresentFlag()) && + ((slice->getSPS()->getHrdParameters()->getNalHrdParametersPresentFlag()) + || (slice->getSPS()->getHrdParameters()->getVclHrdParametersPresentFlag()))) +#else if( ( m_pcCfg->getBufferingPeriodSEIEnabled() ) && ( slice->getSliceType() == I_SLICE ) && ( slice->getSPS()->getVuiParametersPresentFlag() ) && ( ( slice->getSPS()->getHrdParameters()->getNalHrdParametersPresentFlag() ) || ( slice->getSPS()->getHrdParameters()->getVclHrdParametersPresentFlag() ) ) ) +#endif { SEIBufferingPeriod *bufferingPeriodSEI = new SEIBufferingPeriod(); m_seiEncoder.initSEIBufferingPeriod(bufferingPeriodSEI);