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
5ebe4774
Commit
5ebe4774
authored
Jun 25, 2013
by
Ronald S. Bultje
Committed by
Gerrit Code Review
Jun 25, 2013
Browse files
Merge "Don't re-allocate comp_pred buffers for each call to comp motion search."
parents
5ae09677
4dc70fa7
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/encoder/vp9_mcomp.c
View file @
5ebe4774
...
...
@@ -447,7 +447,7 @@ int vp9_find_best_sub_pixel_comp(MACROBLOCK *x,
int
offset
;
int
usehp
=
xd
->
allow_high_precision_mv
;
uint8_t
*
comp_pred
=
vpx_memalign
(
16
,
w
*
h
*
sizeof
(
uint8_t
)
);
DECLARE_ALIGNED_ARRAY
(
16
,
uint8_t
,
comp_pred
,
64
*
64
);
uint8_t
*
y
=
xd
->
plane
[
0
].
pre
[
0
].
buf
+
(
bestmv
->
as_mv
.
row
)
*
xd
->
plane
[
0
].
pre
[
0
].
stride
+
bestmv
->
as_mv
.
col
;
...
...
@@ -597,8 +597,6 @@ int vp9_find_best_sub_pixel_comp(MACROBLOCK *x,
bestmv
->
as_mv
.
row
=
br
;
bestmv
->
as_mv
.
col
=
bc
;
vpx_free
(
comp_pred
);
if
((
abs
(
bestmv
->
as_mv
.
col
-
ref_mv
->
as_mv
.
col
)
>
(
MAX_FULL_PEL_VAL
<<
3
))
||
(
abs
(
bestmv
->
as_mv
.
row
-
ref_mv
->
as_mv
.
row
)
>
(
MAX_FULL_PEL_VAL
<<
3
)))
return
INT_MAX
;
...
...
@@ -2356,7 +2354,7 @@ int vp9_refining_search_8p_c(MACROBLOCK *x,
int
*
mvsadcost
[
2
]
=
{
x
->
nmvsadcost
[
0
],
x
->
nmvsadcost
[
1
]};
/* Compound pred buffer */
uint8_t
*
comp_pred
=
vpx_memalign
(
16
,
w
*
h
*
sizeof
(
uint8_t
)
);
DECLARE_ALIGNED_ARRAY
(
16
,
uint8_t
,
comp_pred
,
64
*
64
);
fcenter_mv
.
as_mv
.
row
=
center_mv
->
as_mv
.
row
>>
3
;
fcenter_mv
.
as_mv
.
col
=
center_mv
->
as_mv
.
col
>>
3
;
...
...
@@ -2420,10 +2418,8 @@ int vp9_refining_search_8p_c(MACROBLOCK *x,
(
unsigned
int
*
)(
&
thissad
))
+
mv_err_cost
(
&
this_mv
,
center_mv
,
mvjcost
,
mvcost
,
x
->
errorperbit
,
xd
->
allow_high_precision_mv
);
vpx_free
(
comp_pred
);
return
besterr
;
}
else
{
vpx_free
(
comp_pred
);
return
INT_MAX
;
}
}
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