From 6ac92e1bc8ca3c55ff62bd21e09a7a261c5ccae0 Mon Sep 17 00:00:00 2001 From: Markus Multrus Date: Wed, 22 Apr 2026 09:53:08 +0200 Subject: [PATCH 1/2] replace IF() by if() --- lib_enc/tcx_utils_enc_fx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib_enc/tcx_utils_enc_fx.c b/lib_enc/tcx_utils_enc_fx.c index 74b2b0feb..30834c38f 100644 --- a/lib_enc/tcx_utils_enc_fx.c +++ b/lib_enc/tcx_utils_enc_fx.c @@ -1975,7 +1975,7 @@ Word16 tcx_scalar_quantization_rateloop_fx( saturated = 0; move16(); #else - IF( NE_16( element_mode, EVS_MONO ) ) + if( NE_16( element_mode, EVS_MONO ) ) { saturated = 0; move16(); -- GitLab From 864ce20871c8ea61027e03406cd0eb4141042412 Mon Sep 17 00:00:00 2001 From: Markus Multrus Date: Wed, 22 Apr 2026 09:58:04 +0200 Subject: [PATCH 2/2] formatting --- lib_enc/tcx_utils_enc_fx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib_enc/tcx_utils_enc_fx.c b/lib_enc/tcx_utils_enc_fx.c index 30834c38f..0e38df6b2 100644 --- a/lib_enc/tcx_utils_enc_fx.c +++ b/lib_enc/tcx_utils_enc_fx.c @@ -1975,7 +1975,7 @@ Word16 tcx_scalar_quantization_rateloop_fx( saturated = 0; move16(); #else - if( NE_16( element_mode, EVS_MONO ) ) + if ( NE_16( element_mode, EVS_MONO ) ) { saturated = 0; move16(); -- GitLab