#ifndef VPX_VP8_COMMON_VP8_ENTROPYMODEDATA_H_
#define VPX_VP8_COMMON_VP8_ENTROPYMODEDATA_H_
#ifdef __cplusplus
extern "C" {
#endif
const struct vp8_token_struct vp8_bmode_encodings[VP8_BINTRAMODES] = …;
const struct vp8_token_struct vp8_ymode_encodings[VP8_YMODES] = …;
const struct vp8_token_struct vp8_kf_ymode_encodings[VP8_YMODES] = …;
const struct vp8_token_struct vp8_uv_mode_encodings[VP8_UV_MODES] = …;
const struct vp8_token_struct vp8_mbsplit_encodings[VP8_NUMMBSPLITS] = …;
const struct vp8_token_struct vp8_mv_ref_encoding_array[VP8_MVREFS] = …;
const struct vp8_token_struct vp8_sub_mv_ref_encoding_array[VP8_SUBMVREFS] = …;
const struct vp8_token_struct vp8_small_mvencodings[8] = …;
const vp8_prob vp8_ymode_prob[VP8_YMODES - 1] = …;
const vp8_prob vp8_kf_ymode_prob[VP8_YMODES - 1] = …;
const vp8_prob vp8_uv_mode_prob[VP8_UV_MODES - 1] = …;
const vp8_prob vp8_kf_uv_mode_prob[VP8_UV_MODES - 1] = …;
const vp8_prob vp8_bmode_prob[VP8_BINTRAMODES - 1] = …;
const vp8_prob
vp8_kf_bmode_prob[VP8_BINTRAMODES][VP8_BINTRAMODES][VP8_BINTRAMODES - 1] = …;
#ifdef __cplusplus
}
#endif
#endif