From 7a35ef267d1cb3a3ed0eec5616c8405a1b955383 Mon Sep 17 00:00:00 2001 From: Archit Tamarapu Date: Tue, 26 Aug 2025 18:05:17 +0200 Subject: [PATCH 1/2] [fix] trigger usage of EVS decoder commandline in case -stereo_dmx_evs is specified --- ivas_processing_scripts/processing/ivas.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ivas_processing_scripts/processing/ivas.py b/ivas_processing_scripts/processing/ivas.py index 9562c44b..28c20718 100755 --- a/ivas_processing_scripts/processing/ivas.py +++ b/ivas_processing_scripts/processing/ivas.py @@ -232,6 +232,7 @@ class IVAS(Processing): # done this way to ensure `output_format` is replaced in the correct position cmd.remove("-stereo_dmx_evs") cmd[cmd.index("-stereo")] = "-stereo_dmx_evs" + self.use_evs_dec = True # signal the decoder to use EVS commandline run(cmd, logger=logger) @@ -392,7 +393,7 @@ class IVAS(Processing): else: output_format = self.out_fmt.name - if output_format == "": + if output_format == "" or getattr(self, "use_evs_dec", None): cmd.extend( [ str(self.out_fs // 1000), -- GitLab From 622a7a8ea1d9990742d05c6b623f3907a78b2049 Mon Sep 17 00:00:00 2001 From: Archit Tamarapu Date: Tue, 26 Aug 2025 18:06:52 +0200 Subject: [PATCH 2/2] [fix] update config --- experiments/characterization/BS1534-19/config/BS1534-19.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/experiments/characterization/BS1534-19/config/BS1534-19.yml b/experiments/characterization/BS1534-19/config/BS1534-19.yml index 55fb2f26..e2789faa 100644 --- a/experiments/characterization/BS1534-19/config/BS1534-19.yml +++ b/experiments/characterization/BS1534-19/config/BS1534-19.yml @@ -106,7 +106,7 @@ conditions_to_generate: opts: - -stereo_dmx_evs dec: - bin: ivas_processing_scripts/bin/IVAS_dec_fx + bin: ivas_processing_scripts/bin/EVS_dec_fx c08: type: ivas ivas_rend: @@ -118,7 +118,7 @@ conditions_to_generate: opts: - -stereo_dmx_evs dec: - bin: ivas_processing_scripts/bin/IVAS_dec_fx + bin: ivas_processing_scripts/bin/EVS_dec_fx ################################################ ### Post-processing -- GitLab