From 88f6a8925a2d86f1e73966705e80de3823f2d28a Mon Sep 17 00:00:00 2001 From: Johann Date: Mon, 4 Nov 2019 14:59:19 -0600 Subject: [PATCH] remove unused mbmi parameter BUG=webm:1612 Change-Id: I0f982d8269ec50a767efc222d958d37a55d5c77f --- vp8/decoder/decodemv.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/vp8/decoder/decodemv.c b/vp8/decoder/decodemv.c index 8e9600c..9437385 100644 --- a/vp8/decoder/decodemv.c +++ b/vp8/decoder/decodemv.c @@ -485,10 +485,7 @@ static void read_mb_features(vp8_reader *r, MB_MODE_INFO *mi, MACROBLOCKD *x) { } } -static void decode_mb_mode_mvs(VP8D_COMP *pbi, MODE_INFO *mi, - MB_MODE_INFO *mbmi) { - (void)mbmi; - +static void decode_mb_mode_mvs(VP8D_COMP *pbi, MODE_INFO *mi) { /* Read the Macroblock segmentation map if it is being updated explicitly * this frame (reset to 0 above by default) * By default on a key frame reset all MBs to segment 0 @@ -537,7 +534,7 @@ void vp8_decode_mode_mvs(VP8D_COMP *pbi) { int mb_num = mb_row * pbi->common.mb_cols + mb_col; #endif - decode_mb_mode_mvs(pbi, mi, &mi->mbmi); + decode_mb_mode_mvs(pbi, mi); #if CONFIG_ERROR_CONCEALMENT /* look for corruption. set mvs_corrupt_from_mb to the current -- 2.7.4