Commit 474a33b2 authored by Jan Kiene's avatar Jan Kiene
Browse files

fix for applying pre pose on transcoding ref as per test plan

parent 5eaafa0a
Loading
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -556,6 +556,8 @@ def get_processing_chain(
                }
            )
        )
        # update name to use correct trajectory
        chain["processes"][-1].name = "ivas_trans_pre"

        tmp_out_fmt = trans_dec_cfg.get("fmt", tmp_out_fmt)

+1 −1
Original line number Diff line number Diff line
@@ -321,7 +321,7 @@ class IVAS(Processing):
        # head tracking trajectory
        if trajectories:
            pre_trj, post_trj = trajectories
            if self.out_fmt.name == "BINAURAL_SPLIT_CODED" and pre_trj:
            if (self.out_fmt.name == "BINAURAL_SPLIT_CODED" or self.name == "ivas_trans_pre") and pre_trj:
                cmd.extend(["-T", str(pre_trj)])
            elif self.out_fmt.name == "BINAURAL" and post_trj:
                cmd.extend(["-T", str(post_trj)])