From cb8cfe5ce7f3cae919de557470dc40565f5d9ef2 Mon Sep 17 00:00:00 2001 From: Setsugennoao <41454651+Setsugennoao@users.noreply.github.com> Date: Fri, 9 Aug 2024 15:25:04 +0200 Subject: [PATCH] Remove old fmtc args --- vsaa/mask.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vsaa/mask.py b/vsaa/mask.py index 5426863..0afcc3e 100644 --- a/vsaa/mask.py +++ b/vsaa/mask.py @@ -17,4 +17,4 @@ def resize_aa_mask(mclip: vs.VideoNode, width: int | None = None, height: int | if (ow > iw and ow / iw != ow // iw) or (oh > ih and oh / ih != oh // ih): mclip = Point.scale(mclip, iw * ceil(ow / iw), ih * ceil(oh / ih)) - return Box(fulls=1, fulld=1).scale(mclip, ow, oh) + return Box.scale(mclip, ow, oh)