Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
V
VVCSoftware_VTM-tmuc
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Thibaud Biatek
VVCSoftware_VTM-tmuc
Commits
d29af2d5
Commit
d29af2d5
authored
3 years ago
by
Frank Bossen
Browse files
Options
Downloads
Patches
Plain Diff
Fix compile issue with clang 11 compiler
parent
a6887373
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
source/Lib/CommonLib/SEIFilmGrainAnalyzer.h
+0
-1
0 additions, 1 deletion
source/Lib/CommonLib/SEIFilmGrainAnalyzer.h
source/Lib/CommonLib/SEIFilmGrainSynthesizer.cpp
+2
-2
2 additions, 2 deletions
source/Lib/CommonLib/SEIFilmGrainSynthesizer.cpp
with
2 additions
and
3 deletions
source/Lib/CommonLib/SEIFilmGrainAnalyzer.h
+
0
−
1
View file @
d29af2d5
...
...
@@ -101,7 +101,6 @@ private:
static
const
int
m_gauss5x5
[
5
][
5
];
// Gauss 5x5 kernel, integer approximation
unsigned
int
m_convWidthS
=
3
,
m_convHeightS
=
3
;
// Pixel's row and col positions for Sobel filtering
double
m_sigma
=
1.0
;
// Gaussian filter sigma
double
m_lowThresholdRatio
=
0.1
;
// low threshold rato
int
m_highThresholdRatio
=
3
;
// high threshold rato
...
...
This diff is collapsed.
Click to expand it.
source/Lib/CommonLib/SEIFilmGrainSynthesizer.cpp
+
2
−
2
View file @
d29af2d5
...
...
@@ -413,7 +413,7 @@ void SEIFilmGrainSynthesizer::grainSynthesizeAndBlend(PelStorage* pGrainBuf, boo
uint8_t
SEIFilmGrainSynthesizer
::
grainValidateParams
()
{
uint8_t
numComp
=
MAX_NUM_COMPONENT
;
/* number of color components */
uint8_t
compCtr
,
intensityCtr
,
multiGrainCheck
[
MAX_NUM_COMPONENT
][
MAX_NUM_INTENSITIES
]
=
{
0
};
uint8_t
compCtr
,
intensityCtr
,
multiGrainCheck
[
MAX_NUM_COMPONENT
][
MAX_NUM_INTENSITIES
]
=
{
{
0
}
};
uint16_t
multiGrainCtr
;
uint8_t
limitCompModelVal1
[
10
]
=
{
0
},
limitCompModelVal2
[
10
]
=
{
0
};
uint8_t
num_comp_model_pairs
=
0
,
limitCompModelCtr
,
compPairMatch
;
...
...
@@ -1265,4 +1265,4 @@ uint32_t SEIFilmGrainSynthesizer::fgsSimulationBlending_32x32(fgsProcessArgs *in
return
FGS_SUCCESS
;
}
#endif
\ No newline at end of file
#endif
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment