Fix CONFIG_TUNE_BUTTERAUGLI build after rebase Change-Id: I2f8cd7b9ff4321a03859e79d63c9d8e9d9eeb820
diff --git a/av1/encoder/tune_butteraugli.c b/av1/encoder/tune_butteraugli.c index b8c64b9..d4a6319 100644 --- a/av1/encoder/tune_butteraugli.c +++ b/av1/encoder/tune_butteraugli.c
@@ -27,7 +27,7 @@ const YV12_BUFFER_CONFIG *recon, const double K) { AV1_COMMON *const cm = &cpi->common; - SequenceHeader *const seq_params = &cm->seq_params; + SequenceHeader *const seq_params = cm->seq_params; const CommonModeInfoParams *const mi_params = &cm->mi_params; const aom_color_range_t color_range = seq_params->color_range != 0 ? AOM_CR_FULL_RANGE : AOM_CR_STUDIO_RANGE; @@ -307,7 +307,7 @@ av1_set_speed_features_qindex_dependent(cpi, oxcf->speed); if (q_cfg->deltaq_mode != NO_DELTA_Q || q_cfg->enable_chroma_deltaq) av1_init_quantizer(&cpi->enc_quant_dequant_params, &cm->quant_params, - cm->seq_params.bit_depth); + cm->seq_params->bit_depth); av1_set_variance_partition_thresholds(cpi, q_index, 0); av1_encode_frame(cpi);