| Index: source/libvpx/vp9/encoder/vp9_encodemv.c
|
| ===================================================================
|
| --- source/libvpx/vp9/encoder/vp9_encodemv.c (revision 247498)
|
| +++ source/libvpx/vp9/encoder/vp9_encodemv.c (working copy)
|
| @@ -163,10 +163,10 @@
|
| update_mv(w, branch_ct[i], &probs[i], NMV_UPDATE_PROB);
|
| }
|
|
|
| -void vp9_write_nmv_probs(VP9_COMP* const cpi, int usehp, vp9_writer *w) {
|
| +void vp9_write_nmv_probs(VP9_COMMON *cm, int usehp, vp9_writer *w) {
|
| int i, j;
|
| - nmv_context *mvc = &cpi->common.fc.nmvc;
|
| - nmv_context_counts *counts = &cpi->common.counts.mv;
|
| + nmv_context *const mvc = &cm->fc.nmvc;
|
| + nmv_context_counts *const counts = &cm->counts.mv;
|
|
|
| write_mv_update(vp9_mv_joint_tree, mvc->joints, counts->joints, MV_JOINTS, w);
|
|
|
|
|