From 071e71bc8a0a221ae139d836bfc65c74b2981263 Mon Sep 17 00:00:00 2001 From: Sandesh Venkatesh Date: Fri, 6 Jun 2025 16:40:25 +0530 Subject: [PATCH] Fix for 3GPP issue 1502: MC 512 decoder with headtracking has high frequency artifacts (issue not seen w/o headtracking) Link #1502 #1040 #1348 --- lib_dec/dec_tcx_fx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib_dec/dec_tcx_fx.c b/lib_dec/dec_tcx_fx.c index 883024002..0cb470adc 100644 --- a/lib_dec/dec_tcx_fx.c +++ b/lib_dec/dec_tcx_fx.c @@ -2879,7 +2879,7 @@ void IMDCT_ivas_fx( { Word16 q_old_out = q_win; move16(); - edct_fx( x_fx, xn_buf_fx_32 + add( shr( overlap, 1 ), nz ), L_frame, &q_xn_buf_fx_32 ); + edct_ivas_fx( x_fx, xn_buf_fx_32 + add( shr( overlap, 1 ), nz ), L_frame, &q_xn_buf_fx_32 ); Word16 res_m, res_e; res_e = 0; move16(); -- GitLab