From 87ae6d73d41df2493b2cfff2f70cd354fcbb90b0 Mon Sep 17 00:00:00 2001 From: Yunqing Wang Date: Fri, 14 Nov 2014 16:33:25 -0800 Subject: [PATCH] Code cleanup: remove unused members in RD_OPT These 2 members in RD_OPT were moved to TileDataEnc struct already, and therefore were removed here. Change-Id: I22fee3b67f96e473a58e194a7edc76dbd48bfa04 --- vp9/encoder/vp9_encoder.c | 10 +--------- vp9/encoder/vp9_rd.h | 3 --- 2 files changed, 1 insertion(+), 12 deletions(-) diff --git a/vp9/encoder/vp9_encoder.c b/vp9/encoder/vp9_encoder.c index 06b153d19..9ece2d352 100644 --- a/vp9/encoder/vp9_encoder.c +++ b/vp9/encoder/vp9_encoder.c @@ -1410,7 +1410,7 @@ static void cal_nmvsadcosts_hp(int *mvsadcost[2]) { VP9_COMP *vp9_create_compressor(VP9EncoderConfig *oxcf) { - unsigned int i, j; + unsigned int i; VP9_COMP *const cpi = vpx_memalign(32, sizeof(VP9_COMP)); VP9_COMMON *const cm = cpi != NULL ? &cpi->common : NULL; @@ -1646,14 +1646,6 @@ VP9_COMP *vp9_create_compressor(VP9EncoderConfig *oxcf) { cpi->source_var_thresh = 0; cpi->frames_till_next_var_check = 0; - // Default rd threshold factors for mode selection - for (i = 0; i < BLOCK_SIZES; ++i) { - for (j = 0; j < MAX_MODES; ++j) { - cpi->rd.thresh_freq_fact[i][j] = 32; - cpi->rd.mode_map[i][j] = j; - } - } - #define BFP(BT, SDF, SDAF, VF, SVF, SVAF, SDX3F, SDX8F, SDX4DF)\ cpi->fn_ptr[BT].sdf = SDF; \ cpi->fn_ptr[BT].sdaf = SDAF; \ diff --git a/vp9/encoder/vp9_rd.h b/vp9/encoder/vp9_rd.h index 835882d18..fe000c048 100644 --- a/vp9/encoder/vp9_rd.h +++ b/vp9/encoder/vp9_rd.h @@ -101,9 +101,6 @@ typedef struct RD_OPT { int thresh_mult_sub8x8[MAX_REFS]; int threshes[MAX_SEGMENTS][BLOCK_SIZES][MAX_MODES]; - int thresh_freq_fact[BLOCK_SIZES][MAX_MODES]; - - int mode_map[BLOCK_SIZES][MAX_MODES]; int64_t prediction_type_threshes[MAX_REF_FRAMES][REFERENCE_MODES]; // TODO(agrange): can this overflow? -- 2.40.0