Skip to content

Commit

Permalink
Fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Setsugennoao committed Sep 12, 2024
1 parent eac7767 commit 6588fad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/development/support.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ A common descaling function will most likely have a signature not unlike this:
def descale(clip: vs.VideoNode, kernel: str = 'bicubic',
width: int = 1280, height: int = 720,
b: float = 1/3, c: float = 1/3, taps: 3) -> vs.VideoNode:
b: float = 1/3, c: float = 1/3, taps: float = 3) -> vs.VideoNode:
if kernel is 'bicubic':
return core.descale.Debicubic(clip, width, height, b=b, c=c)
elif kernel is 'bilinear':
Expand Down

0 comments on commit 6588fad

Please sign in to comment.