Commit 9e2784c6 authored by Archit Tamarapu's avatar Archit Tamarapu
Browse files

support framesize in renderer_config from YAML

parent c9903eb1
Loading
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -451,6 +451,8 @@ class IVAS(Processing):
                print(f"HQMODE = {int( hqmode )};", file=f)
            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)

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