shithub: libvpx

Download patch

ref: 6b5490cf68555fa70a8960a9e0f46b888f1ab6d3
parent: 0c02bfcc2ab9eb9ce2b95c7af9bbf491ddf37415
parent: b5242368f3800e3b658e6ee4567bd41110c80071
author: Yaowu Xu <yaowu@google.com>
date: Wed Sep 25 13:55:05 EDT 2013

Merge "Align struct to 32 bytes"

--- a/test/intrapred_test.cc
+++ b/test/intrapred_test.cc
@@ -209,8 +209,8 @@
     }
   }
 
-  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_;
--