shithub: libvpx

Download patch

ref: 4e9dc6d45d6d1e4adbc5cdba5d7cd0f667b1b85d
parent: 7f30a6f87766ed518914e95912d9b90cf6327e3b
parent: 6c492fc2f9b84e6c6d50edf0e662863081c88313
author: Johann <johannkoenig@google.com>
date: Wed Jan 22 06:10:51 EST 2014

Merge "Match vp9_coefband_trans_* declarations"

--- a/vp9/common/vp9_entropy.h
+++ b/vp9/common/vp9_entropy.h
@@ -112,8 +112,8 @@
 // This macro is currently unused but may be used by certain implementations
 #define MAXBAND_INDEX 21
 
-extern const uint8_t vp9_coefband_trans_8x8plus[1024];
-extern const uint8_t vp9_coefband_trans_4x4[16];
+extern DECLARE_ALIGNED(16, const uint8_t, vp9_coefband_trans_8x8plus[1024]);
+extern DECLARE_ALIGNED(16, const uint8_t, vp9_coefband_trans_4x4[16]);
 
 static const uint8_t *get_band_translate(TX_SIZE tx_size) {
   return tx_size == TX_4X4 ? vp9_coefband_trans_4x4