Home
last modified time | relevance | path

Searched refs:aom_write_symbol (Results 1 – 4 of 4) sorted by relevance

/external/libaom/libaom/av1/encoder/
Dencodemv.c53 aom_write_symbol(w, sign, mvcomp->sign_cdf, 2); in encode_mv_component()
56 aom_write_symbol(w, mv_class, mvcomp->classes_cdf, MV_CLASSES); in encode_mv_component()
60 aom_write_symbol(w, d, mvcomp->class0_cdf, CLASS0_SIZE); in encode_mv_component()
65 aom_write_symbol(w, (d >> i) & 1, mvcomp->bits_cdf[i], 2); in encode_mv_component()
69 aom_write_symbol( in encode_mv_component()
77 aom_write_symbol( in encode_mv_component()
147 aom_write_symbol(w, j, mvctx->joints_cdf, MV_JOINTS); in av1_encode_mv()
172 aom_write_symbol(w, j, mvctx->joints_cdf, MV_JOINTS); in av1_encode_dv()
Dbitstream.c76 aom_write_symbol(w, mode, get_y_mode_cdf(frame_ctx, above_mi, left_mi), in write_intra_y_mode_kf()
84 aom_write_symbol(w, mode != NEWMV, ec_ctx->newmv_cdf[newmv_ctx], 2); in write_inter_mode()
89 aom_write_symbol(w, mode != GLOBALMV, ec_ctx->zeromv_cdf[zeromv_ctx], 2); in write_inter_mode()
93 aom_write_symbol(w, mode != NEARESTMV, ec_ctx->refmv_cdf[refmv_ctx], 2); in write_inter_mode()
112 aom_write_symbol(w, mbmi->ref_mv_idx != idx, ec_ctx->drl_cdf[drl_ctx], in write_drl_idx()
127 aom_write_symbol(w, mbmi->ref_mv_idx != (idx - 1), in write_drl_idx()
140 aom_write_symbol(w, INTER_COMPOUND_OFFSET(mode), in write_inter_compound_mode()
168 aom_write_symbol(w, 0, ec_ctx->txfm_partition_cdf[ctx], 2); in write_tx_size_vartx()
178 aom_write_symbol(w, 1, ec_ctx->txfm_partition_cdf[ctx], 2); in write_tx_size_vartx()
211 aom_write_symbol(w, depth, ec_ctx->tx_size_cdf[tx_size_cat][tx_size_ctx], in write_selected_tx_size()
[all …]
Dencodetxb.c511 aom_write_symbol(w, eob == 0,
538 aom_write_symbol(w, eob_pt - 1,
542 aom_write_symbol(w, eob_pt - 1,
546 aom_write_symbol(w, eob_pt - 1,
550 aom_write_symbol(w, eob_pt - 1,
554 aom_write_symbol(w, eob_pt - 1,
558 aom_write_symbol(w, eob_pt - 1,
562 aom_write_symbol(w, eob_pt - 1,
572 aom_write_symbol(w, bit,
590 aom_write_symbol(
[all …]
/external/libaom/libaom/aom_dsp/
Dbitwriter.h79 static INLINE void aom_write_symbol(aom_writer *w, int symb, aom_cdf_prob *cdf, in aom_write_symbol() function