Home
last modified time | relevance | path

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

/external/libaom/libaom/av1/encoder/
Dencodeframe.c292 update_cdf(xd->tile_ctx->switchable_interp_cdf[ctx], filter, in update_filter_type_count()
705 if (allow_update_cdf) update_cdf(fc->newmv_cdf[mode_ctx], 0, 2); in update_inter_mode_stats()
711 if (allow_update_cdf) update_cdf(fc->newmv_cdf[mode_ctx], 1, 2); in update_inter_mode_stats()
718 if (allow_update_cdf) update_cdf(fc->zeromv_cdf[mode_ctx], 0, 2); in update_inter_mode_stats()
724 if (allow_update_cdf) update_cdf(fc->zeromv_cdf[mode_ctx], 1, 2); in update_inter_mode_stats()
730 update_cdf(fc->refmv_cdf[mode_ctx], mode != NEARESTMV, 2); in update_inter_mode_stats()
752 update_cdf(fc->palette_y_mode_cdf[palette_bsize_ctx][palette_mode_ctx], in update_palette_cdf()
759 update_cdf(fc->palette_y_size_cdf[palette_bsize_ctx], in update_palette_cdf()
773 update_cdf(fc->palette_uv_mode_cdf[palette_uv_mode_ctx], n > 0, 2); in update_palette_cdf()
780 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);
1947 update_cdf(fc->inter_ext_tx_cdf[eset][txsize_sqr_map[tx_size]],
1967 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.h82 if (w->allow_update_cdf) update_cdf(cdf, symb, nsymbs); in aom_write_symbol()
Dbitreader.h148 if (r->allow_update_cdf) update_cdf(cdf, ret, nsymbs); in aom_read_symbol_()
Dprob.h644 static INLINE void update_cdf(aom_cdf_prob *cdf, int8_t val, int nsymbs) { in update_cdf() function