]> granicus.if.org Git - libvpx/commitdiff
Remove cpi parameter from update_mvcount()
authorScott LaVarnway <slavarnway@google.com>
Tue, 4 Dec 2012 23:43:25 +0000 (15:43 -0800)
committerScott LaVarnway <slavarnway@google.com>
Tue, 4 Dec 2012 23:43:25 +0000 (15:43 -0800)
cpi is no longer used .

Change-Id: Ie86b994059e506cc1944212e12d4f75c041c1d15

vp8/encoder/pickinter.c
vp8/encoder/rdopt.c

index e4574f298487348b0a904d3b906ce653186e596f..efa7d657e7c8b246d026594343d6c52041bd784b 100644 (file)
@@ -389,7 +389,7 @@ static void pick_intra_mbuv_mode(MACROBLOCK *mb)
 
 }
 
-static void update_mvcount(VP8_COMP *cpi, MACROBLOCK *x, int_mv *best_ref_mv)
+static void update_mvcount(MACROBLOCK *x, int_mv *best_ref_mv)
 {
     MACROBLOCKD *xd = &x->e_mbd;
     /* Split MV modes currently not supported when RD is nopt enabled,
@@ -1241,7 +1241,7 @@ void vp8_pick_inter_mode(VP8_COMP *cpi, MACROBLOCK *x, int recon_yoffset,
       != cpi->common.ref_frame_sign_bias[xd->mode_info_context->mbmi.ref_frame])
         best_ref_mv.as_int = best_ref_mv_sb[!sign_bias].as_int;
 
-    update_mvcount(cpi, x, &best_ref_mv);
+    update_mvcount(x, &best_ref_mv);
 }
 
 
index 15055f046445d6f5cd2afb8178b32a2b337d2099..d80794ff0c5b03ff6796a4104b9f38d8c8b2ffe0 100644 (file)
@@ -1728,7 +1728,7 @@ void vp8_cal_sad(VP8_COMP *cpi, MACROBLOCKD *xd, MACROBLOCK *x, int recon_yoffse
     }
 }
 
-static void rd_update_mvcount(VP8_COMP *cpi, MACROBLOCK *x, int_mv *best_ref_mv)
+static void rd_update_mvcount(MACROBLOCK *x, int_mv *best_ref_mv)
 {
     if (x->e_mbd.mode_info_context->mbmi.mode == SPLITMV)
     {
@@ -2603,7 +2603,7 @@ void vp8_rd_pick_inter_mode(VP8_COMP *cpi, MACROBLOCK *x, int recon_yoffset,
         != cpi->common.ref_frame_sign_bias[xd->mode_info_context->mbmi.ref_frame])
         best_ref_mv.as_int = best_ref_mv_sb[!sign_bias].as_int;
 
-    rd_update_mvcount(cpi, x, &best_ref_mv);
+    rd_update_mvcount(x, &best_ref_mv);
 }
 
 void vp8_rd_pick_intra_mode(MACROBLOCK *x, int *rate_)