#ifndef AOM_AV1_COMMON_COMMON_DATA_H_
#define AOM_AV1_COMMON_COMMON_DATA_H_
#include "av1/common/enums.h"
#include "aom/aom_integer.h"
#include "aom_dsp/aom_dsp_common.h"
#ifdef __cplusplus
extern "C" {
#endif
static const uint8_t mi_size_wide_log2[BLOCK_SIZES_ALL] = …;
static const uint8_t mi_size_high_log2[BLOCK_SIZES_ALL] = …;
static const uint8_t mi_size_wide[BLOCK_SIZES_ALL] = …;
static const uint8_t mi_size_high[BLOCK_SIZES_ALL] = …;
static const uint8_t block_size_wide[BLOCK_SIZES_ALL] = …;
static const uint8_t block_size_high[BLOCK_SIZES_ALL] = …;
static const uint8_t size_group_lookup[BLOCK_SIZES_ALL] = …;
static const uint8_t num_pels_log2_lookup[BLOCK_SIZES_ALL] = …;
static const BLOCK_SIZE subsize_lookup[EXT_PARTITION_TYPES][SQR_BLOCK_SIZES] = …;
static const TX_SIZE max_txsize_lookup[BLOCK_SIZES_ALL] = …;
static const TX_SIZE max_txsize_rect_lookup[BLOCK_SIZES_ALL] = …;
static const TX_TYPE_1D vtx_tab[TX_TYPES] = …;
static const TX_TYPE_1D htx_tab[TX_TYPES] = …;
#define TXSIZE_CAT_INVALID …
static const TX_SIZE sub_tx_size_map[TX_SIZES_ALL] = …;
static const TX_SIZE txsize_horz_map[TX_SIZES_ALL] = …;
static const TX_SIZE txsize_vert_map[TX_SIZES_ALL] = …;
#define TX_SIZE_W_MIN …
static const int tx_size_wide[TX_SIZES_ALL] = …;
#define TX_SIZE_H_MIN …
static const int tx_size_high[TX_SIZES_ALL] = …;
static const int tx_size_wide_unit[TX_SIZES_ALL] = …;
static const int tx_size_high_unit[TX_SIZES_ALL] = …;
static const int tx_size_wide_log2[TX_SIZES_ALL] = …;
static const int tx_size_wide_unit_log2[TX_SIZES_ALL] = …;
static const int tx_size_high_log2[TX_SIZES_ALL] = …;
static const int tx_size_high_unit_log2[TX_SIZES_ALL] = …;
static const int tx_size_2d[TX_SIZES_ALL + 1] = …;
static const BLOCK_SIZE txsize_to_bsize[TX_SIZES_ALL] = …;
static const TX_SIZE txsize_sqr_map[TX_SIZES_ALL] = …;
static const TX_SIZE txsize_sqr_up_map[TX_SIZES_ALL] = …;
static const int8_t txsize_log2_minus4[TX_SIZES_ALL] = …;
static const TX_SIZE tx_mode_to_biggest_tx_size[TX_MODES] = …;
extern const BLOCK_SIZE av1_ss_size_lookup[BLOCK_SIZES_ALL][2][2];
static const struct { … } partition_context_lookup[BLOCK_SIZES_ALL] = …;
static const int intra_mode_context[INTRA_MODES] = …;
static const int quant_dist_weight[4][2] = …;
static const int quant_dist_lookup_table[4][2] = …;
#ifdef __cplusplus
}
#endif
#endif