Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
aom-rav1e
Commits
d070aa5d
Commit
d070aa5d
authored
Mar 21, 2014
by
Yaowu Xu
Committed by
Gerrit Code Review
Mar 21, 2014
Browse files
Merge "changed to use correct pred_mv"
parents
2d70e165
0e53d520
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/encoder/vp9_pickmode.c
View file @
d070aa5d
...
...
@@ -76,8 +76,11 @@ static void full_pixel_motion_search(VP9_COMP *cpi, MACROBLOCK *x,
return
;
}
}
mvp_full
=
mbmi
->
ref_mvs
[
ref
][
x
->
mv_best_ref_index
[
ref
]].
as_mv
;
assert
(
x
->
mv_best_ref_index
[
ref
]
<=
2
);
if
(
x
->
mv_best_ref_index
[
ref
]
<
2
)
mvp_full
=
mbmi
->
ref_mvs
[
ref
][
x
->
mv_best_ref_index
[
ref
]].
as_mv
;
else
mvp_full
=
x
->
pred_mv
[
ref
].
as_mv
;
mvp_full
.
col
>>=
3
;
mvp_full
.
row
>>=
3
;
...
...
Write
Preview
Supports
Markdown
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