Skip to content
Snippets Groups Projects
Commit 93369272 authored by Frank Bossen's avatar Frank Bossen
Browse files

Merge branch 'cleanup_dead_code' into 'master'

Cleanup dead member and related method

See merge request jvet/VVCSoftware_VTM!341
parents 48a2a95b f9912117
No related branches found
No related tags found
No related merge requests found
...@@ -67,7 +67,6 @@ CoeffCodingContext::CoeffCodingContext(const TransformUnit& tu, ComponentID comp ...@@ -67,7 +67,6 @@ CoeffCodingContext::CoeffCodingContext(const TransformUnit& tu, ComponentID comp
#endif #endif
, m_log2BlockWidth (g_aucLog2[m_width]) , m_log2BlockWidth (g_aucLog2[m_width])
, m_log2BlockHeight (g_aucLog2[m_height]) , m_log2BlockHeight (g_aucLog2[m_height])
, m_log2BlockSize ((m_log2BlockWidth + m_log2BlockHeight)>>1)
, m_maxNumCoeff (m_width * m_height) , m_maxNumCoeff (m_width * m_height)
#if HEVC_USE_SIGN_HIDING #if HEVC_USE_SIGN_HIDING
, m_signHiding (signHide) , m_signHiding (signHide)
......
...@@ -75,9 +75,6 @@ public: ...@@ -75,9 +75,6 @@ public:
unsigned log2CGHeight () const { return m_log2CGHeight; } unsigned log2CGHeight () const { return m_log2CGHeight; }
#endif #endif
unsigned log2CGSize () const { return m_log2CGSize; } unsigned log2CGSize () const { return m_log2CGSize; }
unsigned log2BlockWidth () const { return m_log2BlockWidth; }
unsigned log2BlockHeight () const { return m_log2BlockHeight; }
unsigned log2BlockSize () const { return m_log2BlockSize; }
bool extPrec () const { return m_extendedPrecision; } bool extPrec () const { return m_extendedPrecision; }
int maxLog2TrDRange () const { return m_maxLog2TrDynamicRange; } int maxLog2TrDRange () const { return m_maxLog2TrDynamicRange; }
unsigned maxNumCoeff () const { return m_maxNumCoeff; } unsigned maxNumCoeff () const { return m_maxNumCoeff; }
...@@ -209,7 +206,6 @@ private: ...@@ -209,7 +206,6 @@ private:
const unsigned m_heightInGroups; const unsigned m_heightInGroups;
const unsigned m_log2BlockWidth; const unsigned m_log2BlockWidth;
const unsigned m_log2BlockHeight; const unsigned m_log2BlockHeight;
const unsigned m_log2BlockSize;
const unsigned m_maxNumCoeff; const unsigned m_maxNumCoeff;
#if HEVC_USE_SIGN_HIDING #if HEVC_USE_SIGN_HIDING
const bool m_signHiding; const bool m_signHiding;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment