Home
last modified time | relevance | path

Searched refs:nmvc (Results 1 – 15 of 15) sorted by relevance

/external/libvpx/libvpx/vp9/common/
Dvp9_entropymv.c157 nmv_context *fc = &cm->fc->nmvc; in vp9_adapt_mv_probs()
158 const nmv_context *pre_fc = &cm->frame_contexts[cm->frame_context_idx].nmvc; in vp9_adapt_mv_probs()
191 void vp9_init_mv_probs(VP9_COMMON *cm) { cm->fc->nmvc = default_nmv_context; } in vp9_init_mv_probs()
Dvp9_entropymode.h58 nmv_context nmvc; member
/external/libaom/libaom/av1/decoder/
Ddecodemv.c1108 nmv_context *const nmvc = &ec_ctx->nmvc; in assign_mv() local
1109 read_mv(r, &mv[0].as_mv, &ref_mv[0].as_mv, nmvc, allow_hp); in assign_mv()
1131 nmv_context *const nmvc = &ec_ctx->nmvc; in assign_mv() local
1132 read_mv(r, &mv[i].as_mv, &ref_mv[i].as_mv, nmvc, allow_hp); in assign_mv()
1149 nmv_context *const nmvc = &ec_ctx->nmvc; in assign_mv() local
1150 read_mv(r, &mv[0].as_mv, &ref_mv[0].as_mv, nmvc, allow_hp); in assign_mv()
1156 nmv_context *const nmvc = &ec_ctx->nmvc; in assign_mv() local
1158 read_mv(r, &mv[1].as_mv, &ref_mv[1].as_mv, nmvc, allow_hp); in assign_mv()
1163 nmv_context *const nmvc = &ec_ctx->nmvc; in assign_mv() local
1165 read_mv(r, &mv[1].as_mv, &ref_mv[1].as_mv, nmvc, allow_hp); in assign_mv()
[all …]
/external/libaom/libaom/av1/common/
Dentropymv.c65 cm->fc->nmvc = default_nmv_context; in av1_init_mv_probs()
Dentropymode.h128 nmv_context nmvc; member
Dentropy.c134 reset_nmv_counter(&fc->nmvc); in av1_reset_cdf_symbol_counters()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_bitstream.c240 const nmv_context *nmvc = &cm->fc->nmvc; in pack_inter_mode_mvs() local
322 nmvc, allow_hp, max_mv_magnitude); in pack_inter_mode_mvs()
330 &mbmi_ext->ref_mvs[mi->ref_frame[ref]][0].as_mv, nmvc, in pack_inter_mode_mvs()
Dvp9_rd.c339 &cm->fc->nmvc, cm->allow_high_precision_mv); in vp9_initialize_rd_consts()
359 &cm->fc->nmvc, cm->allow_high_precision_mv); in vp9_initialize_rd_consts()
Dvp9_encodemv.c175 nmv_context *const mvc = &cm->fc->nmvc; in vp9_write_nmv_probs()
Dvp9_encoder.c342 (pre_fc->nmvc.joints[i] - cur_fc->nmvc.joints[i]); in compute_context_model_diff()
344 pre_last_prob = MAX_PROB - pre_fc->nmvc.joints[MV_JOINTS - 2]; in compute_context_model_diff()
345 cur_last_prob = MAX_PROB - cur_fc->nmvc.joints[MV_JOINTS - 2]; in compute_context_model_diff()
352 const nmv_component *pre_nmv_prob = &pre_fc->nmvc.comps[i]; in compute_context_model_diff()
353 const nmv_component *cur_nmv_prob = &cur_fc->nmvc.comps[i]; in compute_context_model_diff()
/external/libaom/libaom/av1/encoder/
Dbitstream.c1098 nmv_context *nmvc = &ec_ctx->nmvc; in pack_inter_mode_mvs() local
1100 av1_encode_mv(cpi, w, &mbmi->mv[ref].as_mv, &ref_mv.as_mv, nmvc, in pack_inter_mode_mvs()
1104 nmv_context *nmvc = &ec_ctx->nmvc; in pack_inter_mode_mvs() local
1106 av1_encode_mv(cpi, w, &mbmi->mv[1].as_mv, &ref_mv.as_mv, nmvc, allow_hp); in pack_inter_mode_mvs()
1108 nmv_context *nmvc = &ec_ctx->nmvc; in pack_inter_mode_mvs() local
1110 av1_encode_mv(cpi, w, &mbmi->mv[0].as_mv, &ref_mv.as_mv, nmvc, allow_hp); in pack_inter_mode_mvs()
Drd.c560 av1_build_nmv_cost_table(x->nmv_vec_cost, x->nmvcost, &cm->fc->nmvc, in av1_initialize_cost_tables()
565 cm->allow_high_precision_mv ? x->nmvcost_hp : x->nmvcost, &cm->fc->nmvc, in av1_initialize_cost_tables()
Dencodeframe.c4587 avg_nmv(&ctx_left->nmvc, &ctx_tr->nmvc, wt_left, wt_tr); in avg_cdf_symbols()
/external/libvpx/libvpx/vp9/decoder/
Dvp9_decodeframe.c2419 nmv_context *const nmvc = &fc->nmvc; in read_compressed_header() local
2442 read_mv_probs(nmvc, cm->allow_high_precision_mv, &r); in read_compressed_header()
Dvp9_decodemv.c414 read_mv(r, &mv[i].as_mv, &ref_mv[i].as_mv, &cm->fc->nmvc, mv_counts, in assign_mv()