Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xiph.Org
aom-rav1e
Commits
5572ab1d
Commit
5572ab1d
authored
Apr 04, 2016
by
Marco
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vp9-noise estimate: Adhust threshold for Low level detection.
Change-Id: I1c78255c81cb4ac218964c80f8ecaf29f95b875b
parent
71cf9fac
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
vp9/encoder/vp9_noise_estimate.c
vp9/encoder/vp9_noise_estimate.c
+1
-1
No files found.
vp9/encoder/vp9_noise_estimate.c
View file @
5572ab1d
...
...
@@ -91,7 +91,7 @@ NOISE_LEVEL vp9_noise_estimate_extract_level(NOISE_ESTIMATE *const ne) {
}
else
{
if
(
ne
->
value
>
ne
->
thresh
)
noise_level
=
kMedium
;
else
if
(
ne
->
value
>
((
5
*
ne
->
thresh
)
>>
3
))
else
if
(
ne
->
value
>
((
9
*
ne
->
thresh
)
>>
4
))
noise_level
=
kLow
;
else
noise_level
=
kLowLow
;
...
...
Write
Preview
Markdown
is supported
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