From c6183e3c2a187a1fccea2c79d4772eeedbeb6574 Mon Sep 17 00:00:00 2001 From: Archit Tamarapu Date: Tue, 26 Aug 2025 16:59:30 +0200 Subject: [PATCH] [fix] -stereo_dmx_evs is added with -stereo, preserve the first --- ivas_processing_scripts/processing/ivas.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ivas_processing_scripts/processing/ivas.py b/ivas_processing_scripts/processing/ivas.py index 4fe80986..9562c44b 100755 --- a/ivas_processing_scripts/processing/ivas.py +++ b/ivas_processing_scripts/processing/ivas.py @@ -227,6 +227,12 @@ class IVAS(Processing): ] ) + # check for special case of -stereo_dmx_evs + if "-stereo" in cmd and "-stereo_dmx_evs" in cmd: + # 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" + run(cmd, logger=logger) def simulate_tx( -- GitLab