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
b791c600
Commit
b791c600
authored
11 years ago
by
Yaowu Xu
Browse files
Options
Downloads
Patches
Plain Diff
vp9_mbgraph.c: remove unused parameters
Change-Id: I5a01d0dccc9afc87e2adbb5ddc7d44379fe1f125
parent
c0205ebf
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_mbgraph.c
+2
-7
2 additions, 7 deletions
vp9/encoder/vp9_mbgraph.c
with
2 additions
and
7 deletions
vp9/encoder/vp9_mbgraph.c
+
2
−
7
View file @
b791c600
...
...
@@ -132,7 +132,6 @@ static int do_16x16_zerozero_search(VP9_COMP *cpi, int_mv *dst_mv) {
return
err
;
}
static
int
find_best_16x16_intra
(
VP9_COMP
*
cpi
,
int
mb_y_offset
,
MB_PREDICTION_MODE
*
pbest_mode
)
{
MACROBLOCK
*
const
x
=
&
cpi
->
mb
;
MACROBLOCKD
*
const
xd
=
&
x
->
e_mbd
;
...
...
@@ -173,10 +172,7 @@ static void update_mbgraph_mb_stats
int
mb_y_offset
,
YV12_BUFFER_CONFIG
*
golden_ref
,
int_mv
*
prev_golden_ref_mv
,
int
gld_y_offset
,
YV12_BUFFER_CONFIG
*
alt_ref
,
int_mv
*
prev_alt_ref_mv
,
int
arf_y_offset
,
int
mb_row
,
int
mb_col
)
{
...
...
@@ -193,7 +189,7 @@ static void update_mbgraph_mb_stats
xd
->
plane
[
0
].
dst
.
stride
=
get_frame_new_buffer
(
cm
)
->
y_stride
;
// do intra 16x16 prediction
intra_error
=
find_best_16x16_intra
(
cpi
,
mb_y_offset
,
intra_error
=
find_best_16x16_intra
(
cpi
,
&
stats
->
ref
[
INTRA_FRAME
].
m
.
mode
);
if
(
intra_error
<=
0
)
intra_error
=
1
;
...
...
@@ -277,8 +273,7 @@ static void update_mbgraph_frame_stats(VP9_COMP *cpi,
MBGRAPH_MB_STATS
*
mb_stats
=
&
stats
->
mb_stats
[
offset
+
mb_col
];
update_mbgraph_mb_stats
(
cpi
,
mb_stats
,
buf
,
mb_y_in_offset
,
golden_ref
,
&
gld_left_mv
,
gld_y_in_offset
,
alt_ref
,
&
arf_left_mv
,
arf_y_in_offset
,
golden_ref
,
&
gld_left_mv
,
alt_ref
,
mb_row
,
mb_col
);
arf_left_mv
.
as_int
=
mb_stats
->
ref
[
ALTREF_FRAME
].
m
.
mv
.
as_int
;
gld_left_mv
.
as_int
=
mb_stats
->
ref
[
GOLDEN_FRAME
].
m
.
mv
.
as_int
;
...
...
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