Home
last modified time | relevance | path

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

/external/libaom/libaom/av1/encoder/
Dencodemv.c63 void av1_update_mv_stats(const MV *mv, const MV *ref, nmv_context *mvctx, in av1_update_mv_stats() argument
68 update_cdf(mvctx->joints_cdf, j, MV_JOINTS); in av1_update_mv_stats()
71 update_mv_component_stats(diff.row, &mvctx->comps[0], precision); in av1_update_mv_stats()
74 update_mv_component_stats(diff.col, &mvctx->comps[1], precision); in av1_update_mv_stats()
177 nmv_context *mvctx, int usehp) { in av1_encode_mv() argument
185 aom_write_symbol(w, j, mvctx->joints_cdf, MV_JOINTS); in av1_encode_mv()
187 encode_mv_component(w, diff.row, &mvctx->comps[0], usehp); in av1_encode_mv()
190 encode_mv_component(w, diff.col, &mvctx->comps[1], usehp); in av1_encode_mv()
202 nmv_context *mvctx) { in av1_encode_dv() argument
211 aom_write_symbol(w, j, mvctx->joints_cdf, MV_JOINTS); in av1_encode_dv()
[all …]
Dencodemv.h22 nmv_context *mvctx, int usehp);
24 void av1_update_mv_stats(const MV *mv, const MV *ref, nmv_context *mvctx,
28 const nmv_context *mvctx,
34 nmv_context *mvctx);
/external/libvpx/libvpx/vp9/encoder/
Dvp9_encodemv.c211 const nmv_context *mvctx, int usehp, in vp9_encode_mv() argument
217 vp9_write_token(w, vp9_mv_joint_tree, mvctx->joints, &mv_joint_encodings[j]); in vp9_encode_mv()
219 encode_mv_component(w, diff.row, &mvctx->comps[0], usehp); in vp9_encode_mv()
222 encode_mv_component(w, diff.col, &mvctx->comps[1], usehp); in vp9_encode_mv()
Dvp9_encodemv.h26 const nmv_context *mvctx, int usehp,