|  | /* | 
|  | * 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. | 
|  | */ | 
|  |  | 
|  | #include "config/aom_config.h" | 
|  |  | 
|  | #include "aom/aom_integer.h" | 
|  | #include "aom_mem/aom_mem.h" | 
|  | #include "av1/common/blockd.h" | 
|  | #include "av1/common/entropy.h" | 
|  | #include "av1/common/entropymode.h" | 
|  | #include "av1/common/onyxc_int.h" | 
|  | #include "av1/common/scan.h" | 
|  | #include "av1/common/token_cdfs.h" | 
|  | #include "av1/common/txb_common.h" | 
|  |  | 
|  | static int get_q_ctx(int q) { | 
|  | if (q <= 20) return 0; | 
|  | if (q <= 60) return 1; | 
|  | if (q <= 120) return 2; | 
|  | return 3; | 
|  | } | 
|  |  | 
|  | void av1_default_coef_probs(AV1_COMMON *cm) { | 
|  | const int index = get_q_ctx(cm->base_qindex); | 
|  | #if CONFIG_ENTROPY_STATS | 
|  | cm->coef_cdf_category = index; | 
|  | #endif | 
|  |  | 
|  | av1_copy(cm->fc->txb_skip_cdf, av1_default_txb_skip_cdfs[index]); | 
|  | av1_copy(cm->fc->eob_extra_cdf, av1_default_eob_extra_cdfs[index]); | 
|  | av1_copy(cm->fc->dc_sign_cdf, av1_default_dc_sign_cdfs[index]); | 
|  | av1_copy(cm->fc->coeff_br_cdf, av1_default_coeff_lps_multi_cdfs[index]); | 
|  | av1_copy(cm->fc->coeff_base_cdf, av1_default_coeff_base_multi_cdfs[index]); | 
|  | av1_copy(cm->fc->coeff_base_eob_cdf, | 
|  | av1_default_coeff_base_eob_multi_cdfs[index]); | 
|  | av1_copy(cm->fc->eob_flag_cdf16, av1_default_eob_multi16_cdfs[index]); | 
|  | av1_copy(cm->fc->eob_flag_cdf32, av1_default_eob_multi32_cdfs[index]); | 
|  | av1_copy(cm->fc->eob_flag_cdf64, av1_default_eob_multi64_cdfs[index]); | 
|  | av1_copy(cm->fc->eob_flag_cdf128, av1_default_eob_multi128_cdfs[index]); | 
|  | av1_copy(cm->fc->eob_flag_cdf256, av1_default_eob_multi256_cdfs[index]); | 
|  | av1_copy(cm->fc->eob_flag_cdf512, av1_default_eob_multi512_cdfs[index]); | 
|  | av1_copy(cm->fc->eob_flag_cdf1024, av1_default_eob_multi1024_cdfs[index]); | 
|  | } | 
|  |  | 
|  | static void reset_cdf_symbol_counter(aom_cdf_prob *cdf_ptr, int num_cdfs, | 
|  | int cdf_stride, int nsymbs) { | 
|  | for (int i = 0; i < num_cdfs; i++) { | 
|  | cdf_ptr[i * cdf_stride + nsymbs] = 0; | 
|  | } | 
|  | } | 
|  |  | 
|  | #define RESET_CDF_COUNTER(cname, nsymbs) \ | 
|  | RESET_CDF_COUNTER_STRIDE(cname, nsymbs, CDF_SIZE(nsymbs)) | 
|  |  | 
|  | #define RESET_CDF_COUNTER_STRIDE(cname, nsymbs, cdf_stride)          \ | 
|  | do {                                                               \ | 
|  | aom_cdf_prob *cdf_ptr = (aom_cdf_prob *)cname;                   \ | 
|  | int array_size = (int)sizeof(cname) / sizeof(aom_cdf_prob);      \ | 
|  | int num_cdfs = array_size / cdf_stride;                          \ | 
|  | reset_cdf_symbol_counter(cdf_ptr, num_cdfs, cdf_stride, nsymbs); \ | 
|  | } while (0) | 
|  |  | 
|  | static void reset_nmv_counter(nmv_context *nmv) { | 
|  | RESET_CDF_COUNTER(nmv->joints_cdf, 4); | 
|  | for (int i = 0; i < 2; i++) { | 
|  | RESET_CDF_COUNTER(nmv->comps[i].classes_cdf, MV_CLASSES); | 
|  | #if CONFIG_FLEX_MVRES | 
|  | RESET_CDF_COUNTER(nmv->comps[i].class0_fp_cdf, 2); | 
|  | RESET_CDF_COUNTER(nmv->comps[i].fp_cdf, 2); | 
|  | #else | 
|  | RESET_CDF_COUNTER(nmv->comps[i].class0_fp_cdf, MV_FP_SIZE); | 
|  | RESET_CDF_COUNTER(nmv->comps[i].fp_cdf, MV_FP_SIZE); | 
|  | #endif  // CONFIG_FLEX_MVRES | 
|  | RESET_CDF_COUNTER(nmv->comps[i].sign_cdf, 2); | 
|  | RESET_CDF_COUNTER(nmv->comps[i].class0_hp_cdf, 2); | 
|  | RESET_CDF_COUNTER(nmv->comps[i].hp_cdf, 2); | 
|  | RESET_CDF_COUNTER(nmv->comps[i].class0_cdf, CLASS0_SIZE); | 
|  | RESET_CDF_COUNTER(nmv->comps[i].bits_cdf, 2); | 
|  | } | 
|  | } | 
|  |  | 
|  | void av1_reset_cdf_symbol_counters(FRAME_CONTEXT *fc) { | 
|  | RESET_CDF_COUNTER(fc->txb_skip_cdf, 2); | 
|  | RESET_CDF_COUNTER(fc->eob_extra_cdf, 2); | 
|  | RESET_CDF_COUNTER(fc->dc_sign_cdf, 2); | 
|  | RESET_CDF_COUNTER(fc->eob_flag_cdf16, 5); | 
|  | RESET_CDF_COUNTER(fc->eob_flag_cdf32, 6); | 
|  | RESET_CDF_COUNTER(fc->eob_flag_cdf64, 7); | 
|  | RESET_CDF_COUNTER(fc->eob_flag_cdf128, 8); | 
|  | RESET_CDF_COUNTER(fc->eob_flag_cdf256, 9); | 
|  | RESET_CDF_COUNTER(fc->eob_flag_cdf512, 10); | 
|  | RESET_CDF_COUNTER(fc->eob_flag_cdf1024, 11); | 
|  | RESET_CDF_COUNTER(fc->coeff_base_eob_cdf, 3); | 
|  | RESET_CDF_COUNTER(fc->coeff_base_cdf, 4); | 
|  | RESET_CDF_COUNTER(fc->coeff_br_cdf, BR_CDF_SIZE); | 
|  | RESET_CDF_COUNTER(fc->newmv_cdf, 2); | 
|  | RESET_CDF_COUNTER(fc->zeromv_cdf, 2); | 
|  | #if CONFIG_NEW_INTER_MODES | 
|  | RESET_CDF_COUNTER(fc->drl0_cdf, 2); | 
|  | RESET_CDF_COUNTER(fc->drl1_cdf, 2); | 
|  | RESET_CDF_COUNTER(fc->drl2_cdf, 2); | 
|  | #else | 
|  | RESET_CDF_COUNTER(fc->drl_cdf, 2); | 
|  | RESET_CDF_COUNTER(fc->refmv_cdf, 2); | 
|  | #endif  // CONFIG_NEW_INTER_MODES | 
|  | RESET_CDF_COUNTER(fc->inter_compound_mode_cdf, INTER_COMPOUND_MODES); | 
|  | RESET_CDF_COUNTER(fc->compound_type_cdf, MASKED_COMPOUND_TYPES); | 
|  | RESET_CDF_COUNTER(fc->wedge_idx_cdf, 16); | 
|  | RESET_CDF_COUNTER(fc->interintra_cdf, 2); | 
|  | RESET_CDF_COUNTER(fc->wedge_interintra_cdf, 2); | 
|  | #if CONFIG_INTERINTRA_ML | 
|  | RESET_CDF_COUNTER(fc->interintra_mode_cdf, INTERINTRA_MODES); | 
|  | RESET_CDF_COUNTER(fc->interintra_ml_mode_cdf, INTERINTRA_MODES); | 
|  | #else | 
|  | RESET_CDF_COUNTER(fc->interintra_mode_cdf, INTERINTRA_MODES); | 
|  | #endif  // CONFIG_INTERINTRA_ML | 
|  | RESET_CDF_COUNTER(fc->motion_mode_cdf, MOTION_MODES); | 
|  | #if CONFIG_EXT_WARP && CONFIG_SUB8X8_WARP | 
|  | RESET_CDF_COUNTER(fc->warp_cdf, 2); | 
|  | #endif  // CONFIG_EXT_WARP && CONFIG_SUB8X8_WARP | 
|  | RESET_CDF_COUNTER(fc->obmc_cdf, 2); | 
|  | RESET_CDF_COUNTER(fc->palette_y_size_cdf, PALETTE_SIZES); | 
|  | RESET_CDF_COUNTER(fc->palette_uv_size_cdf, PALETTE_SIZES); | 
|  | for (int j = 0; j < PALETTE_SIZES; j++) { | 
|  | int nsymbs = j + PALETTE_MIN_SIZE; | 
|  | RESET_CDF_COUNTER_STRIDE(fc->palette_y_color_index_cdf[j], nsymbs, | 
|  | CDF_SIZE(PALETTE_COLORS)); | 
|  | RESET_CDF_COUNTER_STRIDE(fc->palette_uv_color_index_cdf[j], nsymbs, | 
|  | CDF_SIZE(PALETTE_COLORS)); | 
|  | } | 
|  | RESET_CDF_COUNTER(fc->palette_y_mode_cdf, 2); | 
|  | RESET_CDF_COUNTER(fc->palette_uv_mode_cdf, 2); | 
|  | RESET_CDF_COUNTER(fc->comp_inter_cdf, 2); | 
|  | RESET_CDF_COUNTER(fc->single_ref_cdf, 2); | 
|  | RESET_CDF_COUNTER(fc->comp_ref_type_cdf, 2); | 
|  | RESET_CDF_COUNTER(fc->uni_comp_ref_cdf, 2); | 
|  | RESET_CDF_COUNTER(fc->comp_ref_cdf, 2); | 
|  | RESET_CDF_COUNTER(fc->comp_bwdref_cdf, 2); | 
|  | #if CONFIG_NEW_TX_PARTITION | 
|  | // Square blocks | 
|  | RESET_CDF_COUNTER(fc->txfm_partition_cdf[0], TX_PARTITION_TYPES); | 
|  | // Rectangular blocks | 
|  | RESET_CDF_COUNTER(fc->txfm_partition_cdf[1], TX_PARTITION_TYPES); | 
|  | #else   // CONFIG_NEW_TX_PARTITION | 
|  | RESET_CDF_COUNTER(fc->txfm_partition_cdf, 2); | 
|  | #endif  // CONFIG_NEW_TX_PARTITION | 
|  | RESET_CDF_COUNTER(fc->compound_index_cdf, 2); | 
|  | RESET_CDF_COUNTER(fc->comp_group_idx_cdf, 2); | 
|  | RESET_CDF_COUNTER(fc->skip_mode_cdfs, 2); | 
|  | RESET_CDF_COUNTER(fc->skip_cdfs, 2); | 
|  | #if CONFIG_DSPL_RESIDUAL | 
|  | RESET_CDF_COUNTER(fc->dspl_type_cdf, DSPL_END); | 
|  | #endif  // CONFIG_DSPL_RESIDUAL | 
|  | RESET_CDF_COUNTER(fc->intra_inter_cdf, 2); | 
|  | reset_nmv_counter(&fc->nmvc); | 
|  | reset_nmv_counter(&fc->ndvc); | 
|  | RESET_CDF_COUNTER(fc->intrabc_cdf, 2); | 
|  | #if CONFIG_EXT_IBC_MODES | 
|  | RESET_CDF_COUNTER(fc->intrabc_mode_cdf, 8); | 
|  | // RESET_CDF_COUNTER(fc->intrabc_mode_cdf, 6); | 
|  | // RESET_CDF_COUNTER(fc->intrabc_mode_cdf, 4); | 
|  | #endif  // CONFIG_EXT_IBC_MODES | 
|  | RESET_CDF_COUNTER(fc->seg.tree_cdf, MAX_SEGMENTS); | 
|  | RESET_CDF_COUNTER(fc->seg.pred_cdf, 2); | 
|  | RESET_CDF_COUNTER(fc->seg.spatial_pred_seg_cdf, MAX_SEGMENTS); | 
|  | RESET_CDF_COUNTER(fc->filter_intra_cdfs, 2); | 
|  | RESET_CDF_COUNTER(fc->filter_intra_mode_cdf, FILTER_INTRA_MODES); | 
|  | #if CONFIG_ADAPT_FILTER_INTRA | 
|  | RESET_CDF_COUNTER(fc->adapt_filter_intra_cdfs, 2); | 
|  | RESET_CDF_COUNTER(fc->adapt_filter_intra_mode_cdf, | 
|  | USED_ADAPT_FILTER_INTRA_MODES); | 
|  | #endif  // CONFIG_ADAPT_FILTER_INTRA | 
|  | #if CONFIG_LOOP_RESTORE_CNN | 
|  | RESET_CDF_COUNTER(fc->switchable_restore_cdf[0], | 
|  | RESTORE_SWITCHABLE_TYPES - 1); | 
|  | RESET_CDF_COUNTER(fc->switchable_restore_cdf[1], RESTORE_SWITCHABLE_TYPES); | 
|  | #else | 
|  | RESET_CDF_COUNTER(fc->switchable_restore_cdf, RESTORE_SWITCHABLE_TYPES); | 
|  | #endif  // CONFIG_LOOP_RESTORE_CNN | 
|  | RESET_CDF_COUNTER(fc->wiener_restore_cdf, 2); | 
|  | RESET_CDF_COUNTER(fc->sgrproj_restore_cdf, 2); | 
|  | #if CONFIG_LOOP_RESTORE_CNN | 
|  | RESET_CDF_COUNTER(fc->cnn_restore_cdf, 2); | 
|  | #endif  // CONFIG_LOOP_RESTORE_CNN | 
|  | #if CONFIG_WIENER_NONSEP | 
|  | RESET_CDF_COUNTER(fc->wiener_nonsep_restore_cdf, 2); | 
|  | #endif  // CONFIG_WIENER_NONSEP | 
|  | #if CONFIG_RST_MERGECOEFFS | 
|  | RESET_CDF_COUNTER(fc->merged_param_cdf, 2); | 
|  | #endif  // CONFIG_RST_MERGECOEFFS | 
|  | #if CONFIG_DERIVED_INTRA_MODE | 
|  | RESET_CDF_COUNTER(fc->derived_intra_mode_cdf, 2); | 
|  | RESET_CDF_COUNTER(fc->uv_derived_intra_mode_cdf, 2); | 
|  | RESET_CDF_COUNTER(fc->bf_is_dr_mode_cdf, 2); | 
|  | RESET_CDF_COUNTER(fc->bf_dr_mode_cdf, DIRECTIONAL_MODES); | 
|  | RESET_CDF_COUNTER(fc->bf_none_dr_mode_cdf, NONE_DIRECTIONAL_MODES); | 
|  | #else | 
|  | RESET_CDF_COUNTER(fc->y_mode_cdf, INTRA_MODES); | 
|  | #endif  // CONFIG_DERIVED_INTRA_MODE | 
|  | #if CONFIG_DERIVED_MV | 
|  | RESET_CDF_COUNTER(fc->use_derived_mv_cdf, 2); | 
|  | #endif  // CONFIG_DERIVED_MV | 
|  | for (int i = 0; i < PARTITION_CONTEXTS; i++) { | 
|  | if (i < 4) { | 
|  | RESET_CDF_COUNTER_STRIDE(fc->partition_cdf[i], 4, CDF_SIZE(10)); | 
|  | } else if (i < 16) { | 
|  | RESET_CDF_COUNTER(fc->partition_cdf[i], 10); | 
|  | } else { | 
|  | RESET_CDF_COUNTER_STRIDE(fc->partition_cdf[i], 8, CDF_SIZE(10)); | 
|  | } | 
|  | } | 
|  | RESET_CDF_COUNTER(fc->switchable_interp_cdf, SWITCHABLE_FILTERS); | 
|  | #if !CONFIG_INTRA_ENTROPY | 
|  | RESET_CDF_COUNTER_STRIDE(fc->uv_mode_cdf[0], UV_INTRA_MODES - 1, | 
|  | CDF_SIZE(UV_INTRA_MODES)); | 
|  | RESET_CDF_COUNTER(fc->uv_mode_cdf[1], UV_INTRA_MODES); | 
|  | #if CONFIG_DERIVED_INTRA_MODE | 
|  | RESET_CDF_COUNTER(fc->kf_is_dr_mode_cdf, 2); | 
|  | RESET_CDF_COUNTER(fc->kf_dr_mode_cdf, DIRECTIONAL_MODES); | 
|  | RESET_CDF_COUNTER(fc->kf_none_dr_mode_cdf, INTRA_MODES - DIRECTIONAL_MODES); | 
|  | #else | 
|  | RESET_CDF_COUNTER(fc->kf_y_cdf, INTRA_MODES); | 
|  | #endif  // CONFIG_DERIVED_INTRA_MODE | 
|  | #endif  // CONFIG_INTRA_ENTROPY | 
|  | #if CONFIG_FLEX_MVRES | 
|  | for (int p = MV_SUBPEL_HALF_PRECISION; p <= MV_SUBPEL_EIGHTH_PRECISION; ++p) { | 
|  | RESET_CDF_COUNTER(fc->sb_mv_precision_cdf[p - MV_SUBPEL_HALF_PRECISION], | 
|  | p + 1); | 
|  | } | 
|  | for (int p = MV_SUBPEL_QTR_PRECISION; p < MV_SUBPEL_PRECISIONS; ++p) { | 
|  | for (int j = 0; j < MV_PREC_DOWN_CONTEXTS; ++j) { | 
|  | #if DISALLOW_ONE_DOWN_FLEX_MVRES == 2 | 
|  | RESET_CDF_COUNTER_STRIDE( | 
|  | fc->pb_mv_precision_cdf[j][p - MV_SUBPEL_QTR_PRECISION], 2, | 
|  | CDF_SIZE(2)); | 
|  | #elif DISALLOW_ONE_DOWN_FLEX_MVRES == 1 | 
|  | RESET_CDF_COUNTER_STRIDE( | 
|  | fc->pb_mv_precision_cdf[j][p - MV_SUBPEL_QTR_PRECISION], p, | 
|  | CDF_SIZE(MV_SUBPEL_PRECISIONS - 1)); | 
|  | #else | 
|  | RESET_CDF_COUNTER_STRIDE( | 
|  | fc->pb_mv_precision_cdf[j][p - MV_SUBPEL_QTR_PRECISION], p + 1, | 
|  | CDF_SIZE(MV_SUBPEL_PRECISIONS)); | 
|  | #endif  // DISALLOW_ONE_DOWN_FLEX_MVRES | 
|  | } | 
|  | } | 
|  | #endif  // CONFIG_FLEX_MVRES | 
|  | RESET_CDF_COUNTER(fc->angle_delta_cdf, 2 * MAX_ANGLE_DELTA + 1); | 
|  | #if CONFIG_NEW_TX_PARTITION | 
|  | RESET_CDF_COUNTER(fc->tx_size_cdf[0], TX_PARTITION_TYPES_INTRA); | 
|  | RESET_CDF_COUNTER(fc->tx_size_cdf[1], TX_PARTITION_TYPES_INTRA); | 
|  | #else | 
|  | RESET_CDF_COUNTER_STRIDE(fc->tx_size_cdf[0], MAX_TX_DEPTH, | 
|  | CDF_SIZE(MAX_TX_DEPTH + 1)); | 
|  | RESET_CDF_COUNTER(fc->tx_size_cdf[1], MAX_TX_DEPTH + 1); | 
|  | RESET_CDF_COUNTER(fc->tx_size_cdf[2], MAX_TX_DEPTH + 1); | 
|  | RESET_CDF_COUNTER(fc->tx_size_cdf[3], MAX_TX_DEPTH + 1); | 
|  | #endif  // CONFIG_NEW_TX_PARTITION | 
|  | #if CONFIG_NN_RECON | 
|  | RESET_CDF_COUNTER(fc->use_nn_recon_cdf, CDF_SIZE(2)); | 
|  | #endif  // CONFIG_NN_RECON | 
|  | RESET_CDF_COUNTER(fc->delta_q_cdf, DELTA_Q_PROBS + 1); | 
|  | RESET_CDF_COUNTER(fc->delta_lf_cdf, DELTA_LF_PROBS + 1); | 
|  | for (int i = 0; i < FRAME_LF_COUNT; i++) { | 
|  | RESET_CDF_COUNTER(fc->delta_lf_multi_cdf[i], DELTA_LF_PROBS + 1); | 
|  | } | 
|  | #if CONFIG_MODE_DEP_INTRA_TX || CONFIG_MODE_DEP_INTER_TX | 
|  | #if CONFIG_MODE_DEP_INTER_TX | 
|  | RESET_CDF_COUNTER(fc->use_mdtx_inter_cdf, 2); | 
|  | RESET_CDF_COUNTER_STRIDE(fc->mdtx_type_inter_cdf, 8, | 
|  | CDF_SIZE(MDTX_TYPES_INTER)); | 
|  | #endif  // CONFIG_MODE_DEP_INTER_TX | 
|  | #if CONFIG_MODE_DEP_INTRA_TX | 
|  | RESET_CDF_COUNTER(fc->use_mdtx_intra_cdf, 2); | 
|  | #if CONFIG_MODE_DEP_NONSEP_INTRA_TX | 
|  | RESET_CDF_COUNTER_STRIDE(fc->mdtx_type_intra_cdf, 4, | 
|  | CDF_SIZE(MDTX_TYPES_INTRA)); | 
|  | #else | 
|  | RESET_CDF_COUNTER_STRIDE(fc->mdtx_type_intra_cdf, 3, | 
|  | CDF_SIZE(MDTX_TYPES_INTRA)); | 
|  | #endif  // CONFIG_MODE_DEP_NONSEP_INTRA_TX | 
|  | #endif  // CONFIG_MODE_DEP_INTRA_TX | 
|  | RESET_CDF_COUNTER_STRIDE(fc->intra_ext_tx_cdf[1], 7, | 
|  | CDF_SIZE(TX_TYPES_NOMDTX)); | 
|  | RESET_CDF_COUNTER_STRIDE(fc->intra_ext_tx_cdf[2], 5, | 
|  | CDF_SIZE(TX_TYPES_NOMDTX)); | 
|  | RESET_CDF_COUNTER_STRIDE(fc->inter_ext_tx_cdf[1], 16, | 
|  | CDF_SIZE(TX_TYPES_NOMDTX)); | 
|  | RESET_CDF_COUNTER_STRIDE(fc->inter_ext_tx_cdf[2], 12, | 
|  | CDF_SIZE(TX_TYPES_NOMDTX)); | 
|  | RESET_CDF_COUNTER_STRIDE(fc->inter_ext_tx_cdf[3], 2, | 
|  | CDF_SIZE(TX_TYPES_NOMDTX)); | 
|  | #else | 
|  | RESET_CDF_COUNTER_STRIDE(fc->intra_ext_tx_cdf[1], 7, CDF_SIZE(TX_TYPES)); | 
|  | RESET_CDF_COUNTER_STRIDE(fc->intra_ext_tx_cdf[2], 5, CDF_SIZE(TX_TYPES)); | 
|  | RESET_CDF_COUNTER_STRIDE(fc->inter_ext_tx_cdf[1], 16, CDF_SIZE(TX_TYPES)); | 
|  | RESET_CDF_COUNTER_STRIDE(fc->inter_ext_tx_cdf[2], 12, CDF_SIZE(TX_TYPES)); | 
|  | RESET_CDF_COUNTER_STRIDE(fc->inter_ext_tx_cdf[3], 2, CDF_SIZE(TX_TYPES)); | 
|  | #endif  // CONFIG_MODE_DEP_INTRA_TX || CONFIG_MODE_DEP_INTER_TX | 
|  | RESET_CDF_COUNTER(fc->cfl_sign_cdf, CFL_JOINT_SIGNS); | 
|  | RESET_CDF_COUNTER(fc->cfl_alpha_cdf, CFL_ALPHABET_SIZE); | 
|  | } |