From 9f6237d8bf3647a267f23b5e5a51d4766eb5f39c Mon Sep 17 00:00:00 2001 From: Sandesh Venkatesh Date: Tue, 12 Nov 2024 14:04:04 +0530 Subject: [PATCH] Fix for high Max absolute differences observed with issue 784 fix [x] link #784 --- lib_dec/ivas_ism_param_dec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib_dec/ivas_ism_param_dec.c b/lib_dec/ivas_ism_param_dec.c index 2c72c6b48..19fa6bc62 100644 --- a/lib_dec/ivas_ism_param_dec.c +++ b/lib_dec/ivas_ism_param_dec.c @@ -2110,7 +2110,7 @@ void ivas_param_ism_dec_digest_tc_fx( hSpatParamRendCom = st_ivas->hSpatParamRendCom; assert( hSpatParamRendCom ); output_frame = imult1616( nCldfbSlots, hSpatParamRendCom->num_freq_bands ); - fade_len = shr( output_frame, 2 ); + fade_len = shr( output_frame, 1 ); nchan_transport = st_ivas->nchan_transport; move16(); -- GitLab