From 8f4d072a612aa46b3412b29507578aa46f180877 Mon Sep 17 00:00:00 2001 From: Jan Kiene Date: Mon, 27 Apr 2026 13:40:39 +0200 Subject: [PATCH 1/4] change CI ref --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3f84bc99f..0dff70739 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,7 +1,7 @@ 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 print-artifact-sizes # 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 -- GitLab From 60d2db13f6de45c433ad7e9e2f86e9ef1de6e108 Mon Sep 17 00:00:00 2001 From: Jan Kiene Date: Mon, 18 May 2026 14:33:22 +0200 Subject: [PATCH 2/4] change CI and scripts ref --- .gitlab-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0dff70739..4c2dccae5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,7 +1,7 @@ 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 print-artifact-sizes + IVAS_CODEC_CI_REF: &IVAS_CODEC_CI_REF renderer-regression-test # 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 @@ -9,6 +9,7 @@ variables: # 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 # DISABLE_HRTF: "true" + BASOP_CI_SCRIPTS_BRANCH: "ci/ref_and_dut_renderer_paths_for_pytests" # all CI code and config is included from https://forge.3gpp.org/rep/ivas-codec-pc/ivas-codec-ci include: -- GitLab From cba351257b7dc87e4c74f2b8181ee7e77a4a117d Mon Sep 17 00:00:00 2001 From: Jan Kiene Date: Mon, 18 May 2026 14:54:22 +0200 Subject: [PATCH 3/4] temp: change renderer output to test new regression test --- lib_rend/lib_rend_fx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib_rend/lib_rend_fx.c b/lib_rend/lib_rend_fx.c index b9d6a93af..113c6ea00 100644 --- a/lib_rend/lib_rend_fx.c +++ b/lib_rend/lib_rend_fx.c @@ -8351,7 +8351,7 @@ static ivas_error renderInputMc( } mcInput->base.numNewSamplesPerChannel = 0; move32(); - v_multc_fx( inAudio.data_fx, mcInput->base.gain_fx, inAudio.data_fx, inAudio.config.numSamplesPerChannel * inAudio.config.numChannels ); + v_multc_fx( inAudio.data_fx, (Word32) 0, inAudio.data_fx, inAudio.config.numSamplesPerChannel * inAudio.config.numChannels ); *outAudio.pq_fact = sub( *outAudio.pq_fact, Q1 ); // reducing the Q by 1 compensating for the v_mult_fx done move16(); -- GitLab From 4d20d63699e66c784fa643302ab58bb16fc232cd Mon Sep 17 00:00:00 2001 From: Jan Kiene Date: Wed, 20 May 2026 09:43:36 +0200 Subject: [PATCH 4/4] change CI and scripts ref --- .gitlab-ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4c2dccae5..479f4853d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,7 +1,7 @@ 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 renderer-regression-test + IVAS_CODEC_CI_REF: &IVAS_CODEC_CI_REF ltv-test-with-o2-for-mrs # 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 @@ -9,7 +9,6 @@ variables: # 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 # DISABLE_HRTF: "true" - BASOP_CI_SCRIPTS_BRANCH: "ci/ref_and_dut_renderer_paths_for_pytests" # all CI code and config is included from https://forge.3gpp.org/rep/ivas-codec-pc/ivas-codec-ci include: -- GitLab