From abcc1940c73a1375aee98746f1f8aba32c978a38 Mon Sep 17 00:00:00 2001 From: Sandesh Venkatesh Date: Tue, 8 Jul 2025 15:10:41 +0530 Subject: [PATCH] MSAN Fix: initialising tcx_mdct_window_length --- lib_dec/init_dec_fx.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib_dec/init_dec_fx.c b/lib_dec/init_dec_fx.c index 11c108380..7ee1b8c34 100644 --- a/lib_dec/init_dec_fx.c +++ b/lib_dec/init_dec_fx.c @@ -1558,6 +1558,8 @@ ivas_error init_decoder_ivas_fx( { return ( IVAS_ERROR( IVAS_ERR_FAILED_ALLOC, "Can not allocate memory for hTcxCfg\n" ) ); } + st_fx->hTcxCfg->tcx_mdct_window_length = L_FRAME32k / 2; + move16(); } ELSE { -- GitLab