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
2ed0cf06
Commit
2ed0cf06
authored
Apr 07, 2015
by
James Zern
Committed by
Gerrit Code Review
Apr 07, 2015
Browse files
Merge "vp9_full_search_sadx[38]: align sad arrays"
parents
c88ce84b
e1ff83f4
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/encoder/vp9_mcomp.c
View file @
2ed0cf06
...
...
@@ -2017,7 +2017,7 @@ int vp9_full_search_sadx3(const MACROBLOCK *x, const MV *ref_mv,
if
(
fn_ptr
->
sdx3f
!=
NULL
)
{
while
((
c
+
2
)
<
col_max
)
{
int
i
;
unsigned
int
sads
[
3
];
DECLARE_ALIGNED
(
16
,
uint32_t
,
sads
[
3
]
)
;
fn_ptr
->
sdx3f
(
what
->
buf
,
what
->
stride
,
check_here
,
in_what
->
stride
,
sads
);
...
...
@@ -2082,7 +2082,7 @@ int vp9_full_search_sadx8(const MACROBLOCK *x, const MV *ref_mv,
if
(
fn_ptr
->
sdx8f
!=
NULL
)
{
while
((
c
+
7
)
<
col_max
)
{
int
i
;
unsigned
int
sads
[
8
];
DECLARE_ALIGNED
(
16
,
uint32_t
,
sads
[
8
]
)
;
fn_ptr
->
sdx8f
(
what
->
buf
,
what
->
stride
,
check_here
,
in_what
->
stride
,
sads
);
...
...
@@ -2106,7 +2106,7 @@ int vp9_full_search_sadx8(const MACROBLOCK *x, const MV *ref_mv,
if
(
fn_ptr
->
sdx3f
!=
NULL
)
{
while
((
c
+
2
)
<
col_max
)
{
int
i
;
unsigned
int
sads
[
3
];
DECLARE_ALIGNED
(
16
,
uint32_t
,
sads
[
3
]
)
;
fn_ptr
->
sdx3f
(
what
->
buf
,
what
->
stride
,
check_here
,
in_what
->
stride
,
sads
);
...
...
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