Loading ivas_processing_scripts/processing/ivas.py +9 −5 Original line number Diff line number Diff line Loading @@ -80,10 +80,14 @@ class IVAS(Processing): ) # TODO: if tx_fer or tx_jbm test for existence of bitstream processing binaries and # existence of error pattern files (if given) already here if self.tx_jbm is not None: validate_network_simulator(self.tx_jbm["error_pattern"], self.tx_jbm["error_profile"], self.tx_jbm["n_frames_per_paket"]) if self.tx is not None: if self.tx.get("type", None) == "JBM": validate_network_simulator(self.tx["error_pattern"], self.tx["error_profile"], self.tx["n_frames_per_paket"]) elif self.tx.get("type", None) == "FER": # TODO pass def process( self, in_file: Path, out_file: Path, in_meta, logger: logging.Logger Loading Loading
ivas_processing_scripts/processing/ivas.py +9 −5 Original line number Diff line number Diff line Loading @@ -80,10 +80,14 @@ class IVAS(Processing): ) # TODO: if tx_fer or tx_jbm test for existence of bitstream processing binaries and # existence of error pattern files (if given) already here if self.tx_jbm is not None: validate_network_simulator(self.tx_jbm["error_pattern"], self.tx_jbm["error_profile"], self.tx_jbm["n_frames_per_paket"]) if self.tx is not None: if self.tx.get("type", None) == "JBM": validate_network_simulator(self.tx["error_pattern"], self.tx["error_profile"], self.tx["n_frames_per_paket"]) elif self.tx.get("type", None) == "FER": # TODO pass def process( self, in_file: Path, out_file: Path, in_meta, logger: logging.Logger Loading