Commit 3b7084e0 authored by Vinit Veera's avatar Vinit Veera
Browse files

Fixed the handing of conditions with no bit rates.

parent b827bf8a
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -58,7 +58,7 @@ def init_processing_chains(cfg: TestConfig) -> None:
        # TODO we may need to change this to ensure it is only one value for IVAS and a possible list for EVS
        # condition naming will also need to be checked since we rename to {cond_name}_{bitrate}
        # this may not be desired
        if len(bitrates) > 1:
        if bitrates is not None and len(bitrates) > 1:
            multiple_bitrates_flag = True
        else:
            multiple_bitrates_flag = False