Commit 9de933b171 for aom
commit 9de933b171289e5a6afc93167e91bea3b0dbc1f4
Author: Marco Paniconi <marpan@google.com>
Date: Wed Feb 18 23:18:33 2026 -0800
Disable denoiser for spatial layers.
Re-enable when more testing is done.
Bug: 485332522
Change-Id: If6afcbb2dab49a05e1b5dabafda7acb53182dceb
diff --git a/av1/av1_cx_iface.c b/av1/av1_cx_iface.c
index 23c02f8cc8..5727aeadaf 100644
--- a/av1/av1_cx_iface.c
+++ b/av1/av1_cx_iface.c
@@ -1726,6 +1726,11 @@ static aom_codec_err_t ctrl_get_baseline_gf_interval(aom_codec_alg_priv_t *ctx,
}
static aom_codec_err_t update_encoder_cfg(aom_codec_alg_priv_t *ctx) {
+ // Disable denoiser for spatial layers. Bug: 485332522.
+ // TODO: bug 485332522 - Disable denoiser for spatial layers until
+ // more testing is done
+ if (ctx->ppi->cpi->svc.number_spatial_layers > 1)
+ ctx->extra_cfg.noise_sensitivity = 0;
set_encoder_config(&ctx->oxcf, &ctx->cfg, &ctx->extra_cfg);
av1_check_fpmt_config(ctx->ppi, &ctx->oxcf);
bool is_sb_size_changed = false;