summaryrefslogtreecommitdiff
path: root/vp9/common/vp9_reconinter.c
diff options
context:
space:
mode:
authorJohn Koleszar <jkoleszar@google.com>2013-02-20 15:59:20 -0800
committerJohn Koleszar <jkoleszar@google.com>2013-02-27 08:22:39 -0800
commit6fd7dd1a703b922a5f200c4e1962be5b81c73af0 (patch)
tree212346f4d45d8a1883ce2acd85289e84b7d0f449 /vp9/common/vp9_reconinter.c
parent472eeaf08203fddae5f6843ff2e16f43f0144ca8 (diff)
downloadlibvpx-6fd7dd1a703b922a5f200c4e1962be5b81c73af0.tar
libvpx-6fd7dd1a703b922a5f200c4e1962be5b81c73af0.tar.gz
libvpx-6fd7dd1a703b922a5f200c4e1962be5b81c73af0.tar.bz2
libvpx-6fd7dd1a703b922a5f200c4e1962be5b81c73af0.zip
Use 256-byte aligned filter tables
This avoids duplicating all the filters twice. Includes fixups to the convolve routines and associated tests to make this work. Change-Id: I922f86021594e55072ddb63b42b2313605db6e00
Diffstat (limited to 'vp9/common/vp9_reconinter.c')
-rw-r--r--vp9/common/vp9_reconinter.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/vp9/common/vp9_reconinter.c b/vp9/common/vp9_reconinter.c
index 7be0101ac..30e8951af 100644
--- a/vp9/common/vp9_reconinter.c
+++ b/vp9/common/vp9_reconinter.c
@@ -128,6 +128,7 @@ void vp9_setup_interp_filters(MACROBLOCKD *xd,
break;
#endif
}
+ assert(((intptr_t)xd->subpix.filter_x & 0xff) == 0);
}
void vp9_copy_mem16x16_c(const uint8_t *src,