Skip to content
Snippets Groups Projects
Commit f53c516d authored by Karsten Suehring's avatar Karsten Suehring
Browse files

White space cleanup

parent 0ef8de55
No related branches found
No related tags found
1 merge request!2517Move parameter sets out of Slice.h/cpp
...@@ -93,7 +93,7 @@ bool operator == (const ProfileTierLevel& op1, const ProfileTierLevel& op2) ...@@ -93,7 +93,7 @@ bool operator == (const ProfileTierLevel& op1, const ProfileTierLevel& op2)
return true; return true;
} }
bool operator != (const ProfileTierLevel& op1, const ProfileTierLevel& op2) bool operator != (const ProfileTierLevel& op1, const ProfileTierLevel& op2)
{ {
return !(op1 == op2); return !(op1 == op2);
} }
...@@ -174,14 +174,12 @@ const ProfileFeatures *ProfileFeatures::getProfileFeatures(const Profile::Name p ...@@ -174,14 +174,12 @@ const ProfileFeatures *ProfileFeatures::getProfileFeatures(const Profile::Name p
return &validProfiles[i]; return &validProfiles[i];
} }
void void ProfileLevelTierFeatures::extractPTLInformation(const SPS &sps)
ProfileLevelTierFeatures::extractPTLInformation(const SPS &sps)
{ {
extractPTLInformation(*sps.getProfileTierLevel()); extractPTLInformation(*sps.getProfileTierLevel());
} }
void void ProfileLevelTierFeatures::extractPTLInformation(const ProfileTierLevel &ptl)
ProfileLevelTierFeatures::extractPTLInformation(const ProfileTierLevel &ptl)
{ {
const ProfileTierLevel &spsPtl = ptl; const ProfileTierLevel &spsPtl = ptl;
......
...@@ -56,11 +56,11 @@ class ProfileTierLevel ...@@ -56,11 +56,11 @@ class ProfileTierLevel
public: public:
ProfileTierLevel(); ProfileTierLevel();
Level::Tier getTierFlag() const { return m_tierFlag; } Level::Tier getTierFlag() const { return m_tierFlag; }
void setTierFlag(Level::Tier x) { m_tierFlag = x; } void setTierFlag(Level::Tier x) { m_tierFlag = x; }
Profile::Name getProfileIdc() const { return m_profileIdc; } Profile::Name getProfileIdc() const { return m_profileIdc; }
void setProfileIdc(Profile::Name x) { m_profileIdc = x; } void setProfileIdc(Profile::Name x) { m_profileIdc = x; }
uint32_t getSubProfileIdc(int i) const { return m_subProfileIdc[i]; } uint32_t getSubProfileIdc(int i) const { return m_subProfileIdc[i]; }
void setSubProfileIdc(int i, uint32_t x) { m_subProfileIdc[i] = x; } void setSubProfileIdc(int i, uint32_t x) { m_subProfileIdc[i] = x; }
...@@ -68,8 +68,8 @@ public: ...@@ -68,8 +68,8 @@ public:
uint8_t getNumSubProfile() const { return (uint8_t) m_subProfileIdc.size(); } uint8_t getNumSubProfile() const { return (uint8_t) m_subProfileIdc.size(); }
void setNumSubProfile(uint8_t x) { m_subProfileIdc.resize(x); } void setNumSubProfile(uint8_t x) { m_subProfileIdc.resize(x); }
Level::Name getLevelIdc() const { return m_levelIdc; } Level::Name getLevelIdc() const { return m_levelIdc; }
void setLevelIdc(Level::Name x) { m_levelIdc = x; } void setLevelIdc(Level::Name x) { m_levelIdc = x; }
bool getFrameOnlyConstraintFlag() const { return m_frameOnlyConstraintFlag; } bool getFrameOnlyConstraintFlag() const { return m_frameOnlyConstraintFlag; }
void setFrameOnlyConstraintFlag(bool x) { m_frameOnlyConstraintFlag = x; } void setFrameOnlyConstraintFlag(bool x) { m_frameOnlyConstraintFlag = x; }
...@@ -80,11 +80,11 @@ public: ...@@ -80,11 +80,11 @@ public:
ConstraintInfo* getConstraintInfo() { return &m_constraintInfo; } ConstraintInfo* getConstraintInfo() { return &m_constraintInfo; }
const ConstraintInfo* getConstraintInfo() const { return &m_constraintInfo; } const ConstraintInfo* getConstraintInfo() const { return &m_constraintInfo; }
bool getSubLayerLevelPresentFlag(int i) const { return m_subLayerLevelPresentFlag[i]; } bool getSubLayerLevelPresentFlag(int i) const { return m_subLayerLevelPresentFlag[i]; }
void setSubLayerLevelPresentFlag(int i, bool x) { m_subLayerLevelPresentFlag[i] = x; } void setSubLayerLevelPresentFlag(int i, bool x) { m_subLayerLevelPresentFlag[i] = x; }
Level::Name getSubLayerLevelIdc(int i) const { return m_subLayerLevelIdc[i]; } Level::Name getSubLayerLevelIdc(int i) const { return m_subLayerLevelIdc[i]; }
void setSubLayerLevelIdc(int i, Level::Name x) { m_subLayerLevelIdc[i] = x; } void setSubLayerLevelIdc(int i, Level::Name x) { m_subLayerLevelIdc[i] = x; }
friend bool operator == (const ProfileTierLevel& op1, const ProfileTierLevel& op2); friend bool operator == (const ProfileTierLevel& op1, const ProfileTierLevel& op2);
friend bool operator != (const ProfileTierLevel& op1, const ProfileTierLevel& op2); friend bool operator != (const ProfileTierLevel& op1, const ProfileTierLevel& op2);
......
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