Skip to content

Commit

Permalink
Automated Update
Browse files Browse the repository at this point in the history
  • Loading branch information
natural-harmonia-gropius authored and github-actions[bot] committed Oct 21, 2024
1 parent ab7ed40 commit 8ed8f30
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion portable_config/filters/vsmlrt.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "3.22.4"
__version__ = "3.22.5"

__all__ = [
"Backend", "BackendV2",
Expand Down Expand Up @@ -941,6 +941,7 @@ class RIFEModel(enum.IntEnum):
v4_23 = 423
v4_24 = 424
v4_25 = 425
v4_25_lite = 4251
v4_26 = 426


Expand Down Expand Up @@ -1002,6 +1003,8 @@ def RIFEMerge(

if (model_major, model_minor) >= (4, 26):
tilesize_requirement = 64
elif (model_major, model_minor, lite) == (4, 25, "_lite"):
tilesize_requirement = 128
else:
tilesize_requirement = 32
multiple_frac = tilesize_requirement / Fraction(scale)
Expand Down

0 comments on commit 8ed8f30

Please sign in to comment.