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
2b3b63f4
Commit
2b3b63f4
authored
10 years ago
by
Adrian Grange
Committed by
Gerrit Code Review
10 years ago
Browse files
Options
Downloads
Plain Diff
Merge "Fix ARF construction when scaling"
parents
99df7ded
1def634f
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_temporal_filter.c
+9
-7
9 additions, 7 deletions
vp9/encoder/vp9_temporal_filter.c
with
9 additions
and
7 deletions
vp9/encoder/vp9_temporal_filter.c
+
9
−
7
View file @
2b3b63f4
...
...
@@ -200,8 +200,8 @@ static void temporal_filter_iterate_c(VP9_COMP *cpi,
int
frame
;
int
mb_col
,
mb_row
;
unsigned
int
filter_weight
;
int
mb_cols
=
cpi
->
common
.
mb_cols
;
int
mb_rows
=
cpi
->
common
.
mb_rows
;
int
mb_cols
=
(
frames
[
alt_ref_index
]
->
y_crop_width
+
15
)
>>
4
;
int
mb_rows
=
(
frames
[
alt_ref_index
]
->
y_crop_height
+
15
)
>>
4
;
int
mb_y_offset
=
0
;
int
mb_uv_offset
=
0
;
DECLARE_ALIGNED_ARRAY
(
16
,
unsigned
int
,
accumulator
,
16
*
16
*
3
);
...
...
@@ -233,7 +233,7 @@ static void temporal_filter_iterate_c(VP9_COMP *cpi,
// To keep the mv in play for both Y and UV planes the max that it
// can be on a border is therefore 16 - (2*VP9_INTERP_EXTEND+1).
cpi
->
mb
.
mv_row_min
=
-
((
mb_row
*
16
)
+
(
17
-
2
*
VP9_INTERP_EXTEND
));
cpi
->
mb
.
mv_row_max
=
((
cpi
->
common
.
mb_rows
-
1
-
mb_row
)
*
16
)
cpi
->
mb
.
mv_row_max
=
((
mb_rows
-
1
-
mb_row
)
*
16
)
+
(
17
-
2
*
VP9_INTERP_EXTEND
);
for
(
mb_col
=
0
;
mb_col
<
mb_cols
;
mb_col
++
)
{
...
...
@@ -244,7 +244,7 @@ static void temporal_filter_iterate_c(VP9_COMP *cpi,
vpx_memset
(
count
,
0
,
16
*
16
*
3
*
sizeof
(
count
[
0
]));
cpi
->
mb
.
mv_col_min
=
-
((
mb_col
*
16
)
+
(
17
-
2
*
VP9_INTERP_EXTEND
));
cpi
->
mb
.
mv_col_max
=
((
cpi
->
common
.
mb_cols
-
1
-
mb_col
)
*
16
)
cpi
->
mb
.
mv_col_max
=
((
mb_cols
-
1
-
mb_col
)
*
16
)
+
(
17
-
2
*
VP9_INTERP_EXTEND
);
for
(
frame
=
0
;
frame
<
frame_count
;
frame
++
)
{
...
...
@@ -480,10 +480,12 @@ void vp9_temporal_filter(VP9_COMP *cpi, int distance) {
}
}
}
else
{
// ARF is produced at the native frame size and resized when coded.
vp9_setup_scale_factors_for_frame
(
&
sf
,
get_frame_new_buffer
(
cm
)
->
y_crop_width
,
get_frame_new_buffer
(
cm
)
->
y_crop_height
,
cm
->
width
,
cm
->
height
);
frames
[
0
]
->
y_crop_width
,
frames
[
0
]
->
y_crop_height
,
frames
[
0
]
->
y_crop_width
,
frames
[
0
]
->
y_crop_height
);
}
temporal_filter_iterate_c
(
cpi
,
frames
,
frames_to_blur
,
...
...
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