Commit 5f4fc55e authored by Jan Kiene's avatar Jan Kiene
Browse files

put the per-channel SSNR printout into one line

parent 7116adc9
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -102,10 +102,10 @@ def cmp_pcm(
            reason += f" > {mld_lim}"

    if get_ssnr:
        reason += "\n"
        reason += " - "
        for i, s in enumerate(cmp_result["SSNR"], start=1):
            msg = f"Channel {i} SSNR: {s}"
            reason += msg + "\n"
            reason += msg + " - "
            print(msg)

    return output_differs, reason