mirror of
https://github.com/k4yt3x/video2x.git
synced 2024-12-28 23:19:11 +00:00
apply the smallest scaling ratio available instead of 1
This commit is contained in:
parent
c2f1e43656
commit
84b0684d64
@ -625,9 +625,10 @@ class Upscaler:
|
|||||||
remaining_scaling_ratio = math.ceil(output_scale)
|
remaining_scaling_ratio = math.ceil(output_scale)
|
||||||
self.scaling_jobs = []
|
self.scaling_jobs = []
|
||||||
|
|
||||||
# special case for 1.0 upscale ratio
|
# if the scaling ratio is 1.0
|
||||||
|
# apply the smallest scaling ratio available
|
||||||
if remaining_scaling_ratio == 1:
|
if remaining_scaling_ratio == 1:
|
||||||
self.scaling_jobs.append(1)
|
self.scaling_jobs.append(supported_scaling_ratios[0])
|
||||||
else:
|
else:
|
||||||
while remaining_scaling_ratio > 1:
|
while remaining_scaling_ratio > 1:
|
||||||
for ratio in supported_scaling_ratios:
|
for ratio in supported_scaling_ratios:
|
||||||
@ -637,7 +638,6 @@ class Upscaler:
|
|||||||
break
|
break
|
||||||
|
|
||||||
else:
|
else:
|
||||||
|
|
||||||
found = False
|
found = False
|
||||||
for i in supported_scaling_ratios:
|
for i in supported_scaling_ratios:
|
||||||
for j in supported_scaling_ratios:
|
for j in supported_scaling_ratios:
|
||||||
|
Loading…
Reference in New Issue
Block a user