From 211901e3cdd524c03c565c7f92662e695629732a Mon Sep 17 00:00:00 2001 From: malenov Date: Tue, 10 Jun 2025 13:09:47 +0200 Subject: [PATCH 1/3] add missing pop_wmops() --- lib_com/options.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lib_com/options.h b/lib_com/options.h index cd57657b0..0da972932 100644 --- a/lib_com/options.h +++ b/lib_com/options.h @@ -101,12 +101,10 @@ #define VEC_ARITH_OPT_v1 #define FIX_1486_IND_SHB_RES /* VA: Fix for issue 1486: align the usage of IND_SHB_RES_GS indices with float code */ #define FIX_1511_POC_RENORM /* NTT: Fix for issue 1511: Renorm for POC. */ - #define TEST_HR #define REMOVE_EVS_DUPLICATES /* remove core-coder duplicated functions, ACELP low-band decoder */ - #define FIX_1713_EXP /* VA: proposed correction to exp in ic-BWE*/ - #define FIX_1733_CLDFB_BUG +#define FIX_1740_MISING_POP_WMOPS /* VA: fix issue 1740: missing pop_wmops() */ #endif -- GitLab From eb2cb6cfd72389bd3d787c63b8d13b0e453241d8 Mon Sep 17 00:00:00 2001 From: malenov Date: Wed, 11 Jun 2025 12:43:35 +0200 Subject: [PATCH 2/3] fix missing pop_wmops() --- lib_rend/lib_rend_fx.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib_rend/lib_rend_fx.c b/lib_rend/lib_rend_fx.c index e92922964..b46d13610 100644 --- a/lib_rend/lib_rend_fx.c +++ b/lib_rend/lib_rend_fx.c @@ -5715,6 +5715,9 @@ static ivas_error renderLfeToBinaural_fx( ELSE { /* no LFE to render */ +#ifdef FIX_1740_MISING_POP_WMOPS + pop_wmops(); +#endif return IVAS_ERR_OK; } -- GitLab From 131aedf4654587a27ab2e4ca651a62c150ebf55b Mon Sep 17 00:00:00 2001 From: malenov Date: Wed, 11 Jun 2025 12:49:50 +0200 Subject: [PATCH 3/3] fix missing pop_wmops() --- lib_rend/lib_rend_fx.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib_rend/lib_rend_fx.c b/lib_rend/lib_rend_fx.c index e92922964..b46d13610 100644 --- a/lib_rend/lib_rend_fx.c +++ b/lib_rend/lib_rend_fx.c @@ -5715,6 +5715,9 @@ static ivas_error renderLfeToBinaural_fx( ELSE { /* no LFE to render */ +#ifdef FIX_1740_MISING_POP_WMOPS + pop_wmops(); +#endif return IVAS_ERR_OK; } -- GitLab