Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jvet
HM
Commits
2b93a0b8
Commit
2b93a0b8
authored
Feb 16, 2017
by
Karl Sharman
Browse files
Corrected return type causing a compilation warning
parent
794eef9c
Changes
1
Hide whitespace changes
Inline
Side-by-side
source/Lib/TLibDecoder/TDecConformance.h
View file @
2b93a0b8
...
...
@@ -147,7 +147,7 @@ class ProfileLevelTierFeatures
const
ProfileFeatures
*
getProfileFeatures
()
const
{
return
m_pProfile
;
}
const
LevelTierFeatures
*
getLevelTierFeatures
()
const
{
return
m_pLevelTier
;
}
const
Level
::
Tier
getTier
()
const
{
return
m_tier
;
}
Level
::
Tier
getTier
()
const
{
return
m_tier
;
}
UInt64
getCpbSizeInBits
()
const
{
return
(
m_pLevelTier
!=
0
&&
m_pProfile
!=
0
)
?
UInt64
(
m_pProfile
->
cpbVclFactor
)
*
m_pLevelTier
->
maxCpb
[
m_tier
?
1
:
0
]
:
UInt64
(
0
);
}
Double
getMinCr
()
const
{
return
(
m_pLevelTier
!=
0
&&
m_pProfile
!=
0
)
?
(
m_pProfile
->
minCrScaleFactorx10
*
m_pLevelTier
->
minCrBase
[
m_tier
?
1
:
0
])
/
10.0
:
0.0
;
}
// currently not used for checking
UInt
getMaxRawCtuBits
()
const
{
return
m_maxRawCtuBits
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment