summaryrefslogtreecommitdiff
path: root/vp9
diff options
context:
space:
mode:
authorJohann <johannkoenig@google.com>2014-01-22 11:10:51 -0800
committerGerrit Code Review <gerrit@gerrit.golo.chromium.org>2014-01-22 11:10:51 -0800
commit4e9dc6d45d6d1e4adbc5cdba5d7cd0f667b1b85d (patch)
treeed55d2b26226241738646633b66f6292b0c31ac2 /vp9
parent7f30a6f87766ed518914e95912d9b90cf6327e3b (diff)
parent6c492fc2f9b84e6c6d50edf0e662863081c88313 (diff)
downloadlibvpx-4e9dc6d45d6d1e4adbc5cdba5d7cd0f667b1b85d.tar
libvpx-4e9dc6d45d6d1e4adbc5cdba5d7cd0f667b1b85d.tar.gz
libvpx-4e9dc6d45d6d1e4adbc5cdba5d7cd0f667b1b85d.tar.bz2
libvpx-4e9dc6d45d6d1e4adbc5cdba5d7cd0f667b1b85d.zip
Merge "Match vp9_coefband_trans_* declarations"
Diffstat (limited to 'vp9')
-rw-r--r--vp9/common/vp9_entropy.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/vp9/common/vp9_entropy.h b/vp9/common/vp9_entropy.h
index f43a85f14..ba162fd20 100644
--- a/vp9/common/vp9_entropy.h
+++ b/vp9/common/vp9_entropy.h
@@ -112,8 +112,8 @@ static INLINE void reset_skip_context(MACROBLOCKD *xd, BLOCK_SIZE bsize) {
// 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