Home
last modified time | relevance | path

Searched refs:update_cdf (Results 1 – 8 of 8) sorted by relevance

/external/libaom/libaom/av1/encoder/
Dencodemv.c35 update_cdf(mvcomp->sign_cdf, sign, 2); in update_mv_component_stats()
38 update_cdf(mvcomp->classes_cdf, mv_class, MV_CLASSES); in update_mv_component_stats()
42 update_cdf(mvcomp->class0_cdf, d, CLASS0_SIZE); in update_mv_component_stats()
46 update_cdf(mvcomp->bits_cdf[i], (d >> i) & 1, 2); in update_mv_component_stats()
52 update_cdf(fp_cdf, fr, MV_FP_SIZE); in update_mv_component_stats()
59 update_cdf(hp_cdf, hp, 2); in update_mv_component_stats()
68 update_cdf(mvctx->joints_cdf, j, MV_JOINTS); in av1_update_mv_stats()
Dmv_prec.c89 update_cdf(sign_cdf, sign, 2); in keep_one_comp_stat()
93 update_cdf(class_cdf, mv_class, MV_CLASSES); in keep_one_comp_stat()
98 update_cdf(class0_cdf, int_part, CLASS0_SIZE); in keep_one_comp_stat()
103 update_cdf(bits_cdf[i], (int_part >> i) & 1, 2); in keep_one_comp_stat()
109 update_cdf(frac_part_cdf, frac_part, MV_FP_SIZE); in keep_one_comp_stat()
113 update_cdf(high_part_cdf, high_part, 2); in keep_one_comp_stat()
147 update_cdf(joint_cdf, mv_joint, MV_JOINTS); in keep_one_mv_stat()
Dencodeframe.c470 update_cdf(xd->tile_ctx->switchable_interp_cdf[ctx], filter, in update_filter_type_cdf()
903 update_cdf(fc->newmv_cdf[mode_ctx], 0, 2); in update_inter_mode_stats()
910 update_cdf(fc->newmv_cdf[mode_ctx], 1, 2); in update_inter_mode_stats()
917 update_cdf(fc->zeromv_cdf[mode_ctx], 0, 2); in update_inter_mode_stats()
924 update_cdf(fc->zeromv_cdf[mode_ctx], 1, 2); in update_inter_mode_stats()
930 update_cdf(fc->refmv_cdf[mode_ctx], mode != NEARESTMV, 2); in update_inter_mode_stats()
950 update_cdf(fc->palette_y_mode_cdf[palette_bsize_ctx][palette_mode_ctx], in update_palette_cdf()
956 update_cdf(fc->palette_y_size_cdf[palette_bsize_ctx], in update_palette_cdf()
968 update_cdf(fc->palette_uv_mode_cdf[palette_uv_mode_ctx], n > 0, 2); in update_palette_cdf()
974 update_cdf(fc->palette_uv_size_cdf[palette_bsize_ctx], in update_palette_cdf()
[all …]
Dencodetxb.c182 update_cdf(ec_ctx->eob_flag_cdf16[plane][eob_multi_ctx], eob_pt - 1, 5);
189 update_cdf(ec_ctx->eob_flag_cdf32[plane][eob_multi_ctx], eob_pt - 1, 6);
196 update_cdf(ec_ctx->eob_flag_cdf64[plane][eob_multi_ctx], eob_pt - 1, 7);
203 update_cdf(ec_ctx->eob_flag_cdf128[plane][eob_multi_ctx], eob_pt - 1,
212 update_cdf(ec_ctx->eob_flag_cdf256[plane][eob_multi_ctx], eob_pt - 1,
221 update_cdf(ec_ctx->eob_flag_cdf512[plane][eob_multi_ctx], eob_pt - 1,
231 update_cdf(ec_ctx->eob_flag_cdf1024[plane][eob_multi_ctx], eob_pt - 1,
245 update_cdf(ec_ctx->eob_extra_cdf[txs_ctx][plane][eob_ctx], bit, 2);
2041 update_cdf(fc->inter_ext_tx_cdf[eset][txsize_sqr_map[tx_size]],
2061 update_cdf(
[all …]
Dtokenize.c61 update_cdf(map_cdf[palette_size_idx][color_ctx], color_new_idx, n); in cost_and_tokenize_map()
/external/libaom/libaom/aom_dsp/
Dbitwriter.h111 if (w->allow_update_cdf) update_cdf(cdf, symb, nsymbs); in aom_write_symbol()
Dbitreader.h220 if (r->allow_update_cdf) update_cdf(cdf, ret, nsymbs); in aom_read_symbol_()
Dprob.h643 static INLINE void update_cdf(aom_cdf_prob *cdf, int8_t val, int nsymbs) { in update_cdf() function