From de3fc51712e6c3a72207f0054814e3c36211e852 Mon Sep 17 00:00:00 2001 From: Alex Converse <aconverse@google.com> Date: Tue, 25 Mar 2014 14:15:42 -0700 Subject: [PATCH] Add consts to cost_mv_ref. Change-Id: Ie5dadb5c2bcfe80a703edb58a71dc453644c9ade --- vp9/encoder/vp9_rdopt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vp9/encoder/vp9_rdopt.c b/vp9/encoder/vp9_rdopt.c index 93f9999ba8..1810c5bd77 100644 --- a/vp9/encoder/vp9_rdopt.c +++ b/vp9/encoder/vp9_rdopt.c @@ -1450,9 +1450,9 @@ static void choose_intra_uv_mode(VP9_COMP *cpi, PICK_MODE_CONTEXT *ctx, *mode_uv = x->e_mbd.mi_8x8[0]->mbmi.uv_mode; } -static int cost_mv_ref(VP9_COMP *cpi, MB_PREDICTION_MODE mode, +static int cost_mv_ref(const VP9_COMP *cpi, MB_PREDICTION_MODE mode, int mode_context) { - MACROBLOCK *const x = &cpi->mb; + const MACROBLOCK *const x = &cpi->mb; const int segment_id = x->e_mbd.mi_8x8[0]->mbmi.segment_id; // Don't account for mode here if segment skip is enabled. -- GitLab