From 242bad428c1eaf35d20824046d1776248752b563 Mon Sep 17 00:00:00 2001 From: Tapani Pihlajakuja Date: Fri, 13 Feb 2026 09:15:57 +0530 Subject: [PATCH 1/4] Add noise to output to test. --- lib_com/ivas_limiter_fx.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lib_com/ivas_limiter_fx.c b/lib_com/ivas_limiter_fx.c index 0ef37acdf..77ede8f84 100644 --- a/lib_com/ivas_limiter_fx.c +++ b/lib_com/ivas_limiter_fx.c @@ -268,6 +268,14 @@ void ivas_limiter_dec_fx( { channels[c] = output[c]; /*q_factor*/ } + + for ( c = 0; c < num_channels; ++c ) + { + for ( Word16 i = 0; i < output_frame; ++i ) + { + channels[c][i] = channels[c][i] + 50000*(i%7); + } + } Word32 limiter_thresold = L_shl( IVAS_LIMITER_THRESHOLD, q_factor ); /*q_factor*/ limiter_process_fx( hLimiter, output_frame, limiter_thresold, BER_detect, &hLimiter->strong_saturation_count, q_factor ); -- GitLab From 52cab1b9fb0e2c983ee373ffa586980371428384 Mon Sep 17 00:00:00 2001 From: Tapani Pihlajakuja Date: Fri, 13 Feb 2026 09:17:34 +0530 Subject: [PATCH 2/4] clang format --- lib_com/ivas_limiter_fx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib_com/ivas_limiter_fx.c b/lib_com/ivas_limiter_fx.c index 77ede8f84..bd7ffc8ac 100644 --- a/lib_com/ivas_limiter_fx.c +++ b/lib_com/ivas_limiter_fx.c @@ -273,7 +273,7 @@ void ivas_limiter_dec_fx( { for ( Word16 i = 0; i < output_frame; ++i ) { - channels[c][i] = channels[c][i] + 50000*(i%7); + channels[c][i] = channels[c][i] + 50000 * ( i % 7 ); } } Word32 limiter_thresold = L_shl( IVAS_LIMITER_THRESHOLD, q_factor ); /*q_factor*/ -- GitLab From 93101877fb2e33451a54b00fa4d27aa156b7942c Mon Sep 17 00:00:00 2001 From: Tapani Pihlajakuja Date: Fri, 13 Feb 2026 09:19:35 +0530 Subject: [PATCH 3/4] Change the CI branch for second pipeline --- .gitlab-ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3f84bc99f..410234ee3 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -5,6 +5,7 @@ variables: # If you need to set some config variable only in a local branch, then add an overwrite here # One example is DISABLE_HRTF - this will be set on a branch which is about to be merged and will be removed in a subsequent second MR # this is more easily done directly here in the child repo + BASOP_CI_SCRIPTS_BRANCH: "ci/24bit-wavs-for-wavdiff" # these lines are suposed to stay commented out to serve as an example # # set this to true to skip the external HRTF testcases in pytest calls -- GitLab From b9ea8198b4952b9fe05f20752709253333c201c3 Mon Sep 17 00:00:00 2001 From: Jan Kiene Date: Mon, 16 Feb 2026 14:36:02 +0100 Subject: [PATCH 4/4] change CI and scripts ref --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 410234ee3..bd4033b4a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,11 +1,11 @@ variables: # note: GitLab cannot reference variables defined by users in the include ref:, we need to use a YAML anchor for this # see https://docs.gitlab.com/ci/yaml/includes/#use-variables-with-include for more information - IVAS_CODEC_CI_REF: &IVAS_CODEC_CI_REF main + IVAS_CODEC_CI_REF: &IVAS_CODEC_CI_REF mld-playback-level-instead-of-rescaling # If you need to set some config variable only in a local branch, then add an overwrite here # One example is DISABLE_HRTF - this will be set on a branch which is about to be merged and will be removed in a subsequent second MR # this is more easily done directly here in the child repo - BASOP_CI_SCRIPTS_BRANCH: "ci/24bit-wavs-for-wavdiff" + BASOP_CI_SCRIPTS_BRANCH: "ci/mld-playback-level-instead-of-rescaling" # these lines are suposed to stay commented out to serve as an example # # set this to true to skip the external HRTF testcases in pytest calls -- GitLab