Commit 7a86bda8 authored by Jan Kiene's avatar Jan Kiene
Browse files

do not use upper() on integer value

parent bf80514d
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -452,7 +452,7 @@ class IVAS(Processing):
            if codec := split_rend_cfg.get("codec"):
                print(f"CODEC = {codec.upper()};", file=f)
            if framesize := split_rend_cfg.get("framesize"):
                print(f"FRAMESIZE = {framesize.upper()};", file=f)
                print(f"FRAMESIZE = {framesize};", file=f)

        logger.debug(f"Wrote IVAS renderer config: {cfg_file}")