Skip to content
Snippets Groups Projects
Commit 80109a15 authored by Vadim Seregin's avatar Vadim Seregin
Browse files

remove extra qualifications

parent 964cb10f
No related branches found
No related tags found
1 merge request!986JVET-O0245: add TemporalID constraint for NALs in AU, add APS content constraints for AU, other fixes
...@@ -232,7 +232,7 @@ struct AlfParam ...@@ -232,7 +232,7 @@ struct AlfParam
} }
#if JVET_O0245_VPS_DPS_APS #if JVET_O0245_VPS_DPS_APS
bool AlfParam::operator==( const AlfParam& other ) bool operator==( const AlfParam& other )
{ {
if( memcmp( enabledFlag, other.enabledFlag, sizeof( enabledFlag ) ) ) if( memcmp( enabledFlag, other.enabledFlag, sizeof( enabledFlag ) ) )
{ {
...@@ -286,7 +286,7 @@ struct AlfParam ...@@ -286,7 +286,7 @@ struct AlfParam
return true; return true;
} }
bool AlfParam::operator!=( const AlfParam& other ) bool operator!=( const AlfParam& other )
{ {
return !( *this == other ); return !( *this == other );
} }
......
...@@ -173,7 +173,7 @@ public: ...@@ -173,7 +173,7 @@ public:
bool isNotDefaultScalingList(); bool isNotDefaultScalingList();
#if JVET_O0245_VPS_DPS_APS #if JVET_O0245_VPS_DPS_APS
bool ScalingList::operator==( const ScalingList& other ) bool operator==( const ScalingList& other )
{ {
if( memcmp( m_scalingListPredModeFlagIsDPCM, other.m_scalingListPredModeFlagIsDPCM, sizeof( m_scalingListPredModeFlagIsDPCM ) ) ) if( memcmp( m_scalingListPredModeFlagIsDPCM, other.m_scalingListPredModeFlagIsDPCM, sizeof( m_scalingListPredModeFlagIsDPCM ) ) )
{ {
...@@ -195,7 +195,7 @@ public: ...@@ -195,7 +195,7 @@ public:
return true; return true;
} }
bool ScalingList::operator!=( const ScalingList& other ) bool operator!=( const ScalingList& other )
{ {
return !( *this == other ); return !( *this == other );
} }
...@@ -447,7 +447,7 @@ public: ...@@ -447,7 +447,7 @@ public:
unsigned getSliceReshapeChromaAdj() const { return enableChromaAdj; } unsigned getSliceReshapeChromaAdj() const { return enableChromaAdj; }
#if JVET_O0245_VPS_DPS_APS #if JVET_O0245_VPS_DPS_APS
bool SliceReshapeInfo::operator==( const SliceReshapeInfo& other ) bool operator==( const SliceReshapeInfo& other )
{ {
if( sliceReshaperEnableFlag != other.sliceReshaperEnableFlag ) if( sliceReshaperEnableFlag != other.sliceReshaperEnableFlag )
{ {
...@@ -481,7 +481,7 @@ public: ...@@ -481,7 +481,7 @@ public:
return true; return true;
} }
bool SliceReshapeInfo::operator!=( const SliceReshapeInfo& other ) bool operator!=( const SliceReshapeInfo& other )
{ {
return !( *this == other ); return !( *this == other );
} }
......
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