From a9f7a03f48b4248ddaabbff5cf4ff82b5eac4315 Mon Sep 17 00:00:00 2001 From: LI JINGYA <jingya.li@sg.panasonic.com> Date: Mon, 4 May 2020 17:01:53 +0200 Subject: [PATCH] Update Slice.h --- source/Lib/CommonLib/Slice.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/Lib/CommonLib/Slice.h b/source/Lib/CommonLib/Slice.h index e06c6304c..13c13860c 100644 --- a/source/Lib/CommonLib/Slice.h +++ b/source/Lib/CommonLib/Slice.h @@ -1267,7 +1267,7 @@ private: bool m_entropyCodingSyncEntryPointPresentFlag; //!< Flag for indicating the presence of WPP entry points int m_qpBDOffset[MAX_NUM_CHANNEL_TYPE]; #if JVET_R0045_TS_MIN_QP_CLEANUP - int m_interalMinusInputBitDepth[MAX_NUM_CHANNEL_TYPE]; // QP_internal - QP_input; } + int m_internalMinusInputBitDepth[MAX_NUM_CHANNEL_TYPE]; // QP_internal - QP_input; } #else int m_minQpMinus4[MAX_NUM_CHANNEL_TYPE]; // QP_internal - QP_input; #endif @@ -1558,8 +1558,8 @@ public: int getQpBDOffset(ChannelType type) const { return m_qpBDOffset[type]; } void setQpBDOffset(ChannelType type, int i) { m_qpBDOffset[type] = i; } #if JVET_R0045_TS_MIN_QP_CLEANUP - int getInteralMinusInputBitDepth(ChannelType type) const { return m_interalMinusInputBitDepth[type]; } - void setInteralMinusInputBitDepth(ChannelType type, int i) { m_interalMinusInputBitDepth[type] = i; } + int getInternalMinusInputBitDepth(ChannelType type) const { return m_internalMinusInputBitDepth[type]; } + void setInternalMinusInputBitDepth(ChannelType type, int i) { m_internalMinusInputBitDepth[type] = i; } #else int getMinQpPrimeTsMinus4(ChannelType type) const { return m_minQpMinus4[type]; } void setMinQpPrimeTsMinus4(ChannelType type, int i) { m_minQpMinus4[type] = i; } -- GitLab