From b5242368f3800e3b658e6ee4567bd41110c80071 Mon Sep 17 00:00:00 2001 From: Yaowu Xu Date: Wed, 25 Sep 2013 13:55:39 -0700 Subject: [PATCH] Align struct to 32 bytes Change-Id: I32fd813af7dd2a7d451f5fda278ea888b181fa8e --- test/intrapred_test.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/intrapred_test.cc b/test/intrapred_test.cc index f5f6d5b3f..aacc484e1 100644 --- a/test/intrapred_test.cc +++ b/test/intrapred_test.cc @@ -209,8 +209,8 @@ class IntraPredBase { } } - MACROBLOCKD mb_; - MODE_INFO mi_; + DECLARE_ALIGNED(32, MACROBLOCKD, mb_); + DECLARE_ALIGNED(32, MODE_INFO, mi_); uint8_t *data_ptr_[2]; // in the case of Y, only [0] is used int stride_; int block_size_;