From 607b3d2168e1482fece9feb90695c513fdb8b86a Mon Sep 17 00:00:00 2001 From: Jan Kiene Date: Tue, 30 Sep 2025 14:09:12 +0200 Subject: [PATCH 1/3] 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 93d77386f..eccef4895 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 kiene/fix-ivas-float-update-complexity-measurements include: - project: ivas-codec-pc/ivas-codec-ci -- GitLab From 82ef18cd5ca1266951dbf0262eaf0aaa3da9831a Mon Sep 17 00:00:00 2001 From: Jan Kiene Date: Tue, 30 Sep 2025 14:17:28 +0200 Subject: [PATCH 2/3] fix instrumented build --- lib_dec/lib_dec.c | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/lib_dec/lib_dec.c b/lib_dec/lib_dec.c index 82de3a83e..81545fc6b 100644 --- a/lib_dec/lib_dec.c +++ b/lib_dec/lib_dec.c @@ -1656,9 +1656,13 @@ static ivas_error IVAS_DEC_GetRenderedSamples( st_ivas = hIvasDec->st_ivas; #ifdef FIX_HRTF_LOAD - // temp code to make HRTF changes working in the old API structure - uint16_t nSamplesRendered_loop = 0; - uint8_t nOutChannels = (uint8_t) st_ivas->hDecoderConfig->nchan_out; + /* temp code to make HRTF changes working in the old API structure */ + uint16_t nSamplesRendered_loop; + uint8_t nOutChannels; + + nSamplesRendered_loop = 0; + nOutChannels = (uint8_t) st_ivas->hDecoderConfig->nchan_out; + hIvasDec->hasBeenFedFrame = false; /* check for possible flushed samples from a rate switch */ -- GitLab From ea5f2d20326eb7af94cde22a59b7df86c58c407d Mon Sep 17 00:00:00 2001 From: Jan Kiene Date: Tue, 30 Sep 2025 14:42:49 +0200 Subject: [PATCH 3/3] Revert "change CI ref" This reverts commit 607b3d2168e1482fece9feb90695c513fdb8b86a. --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index eccef4895..93d77386f 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 kiene/fix-ivas-float-update-complexity-measurements + IVAS_CODEC_CI_REF: &IVAS_CODEC_CI_REF main include: - project: ivas-codec-pc/ivas-codec-ci -- GitLab