Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
aom-rav1e
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Xiph.Org
aom-rav1e
Commits
5f5d185d
Commit
5f5d185d
authored
9 years ago
by
Marco Paniconi
Committed by
Gerrit Code Review
9 years ago
Browse files
Options
Downloads
Plain Diff
Merge "VP9 noise estimation: add frame level motion metrics and adjust thresholds."
parents
75017283
6fb3d6db
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
vp9/encoder/vp9_noise_estimate.c
+16
-3
16 additions, 3 deletions
vp9/encoder/vp9_noise_estimate.c
with
16 additions
and
3 deletions
vp9/encoder/vp9_noise_estimate.c
+
16
−
3
View file @
5f5d185d
...
...
@@ -88,7 +88,7 @@ void vp9_update_noise_estimate(VP9_COMP *const cpi) {
// Estimate of noise level every frame_period frames.
int
frame_period
=
10
;
int
thresh_consec_zeromv
=
8
;
unsigned
int
thresh_sum_diff
=
1
28
;
unsigned
int
thresh_sum_diff
=
1
00
;
unsigned
int
thresh_sum_spatial
=
(
200
*
200
)
<<
8
;
unsigned
int
thresh_spatial_var
=
(
32
*
32
)
<<
8
;
int
num_frames_estimate
=
20
;
...
...
@@ -135,6 +135,17 @@ void vp9_update_noise_estimate(VP9_COMP *const cpi) {
const
int
uv_width_shift
=
y_width_shift
>>
1
;
const
int
uv_height_shift
=
y_height_shift
>>
1
;
int
mi_row
,
mi_col
;
int
num_low_motion
=
0
;
int
frame_low_motion
=
1
;
for
(
mi_row
=
0
;
mi_row
<
cm
->
mi_rows
;
mi_row
++
)
{
for
(
mi_col
=
0
;
mi_col
<
cm
->
mi_cols
;
mi_col
++
)
{
int
bl_index
=
mi_row
*
cm
->
mi_cols
+
mi_col
;
if
(
cr
->
consec_zero_mv
[
bl_index
]
>
thresh_consec_zeromv
)
num_low_motion
++
;
}
}
if
(
num_low_motion
<
((
3
*
cm
->
mi_rows
*
cm
->
mi_cols
)
>>
3
))
frame_low_motion
=
0
;
for
(
mi_row
=
0
;
mi_row
<
cm
->
mi_rows
;
mi_row
++
)
{
for
(
mi_col
=
0
;
mi_col
<
cm
->
mi_cols
;
mi_col
++
)
{
// 16x16 blocks, 1/4 sample of frame.
...
...
@@ -154,7 +165,8 @@ void vp9_update_noise_estimate(VP9_COMP *const cpi) {
const
uint8_t
vsource
=
src_v
[
uv_height_shift
*
src_uvstride
+
uv_width_shift
];
int
is_skin
=
vp9_skin_pixel
(
ysource
,
usource
,
vsource
);
if
(
cr
->
consec_zero_mv
[
bl_index
]
>
thresh_consec_zeromv
&&
if
(
frame_low_motion
&&
cr
->
consec_zero_mv
[
bl_index
]
>
thresh_consec_zeromv
&&
cr
->
consec_zero_mv
[
bl_index1
]
>
thresh_consec_zeromv
&&
cr
->
consec_zero_mv
[
bl_index2
]
>
thresh_consec_zeromv
&&
cr
->
consec_zero_mv
[
bl_index3
]
>
thresh_consec_zeromv
&&
...
...
@@ -202,10 +214,11 @@ void vp9_update_noise_estimate(VP9_COMP *const cpi) {
// Normalize.
avg_est
=
avg_est
/
num_samples
;
// Update noise estimate.
ne
->
value
=
(
int
)((
3
*
ne
->
value
+
avg_est
)
>>
2
);
ne
->
value
=
(
int
)((
15
*
ne
->
value
+
avg_est
)
>>
4
);
ne
->
count
++
;
if
(
ne
->
count
==
num_frames_estimate
)
{
// Reset counter and check noise level condition.
num_frames_estimate
=
40
;
ne
->
count
=
0
;
if
(
ne
->
value
>
(
ne
->
thresh
<<
1
))
ne
->
level
=
kHigh
;
...
...
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