From: Jingning Han Date: Fri, 30 Sep 2016 17:33:50 +0000 (-0700) Subject: Rename aom_write_nmv_probs as av1_write_nmv_probs X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fd0cf16d7f7dcbece64e6b947e45539f02bec28f;p=libvpx 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 7ef24bb33..ed032f66c 100644 --- a/av1/encoder/bitstream.c +++ b/av1/encoder/bitstream.c @@ -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 diff --git a/av1/encoder/encodemv.c b/av1/encoder/encodemv.c index 00a95ee49..bcd9b11c0 100644 --- a/av1/encoder/encodemv.c +++ b/av1/encoder/encodemv.c @@ -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 diff --git a/av1/encoder/encodemv.h b/av1/encoder/encodemv.h index d58633d37..543064e66 100644 --- a/av1/encoder/encodemv.h +++ b/av1/encoder/encodemv.h @@ -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,