Commit ab7b7a90 authored by Anika Treffehn's avatar Anika Treffehn
Browse files

fixed naming of EVS conditions with different bitrates for channels

parent 0d0d3a91
Loading
Loading
Loading
Loading
+4 −5
Original line number Diff line number Diff line
@@ -203,12 +203,11 @@ def get_processing_chain(
) -> dict:
    """Mapping from test configuration to condition and postprocessing keyword arguments"""
    name = f"{condition}"
    # TODO related to naming TODO above
    if bitrate:
        if multiple_bitrates:
            if isinstance(bitrate, list):
                name += f"_{sum(bitrate)}"
            else:
            if multiple_bitrates is True:
                name += f"_{bitrate}"

    chain = {