Merge "vp9_full_search_sadx[38]: align sad arrays"
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user