diff --git a/cfg/per-class/classF.cfg b/cfg/per-class/classF.cfg index 0820b2133464f6621b5a197827f534a3d2acc332..0edc6f8c15bcee5cdd03a22df2d25406613a7c33 100644 --- a/cfg/per-class/classF.cfg +++ b/cfg/per-class/classF.cfg @@ -1,3 +1,3 @@ IBC : 1 HashME : 1 -RDPCM: 1 +BDPCM: 1 diff --git a/source/App/EncoderApp/EncApp.cpp b/source/App/EncoderApp/EncApp.cpp index bf420c481a2d7b33d8d2cd55c694886ea0925321..21c65e025833428981a3e697e79f01f9c20d0f7d 100644 --- a/source/App/EncoderApp/EncApp.cpp +++ b/source/App/EncoderApp/EncApp.cpp @@ -302,7 +302,9 @@ void EncApp::xInitLibCfg() m_cEncLib.setDMVR ( m_DMVR ); m_cEncLib.setMMVD ( m_MMVD ); m_cEncLib.setMmvdDisNum (m_MmvdDisNum); +#if !JVET_O1136_TS_BDPCM_SIGNALLING m_cEncLib.setRDPCM ( m_RdpcmMode ); +#endif #if JVET_O0119_BASE_PALETTE_444 m_cEncLib.setPLTMode ( m_PLTMode ); #endif diff --git a/source/App/EncoderApp/EncAppCfg.h b/source/App/EncoderApp/EncAppCfg.h index 02209e98ae1dfb9da0165e4e72c193a0da62e453..bafa421503205c5b1a49d4a00b438c34b0fee637 100644 --- a/source/App/EncoderApp/EncAppCfg.h +++ b/source/App/EncoderApp/EncAppCfg.h @@ -297,7 +297,9 @@ protected: bool m_DMVR; bool m_MMVD; int m_MmvdDisNum; +#if !JVET_O1136_TS_BDPCM_SIGNALLING bool m_RdpcmMode; +#endif #if JVET_O0119_BASE_PALETTE_444 unsigned m_PLTMode; #endif diff --git a/source/Lib/EncoderLib/EncCfg.h b/source/Lib/EncoderLib/EncCfg.h index e04ef2024c812cbeb7bb7162246716f8a7ad030e..b2e2501e94913cb7072942fc0f93c7b26651cb8e 100644 --- a/source/Lib/EncoderLib/EncCfg.h +++ b/source/Lib/EncoderLib/EncCfg.h @@ -311,7 +311,9 @@ protected: bool m_DMVR; bool m_MMVD; int m_MmvdDisNum; +#if !JVET_O1136_TS_BDPCM_SIGNALLING bool m_RdpcmMode; +#endif #if JVET_O0119_BASE_PALETTE_444 unsigned m_PLTMode; #endif @@ -919,8 +921,10 @@ public: bool getMMVD () const { return m_MMVD; } void setMmvdDisNum ( int b ) { m_MmvdDisNum = b; } int getMmvdDisNum () const { return m_MmvdDisNum; } + #if !JVET_O1136_TS_BDPCM_SIGNALLING void setRDPCM ( bool b ) { m_RdpcmMode = b; } bool getRDPCM () const { return m_RdpcmMode; } + #endif #if JVET_O0119_BASE_PALETTE_444 void setPLTMode ( unsigned n) { m_PLTMode = n; } unsigned getPLTMode () const { return m_PLTMode; }