]> granicus.if.org Git - libvpx/commitdiff
Rename aom_write_nmv_probs as av1_write_nmv_probs
authorJingning Han <jingning@google.com>
Fri, 30 Sep 2016 17:33:50 +0000 (10:33 -0700)
committerJingning Han <jingning@google.com>
Fri, 30 Sep 2016 17:34:33 +0000 (10:34 -0700)
Change-Id: Ia33ce4918d3d40eba331f81909f3f1f0f3ab7a58

av1/encoder/bitstream.c
av1/encoder/encodemv.c
av1/encoder/encodemv.h

index 7ef24bb3352ea95571411bc1b782f7d45a5229be..ed032f66c1a2c8456e81c74a3cdd3faf2543c71c 100644 (file)
@@ -3511,7 +3511,7 @@ static uint32_t write_compressed_header(AV1_COMP *cpi, uint8_t *data) {
       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
index 00a95ee49781c3a38a429edc46ba2e0e0c5f9d57..bcd9b11c0264204896bc8eaa6d268dd35219abf2 100644 (file)
@@ -153,7 +153,7 @@ static void write_mv_update(const aom_tree_index *tree,
     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
index d58633d3769e023d146f8092e5b3f880aabcd1e8..543064e663c067aab51ee59e58a8a94e9bf7cee9 100644 (file)
@@ -20,7 +20,7 @@ extern "C" {
 
 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,