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
d2b6a4cc
Commit
d2b6a4cc
authored
Mar 09, 2015
by
Jingning Han
Committed by
Gerrit Code Review
Mar 09, 2015
Browse files
Merge "Move pred_mv assign outside integral projection motion search"
parents
a437f7b9
fda04108
Changes
2
Hide whitespace changes
Inline
Side-by-side
vp9/encoder/vp9_encodeframe.c
View file @
d2b6a4cc
...
...
@@ -588,6 +588,7 @@ static void choose_partitioning(VP9_COMP *cpi,
bsize
=
BLOCK_32X32
;
y_sad
=
vp9_int_pro_motion_estimation
(
cpi
,
x
,
bsize
);
x
->
pred_mv
[
LAST_FRAME
]
=
mbmi
->
mv
[
0
].
as_mv
;
#endif
vp9_build_inter_predictors_sb
(
xd
,
mi_row
,
mi_col
,
BLOCK_64X64
);
...
...
vp9/encoder/vp9_mcomp.c
View file @
d2b6a4cc
...
...
@@ -1855,7 +1855,6 @@ unsigned int vp9_int_pro_motion_estimation(const VP9_COMP *cpi, MACROBLOCK *x,
}
tmp_mv
->
row
*=
8
;
tmp_mv
->
col
*=
8
;
x
->
pred_mv
[
LAST_FRAME
]
=
*
tmp_mv
;
return
best_sad
;
}
...
...
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