[isp] Fix mistake in isp cbf writing. Loop index was increased twice.

This commit is contained in:
siivonek 2022-08-30 12:06:43 +03:00 committed by Marko Viitanen
parent 4a21039e23
commit 33ae02aae0

View file

@ -1706,7 +1706,7 @@ void uvg_intra_recon_cu(
uvg_quantize_lcu_residual(state, true, false, false,
&split_loc, depth, cur_cu, lcu,
false, tree_type);
search_data->best_isp_cbfs |= cbf_is_set(cur_cu->cbf, depth, COLOR_Y) << (i++);
search_data->best_isp_cbfs |= cbf_is_set(cur_cu->cbf, depth, COLOR_Y) << i;
}
}
const bool has_luma = recon_luma && search_data->pred_cu.intra.isp_mode == ISP_MODE_NO_ISP;