From 111d5643ecef03530b44048a4fad2dc8e82e7d23 Mon Sep 17 00:00:00 2001 From: Sandesh Venkatesh Date: Tue, 19 Nov 2024 10:23:41 +0530 Subject: [PATCH] Fix for 3GPP issue 1033: OMASA-4 at 192 kbps exhibits discontinuity link #1033 --- lib_dec/dec_higher_acelp_fx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib_dec/dec_higher_acelp_fx.c b/lib_dec/dec_higher_acelp_fx.c index febbaa477..ea1501a7c 100644 --- a/lib_dec/dec_higher_acelp_fx.c +++ b/lib_dec/dec_higher_acelp_fx.c @@ -219,7 +219,7 @@ void transf_cdbk_dec_fx( } } - st_fx->last_code_preq = extract_h( code_preQ[L_SUBFR - 1] ); // q_Code_preQ-16 + st_fx->last_code_preq = code_preQ[L_SUBFR - 1]; // q_Code_preQ move16(); #endif PREEMPH_FX( code_preQ, FAC_PRE_AVQ_FX, L_SUBFR, &st_fx->mem_preemp_preQ_fx ); -- GitLab