Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Yushin Cho
aom-rav1e
Commits
0c5a140a
Commit
0c5a140a
authored
Apr 03, 2015
by
James Zern
Browse files
rdopt: remove dead stores
Change-Id: Ia8a20c6751cc6d63c60bb00b99c78faca1e61051
parent
04c53d23
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp8/encoder/rdopt.c
View file @
0c5a140a
...
...
@@ -1661,7 +1661,6 @@ void vp8_mv_pred
mv
.
as_mv
.
row
=
mvx
[
vcnt
/
2
];
mv
.
as_mv
.
col
=
mvy
[
vcnt
/
2
];
find
=
1
;
/* sr is set to 0 to allow calling function to decide the search
* range.
*/
...
...
@@ -2293,7 +2292,6 @@ void vp8_rd_pick_inter_mode(VP8_COMP *cpi, MACROBLOCK *x, int recon_yoffset,
mode_mv
[
NEWMV
].
as_int
=
d
->
bmi
.
mv
.
as_int
;
/* Further step/diamond searches as necessary */
n
=
0
;
further_steps
=
(
cpi
->
sf
.
max_step_search_steps
-
1
)
-
step_param
;
n
=
num00
;
...
...
@@ -2560,8 +2558,6 @@ void vp8_rd_pick_inter_mode(VP8_COMP *cpi, MACROBLOCK *x, int recon_yoffset,
intra_rd_penalty
,
cpi
,
x
);
if
(
this_rd
<
best_mode
.
rd
||
x
->
skip
)
{
/* Note index of best mode so far */
best_mode_index
=
mode_index
;
*
returnrate
=
rd
.
rate2
;
*
returndistortion
=
rd
.
distortion2
;
update_best_mode
(
&
best_mode
,
this_rd
,
&
rd
,
other_cost
,
x
);
...
...
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