Commit 7a35ef26 authored by Archit Tamarapu's avatar Archit Tamarapu
Browse files

[fix] trigger usage of EVS decoder commandline in case -stereo_dmx_evs is specified

parent e2169125
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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),