From 39612408fbe4bd7972d2337d1666824bce27e9cb Mon Sep 17 00:00:00 2001 From: Tapani Pihlajakuja Date: Wed, 21 Jan 2026 13:04:32 +0200 Subject: [PATCH 1/3] Test addition MLD into pipeline. --- .gitlab-ci.yml | 2 +- lib_com/ivas_rom_com.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 81e3d0a3d6..e1185d7575 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 add-mld-stats-to-float-mr-pipeline # 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 diff --git a/lib_com/ivas_rom_com.c b/lib_com/ivas_rom_com.c index 429ccaa64b..f600480f71 100644 --- a/lib_com/ivas_rom_com.c +++ b/lib_com/ivas_rom_com.c @@ -2696,7 +2696,7 @@ const int16_t mcmasa_bits[IVAS_NUM_ACTIVE_BRATES] = const uint8_t masa_nbands[IVAS_NUM_ACTIVE_BRATES] = { - 5, 5, 5, 5, 5, 5, 5, 5, 8, 12, 18, 24, 24, 24 + 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 24, 24, 24 }; const uint8_t masa_joined_nbands[IVAS_NUM_ACTIVE_BRATES] = @@ -2711,7 +2711,7 @@ const uint8_t masa_twodir_bands[IVAS_NUM_ACTIVE_BRATES] = const uint8_t masa_twodir_bands_joined[IVAS_NUM_ACTIVE_BRATES] = { - 0, 0, 0, 0, 0, 2, 2, 3, 4, 6, 8, 9, 12, MASA_MAXIMUM_TWO_DIR_BANDS + 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 9, 12, MASA_MAXIMUM_TWO_DIR_BANDS }; -- GitLab From 50151bff0e12b0349b48824f798c19a5d945ab73 Mon Sep 17 00:00:00 2001 From: Tapani Pihlajakuja Date: Wed, 21 Jan 2026 13:14:37 +0200 Subject: [PATCH 2/3] Minor change to avoid crashes. --- lib_com/ivas_rom_com.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib_com/ivas_rom_com.c b/lib_com/ivas_rom_com.c index f600480f71..4c8f816a2b 100644 --- a/lib_com/ivas_rom_com.c +++ b/lib_com/ivas_rom_com.c @@ -2706,7 +2706,7 @@ const uint8_t masa_joined_nbands[IVAS_NUM_ACTIVE_BRATES] = const uint8_t masa_twodir_bands[IVAS_NUM_ACTIVE_BRATES] = { - 0, 0, 0, 0, 0, 1, 1, 1, 3, 4, 6, 6, 9, 24 + 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 24 }; const uint8_t masa_twodir_bands_joined[IVAS_NUM_ACTIVE_BRATES] = -- GitLab From 3a419d032992129205131741dcd27f1162e43183 Mon Sep 17 00:00:00 2001 From: Tapani Pihlajakuja Date: Wed, 21 Jan 2026 14:26:15 +0200 Subject: [PATCH 3/3] Reduce changes --- lib_com/ivas_rom_com.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib_com/ivas_rom_com.c b/lib_com/ivas_rom_com.c index 4c8f816a2b..4042c826cd 100644 --- a/lib_com/ivas_rom_com.c +++ b/lib_com/ivas_rom_com.c @@ -2696,7 +2696,7 @@ const int16_t mcmasa_bits[IVAS_NUM_ACTIVE_BRATES] = const uint8_t masa_nbands[IVAS_NUM_ACTIVE_BRATES] = { - 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 24, 24, 24 + 5, 5, 5, 5, 5, 5, 5, 5, 5, 8, 18, 24, 24, 24 }; const uint8_t masa_joined_nbands[IVAS_NUM_ACTIVE_BRATES] = @@ -2706,12 +2706,12 @@ const uint8_t masa_joined_nbands[IVAS_NUM_ACTIVE_BRATES] = const uint8_t masa_twodir_bands[IVAS_NUM_ACTIVE_BRATES] = { - 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 24 + 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 6, 6, 9, 24 }; const uint8_t masa_twodir_bands_joined[IVAS_NUM_ACTIVE_BRATES] = { - 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 9, 12, MASA_MAXIMUM_TWO_DIR_BANDS + 0, 0, 0, 0, 0, 2, 2, 3, 4, 6, 8, 9, 12, MASA_MAXIMUM_TWO_DIR_BANDS }; -- GitLab