Skip to content

Commit

Permalink
Bicubic: Rename FfmpegBicubic -> SwScaleBicubic
Browse files Browse the repository at this point in the history
  • Loading branch information
LightArrowsEXE committed Nov 19, 2023
1 parent bba83b6 commit 91c0384
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vskernels/kernels/bicubic.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
'Hermite',
'Mitchell',
'Catrom',
'FFmpegBicubic',
'SwScaleBicubic',
'AdobeBicubic',
'AdobeBicubicSharper',
'AdobeBicubicSmoother',
Expand Down Expand Up @@ -105,7 +105,7 @@ def __init__(self, **kwargs: Any) -> None:
super().__init__(b=0, c=1 / 2, **kwargs)


class FFmpegBicubic(Bicubic):
class SwScaleBicubic(Bicubic):
"""Bicubic b=0, c=0.6; FFmpeg's swscale default"""

def __init__(self, **kwargs: Any) -> None:
Expand Down

0 comments on commit 91c0384

Please sign in to comment.