Rename aom_write_nmv_probs as av1_write_nmv_probs

Change-Id: Ia33ce4918d3d40eba331f81909f3f1f0f3ab7a58
diff --git a/av1/encoder/bitstream.c b/av1/encoder/bitstream.c
index 7ef24bb..ed032f6 100644
--- a/av1/encoder/bitstream.c
+++ b/av1/encoder/bitstream.c
@@ -3511,7 +3511,7 @@
       prob_diff_update(av1_intra_mode_tree, cm->fc->y_mode_prob[i],
                        counts->y_mode[i], INTRA_MODES, header_bc);
 
-    aom_write_nmv_probs(cm, cm->allow_high_precision_mv, header_bc,
+    av1_write_nmv_probs(cm, cm->allow_high_precision_mv, header_bc,
 #if CONFIG_REF_MV
                         counts->mv);
 #else
diff --git a/av1/encoder/encodemv.c b/av1/encoder/encodemv.c
index 00a95ee..bcd9b11 100644
--- a/av1/encoder/encodemv.c
+++ b/av1/encoder/encodemv.c
@@ -153,7 +153,7 @@
     update_mv(w, branch_ct[i], &probs[i], MV_UPDATE_PROB);
 }
 
-void aom_write_nmv_probs(AV1_COMMON *cm, int usehp, aom_writer *w,
+void av1_write_nmv_probs(AV1_COMMON *cm, int usehp, aom_writer *w,
                          nmv_context_counts *const nmv_counts) {
   int i, j;
 #if CONFIG_REF_MV
diff --git a/av1/encoder/encodemv.h b/av1/encoder/encodemv.h
index d58633d..543064e 100644
--- a/av1/encoder/encodemv.h
+++ b/av1/encoder/encodemv.h
@@ -20,7 +20,7 @@
 
 void av1_entropy_mv_init(void);
 
-void aom_write_nmv_probs(AV1_COMMON *cm, int usehp, aom_writer *w,
+void av1_write_nmv_probs(AV1_COMMON *cm, int usehp, aom_writer *w,
                          nmv_context_counts *const counts);
 
 void av1_encode_mv(AV1_COMP *cpi, aom_writer *w, const MV *mv, const MV *ref,