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

enabled mono to channelbased again

parent 7576a860
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -208,8 +208,6 @@ def render_cba_to_binaural(
def render_cba_to_cba(
    cba_in: audio.ChannelBasedAudio, cba_out: audio.ChannelBasedAudio
) -> None:
    if cba_in.name == "MONO" and cba_out.name != "STEREO":
        raise ValueError(f"Rendering from MONO to {cba_out.name} is not supported.")

    # Stereo to Mono
    if cba_in.name == "STEREO" and cba_out.name == "MONO":