summaryrefslogtreecommitdiff
path: root/vp8
diff options
context:
space:
mode:
authorJohann <johannkoenig@google.com>2016-05-06 18:30:04 -0700
committerJohann Koenig <johannkoenig@chromium.org>2016-05-09 18:39:24 +0000
commitf68f9eefdf8ead98981327897d94e6ebb26a32a5 (patch)
tree6a8854555ca0adc735a1770131fc3cb6424a08a4 /vp8
parent9e5811f485af7b4b82f6e91329c6997363df7a40 (diff)
downloadlibvpx-f68f9eefdf8ead98981327897d94e6ebb26a32a5.tar
libvpx-f68f9eefdf8ead98981327897d94e6ebb26a32a5.tar.gz
libvpx-f68f9eefdf8ead98981327897d94e6ebb26a32a5.tar.bz2
libvpx-f68f9eefdf8ead98981327897d94e6ebb26a32a5.zip
Alignment is required for sad_array8
For at least some of the implementations of sdx8f, such as vpx_sad4x4x8_sse4_1, aligned moves are used to move the results into the array. Change-Id: I83df5a8e657b44e906d0d8b0bc154f1e5660f7f9
Diffstat (limited to 'vp8')
-rw-r--r--vp8/encoder/mcomp.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/vp8/encoder/mcomp.c b/vp8/encoder/mcomp.c
index 768c764ce..e20c1ea7b 100644
--- a/vp8/encoder/mcomp.c
+++ b/vp8/encoder/mcomp.c
@@ -1591,7 +1591,6 @@ int vp8_full_search_sadx8(MACROBLOCK *x, BLOCK *b, BLOCKD *d, int_mv *ref_mv,
int col_min = ref_col - distance;
int col_max = ref_col + distance;
- // TODO(johannkoenig): check if this alignment is necessary.
DECLARE_ALIGNED(16, unsigned int, sad_array8[8]);
unsigned int sad_array[3];