summaryrefslogtreecommitdiff
path: root/vp9/common/vp9_common_data.h
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2015-04-20 15:56:10 -0700
committerJames Zern <jzern@google.com>2015-06-25 20:20:40 -0700
commit28a8226350f24404b77127a258debf2136edada8 (patch)
tree874b9448e716a9ea1d2c92bc5db88d1c0d9f3cef /vp9/common/vp9_common_data.h
parent1c7b1f9aec21b9fd5ce89397b0b0a7ee038d0cf1 (diff)
downloadlibvpx-28a8226350f24404b77127a258debf2136edada8.tar
libvpx-28a8226350f24404b77127a258debf2136edada8.tar.gz
libvpx-28a8226350f24404b77127a258debf2136edada8.tar.bz2
libvpx-28a8226350f24404b77127a258debf2136edada8.zip
vp9_common_data: right-size tables
Change-Id: I2206ee148a46b234df58f2b623e9f32f26033e04
Diffstat (limited to 'vp9/common/vp9_common_data.h')
-rw-r--r--vp9/common/vp9_common_data.h19
1 files changed, 10 insertions, 9 deletions
diff --git a/vp9/common/vp9_common_data.h b/vp9/common/vp9_common_data.h
index a06c9bed8..95a117961 100644
--- a/vp9/common/vp9_common_data.h
+++ b/vp9/common/vp9_common_data.h
@@ -12,20 +12,21 @@
#define VP9_COMMON_VP9_COMMON_DATA_H_
#include "vp9/common/vp9_enums.h"
+#include "vpx/vpx_integer.h"
#ifdef __cplusplus
extern "C" {
#endif
-extern const int b_width_log2_lookup[BLOCK_SIZES];
-extern const int b_height_log2_lookup[BLOCK_SIZES];
-extern const int mi_width_log2_lookup[BLOCK_SIZES];
-extern const int num_8x8_blocks_wide_lookup[BLOCK_SIZES];
-extern const int num_8x8_blocks_high_lookup[BLOCK_SIZES];
-extern const int num_4x4_blocks_high_lookup[BLOCK_SIZES];
-extern const int num_4x4_blocks_wide_lookup[BLOCK_SIZES];
-extern const int size_group_lookup[BLOCK_SIZES];
-extern const int num_pels_log2_lookup[BLOCK_SIZES];
+extern const uint8_t b_width_log2_lookup[BLOCK_SIZES];
+extern const uint8_t b_height_log2_lookup[BLOCK_SIZES];
+extern const uint8_t mi_width_log2_lookup[BLOCK_SIZES];
+extern const uint8_t num_8x8_blocks_wide_lookup[BLOCK_SIZES];
+extern const uint8_t num_8x8_blocks_high_lookup[BLOCK_SIZES];
+extern const uint8_t num_4x4_blocks_high_lookup[BLOCK_SIZES];
+extern const uint8_t num_4x4_blocks_wide_lookup[BLOCK_SIZES];
+extern const uint8_t size_group_lookup[BLOCK_SIZES];
+extern const uint8_t num_pels_log2_lookup[BLOCK_SIZES];
extern const PARTITION_TYPE partition_lookup[][BLOCK_SIZES];
extern const BLOCK_SIZE subsize_lookup[PARTITION_TYPES][BLOCK_SIZES];
extern const TX_SIZE max_txsize_lookup[BLOCK_SIZES];