| /* |
| * Copyright (c) 2016, Alliance for Open Media. All rights reserved |
| * |
| * This source code is subject to the terms of the BSD 2 Clause License and |
| * the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License |
| * was not distributed with this source code in the LICENSE file, you can |
| * obtain it at www.aomedia.org/license/software. If the Alliance for Open |
| * Media Patent License 1.0 was not distributed with this source code in the |
| * PATENTS file, you can obtain it at www.aomedia.org/license/patent. |
| */ |
| |
| #ifndef AV1_COMMON_ENTROPYMODE_H_ |
| #define AV1_COMMON_ENTROPYMODE_H_ |
| |
| #include "av1/common/entropy.h" |
| #include "av1/common/entropymv.h" |
| #include "av1/common/filter.h" |
| #include "av1/common/seg_common.h" |
| #include "aom_dsp/aom_filter.h" |
| |
| #ifdef __cplusplus |
| extern "C" { |
| #endif |
| |
| #define BLOCK_SIZE_GROUPS 4 |
| |
| #define TX_SIZE_CONTEXTS 2 |
| |
| #define INTER_OFFSET(mode) ((mode)-NEARESTMV) |
| |
| struct AV1Common; |
| |
| struct tx_probs { |
| aom_prob p32x32[TX_SIZE_CONTEXTS][TX_SIZES - 1]; |
| aom_prob p16x16[TX_SIZE_CONTEXTS][TX_SIZES - 2]; |
| aom_prob p8x8[TX_SIZE_CONTEXTS][TX_SIZES - 3]; |
| }; |
| |
| struct tx_counts { |
| unsigned int p32x32[TX_SIZE_CONTEXTS][TX_SIZES]; |
| unsigned int p16x16[TX_SIZE_CONTEXTS][TX_SIZES - 1]; |
| unsigned int p8x8[TX_SIZE_CONTEXTS][TX_SIZES - 2]; |
| unsigned int tx_totals[TX_SIZES]; |
| }; |
| |
| struct seg_counts { |
| unsigned int tree_total[MAX_SEGMENTS]; |
| unsigned int tree_mispred[MAX_SEGMENTS]; |
| unsigned int pred[PREDICTION_PROBS][2]; |
| }; |
| |
| typedef struct frame_contexts { |
| aom_prob y_mode_prob[BLOCK_SIZE_GROUPS][INTRA_MODES - 1]; |
| aom_prob uv_mode_prob[INTRA_MODES][INTRA_MODES - 1]; |
| aom_prob partition_prob[PARTITION_CONTEXTS][PARTITION_TYPES - 1]; |
| av1_coeff_probs_model coef_probs[TX_SIZES][PLANE_TYPES]; |
| #if CONFIG_RANS |
| coeff_cdf_model coef_cdfs[TX_SIZES][PLANE_TYPES]; |
| #endif // CONFIG_RANS |
| aom_prob |
| switchable_interp_prob[SWITCHABLE_FILTER_CONTEXTS][SWITCHABLE_FILTERS - |
| 1]; |
| |
| #if CONFIG_REF_MV |
| aom_prob newmv_prob[NEWMV_MODE_CONTEXTS]; |
| aom_prob zeromv_prob[ZEROMV_MODE_CONTEXTS]; |
| aom_prob refmv_prob[REFMV_MODE_CONTEXTS]; |
| aom_prob drl_prob[DRL_MODE_CONTEXTS]; |
| #endif |
| |
| aom_prob inter_mode_probs[INTER_MODE_CONTEXTS][INTER_MODES - 1]; |
| #if CONFIG_MOTION_VAR |
| aom_prob motion_mode_prob[BLOCK_SIZES][MOTION_MODES - 1]; |
| #endif // CONFIG_MOTION_VAR |
| aom_prob intra_inter_prob[INTRA_INTER_CONTEXTS]; |
| aom_prob comp_inter_prob[COMP_INTER_CONTEXTS]; |
| aom_prob single_ref_prob[REF_CONTEXTS][SINGLE_REFS - 1]; |
| #if CONFIG_EXT_REFS |
| aom_prob comp_fwdref_prob[REF_CONTEXTS][FWD_REFS - 1]; |
| aom_prob comp_bwdref_prob[REF_CONTEXTS][BWD_REFS - 1]; |
| #else |
| aom_prob comp_ref_prob[REF_CONTEXTS]; |
| #endif // CONFIG_EXT_REFS |
| struct tx_probs tx_probs; |
| aom_prob skip_probs[SKIP_CONTEXTS]; |
| #if CONFIG_REF_MV |
| nmv_context nmvc[NMV_CONTEXTS]; |
| #else |
| nmv_context nmvc; |
| #endif |
| #if CONFIG_MISC_FIXES |
| struct segmentation_probs seg; |
| #endif |
| aom_prob intra_ext_tx_prob[EXT_TX_SIZES][TX_TYPES][TX_TYPES - 1]; |
| aom_prob inter_ext_tx_prob[EXT_TX_SIZES][TX_TYPES - 1]; |
| int initialized; |
| #if CONFIG_DAALA_EC |
| uint16_t |
| switchable_interp_cdf[SWITCHABLE_FILTER_CONTEXTS][SWITCHABLE_FILTERS]; |
| #endif |
| } FRAME_CONTEXT; |
| |
| typedef struct FRAME_COUNTS { |
| unsigned int kf_y_mode[INTRA_MODES][INTRA_MODES][INTRA_MODES]; |
| unsigned int y_mode[BLOCK_SIZE_GROUPS][INTRA_MODES]; |
| unsigned int uv_mode[INTRA_MODES][INTRA_MODES]; |
| unsigned int partition[PARTITION_CONTEXTS][PARTITION_TYPES]; |
| av1_coeff_count_model coef[TX_SIZES][PLANE_TYPES]; |
| unsigned int |
| eob_branch[TX_SIZES][PLANE_TYPES][REF_TYPES][COEF_BANDS][COEFF_CONTEXTS]; |
| unsigned int |
| switchable_interp[SWITCHABLE_FILTER_CONTEXTS][SWITCHABLE_FILTERS]; |
| |
| #if CONFIG_REF_MV |
| unsigned int newmv_mode[NEWMV_MODE_CONTEXTS][2]; |
| unsigned int zeromv_mode[ZEROMV_MODE_CONTEXTS][2]; |
| unsigned int refmv_mode[REFMV_MODE_CONTEXTS][2]; |
| unsigned int drl_mode[DRL_MODE_CONTEXTS][2]; |
| #endif |
| |
| unsigned int inter_mode[INTER_MODE_CONTEXTS][INTER_MODES]; |
| #if CONFIG_MOTION_VAR |
| unsigned int motion_mode[BLOCK_SIZES][MOTION_MODES]; |
| #endif // CONFIG_MOTION_VAR |
| unsigned int intra_inter[INTRA_INTER_CONTEXTS][2]; |
| unsigned int comp_inter[COMP_INTER_CONTEXTS][2]; |
| unsigned int single_ref[REF_CONTEXTS][SINGLE_REFS - 1][2]; |
| #if CONFIG_EXT_REFS |
| unsigned int comp_fwdref[REF_CONTEXTS][FWD_REFS - 1][2]; |
| unsigned int comp_bwdref[REF_CONTEXTS][BWD_REFS - 1][2]; |
| #else |
| unsigned int comp_ref[REF_CONTEXTS][2]; |
| #endif // CONFIG_EXT_REFS |
| struct tx_counts tx; |
| unsigned int skip[SKIP_CONTEXTS][2]; |
| #if CONFIG_REF_MV |
| nmv_context_counts mv[NMV_CONTEXTS]; |
| #else |
| nmv_context_counts mv; |
| #endif |
| #if CONFIG_MISC_FIXES |
| struct seg_counts seg; |
| #endif |
| unsigned int intra_ext_tx[EXT_TX_SIZES][TX_TYPES][TX_TYPES]; |
| unsigned int inter_ext_tx[EXT_TX_SIZES][TX_TYPES]; |
| } FRAME_COUNTS; |
| |
| extern const aom_prob |
| av1_kf_y_mode_prob[INTRA_MODES][INTRA_MODES][INTRA_MODES - 1]; |
| |
| extern const aom_tree_index av1_intra_mode_tree[TREE_SIZE(INTRA_MODES)]; |
| extern const aom_tree_index av1_inter_mode_tree[TREE_SIZE(INTER_MODES)]; |
| #if CONFIG_MOTION_VAR |
| extern const aom_tree_index av1_motion_mode_tree[TREE_SIZE(MOTION_MODES)]; |
| #endif // CONFIG_MOTION_VAR |
| extern const aom_tree_index av1_partition_tree[TREE_SIZE(PARTITION_TYPES)]; |
| extern const aom_tree_index |
| av1_switchable_interp_tree[TREE_SIZE(SWITCHABLE_FILTERS)]; |
| |
| #if CONFIG_DAALA_EC |
| extern int av1_switchable_interp_ind[SWITCHABLE_FILTERS]; |
| extern int av1_switchable_interp_inv[SWITCHABLE_FILTERS]; |
| #endif |
| |
| void av1_setup_past_independence(struct AV1Common *cm); |
| |
| void av1_adapt_intra_frame_probs(struct AV1Common *cm); |
| void av1_adapt_inter_frame_probs(struct AV1Common *cm); |
| |
| void av1_tx_counts_to_branch_counts_32x32(const unsigned int *tx_count_32x32p, |
| unsigned int (*ct_32x32p)[2]); |
| void av1_tx_counts_to_branch_counts_16x16(const unsigned int *tx_count_16x16p, |
| unsigned int (*ct_16x16p)[2]); |
| void av1_tx_counts_to_branch_counts_8x8(const unsigned int *tx_count_8x8p, |
| unsigned int (*ct_8x8p)[2]); |
| |
| extern const aom_tree_index av1_ext_tx_tree[TREE_SIZE(TX_TYPES)]; |
| |
| static INLINE int av1_ceil_log2(int n) { |
| int i = 1, p = 2; |
| while (p < n) { |
| i++; |
| p = p << 1; |
| } |
| return i; |
| } |
| |
| #ifdef __cplusplus |
| } // extern "C" |
| #endif |
| |
| #endif // AV1_COMMON_ENTROPYMODE_H_ |