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
Xiph.Org
aom-rav1e
Commits
17b1e92d
Commit
17b1e92d
authored
Feb 28, 2014
by
Yunqing Wang
Committed by
Gerrit Code Review
Feb 28, 2014
Browse files
Merge "Enable using fast HEX search in non-rd pick mode"
parents
44078390
e6fd0712
Changes
1
Show whitespace changes
Inline
Side-by-side
vp9/encoder/vp9_pickmode.c
View file @
17b1e92d
...
...
@@ -98,8 +98,15 @@ static int full_pixel_motion_search(VP9_COMP *cpi, MACROBLOCK *x,
mvp_full
.
col
>>=
3
;
mvp_full
.
row
>>=
3
;
vp9_full_pixel_diamond
(
cpi
,
x
,
&
mvp_full
,
step_param
,
sadpb
,
further_steps
,
1
,
&
cpi
->
fn_ptr
[
bsize
],
&
ref_mv
.
as_mv
,
&
tmp_mv
->
as_mv
);
if
(
cpi
->
sf
.
search_method
==
FAST_HEX
)
{
vp9_fast_hex_search
(
x
,
&
mvp_full
,
step_param
,
sadpb
,
&
cpi
->
fn_ptr
[
bsize
],
1
,
&
ref_mv
.
as_mv
,
&
tmp_mv
->
as_mv
);
}
else
{
vp9_full_pixel_diamond
(
cpi
,
x
,
&
mvp_full
,
step_param
,
sadpb
,
further_steps
,
1
,
&
cpi
->
fn_ptr
[
bsize
],
&
ref_mv
.
as_mv
,
&
tmp_mv
->
as_mv
);
}
x
->
mv_col_min
=
tmp_col_min
;
x
->
mv_col_max
=
tmp_col_max
;
x
->
mv_row_min
=
tmp_row_min
;
...
...
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