From ddd187e70311a091281b0c5dbe15d8f26bbd1162 Mon Sep 17 00:00:00 2001 From: Sandesh Venkatesh Date: Thu, 10 Oct 2024 18:35:32 +0530 Subject: [PATCH] Fix for 3GPP issue 881: Presence of a tone during silence part --- lib_com/swb_tbe_com_fx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib_com/swb_tbe_com_fx.c b/lib_com/swb_tbe_com_fx.c index d13d56705..f70b82875 100644 --- a/lib_com/swb_tbe_com_fx.c +++ b/lib_com/swb_tbe_com_fx.c @@ -3122,7 +3122,7 @@ void GenShapedSHBExcitation_ivas_fx( move32(); FOR( k = 0; k < L_FRAME16k; k++ ) { - White_exc16k_32[k] = L_mult( White_exc16k[k], round_fx( temp_pow ) ); + White_exc16k_32[k] = Mpy_32_16_1( temp_pow, White_exc16k[k] ); move32(); White_exc16k[k] = round_fx( L_shl( White_exc16k_32[k], *Q_bwe_exc - NOISE_QADJ ) ); // Q_bwe_exc - NOISE_QADJ move16(); -- GitLab