Skip to content

Commit 20f6b7e

Browse files
authored
Add missing SWS_SPLINE interpolation (#2188)
1 parent e0103cf commit 20f6b7e

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

av/video/reformatter.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ class Interpolation(IntEnum):
1717
BICUBLIN: "Luma bicubic / chroma bilinear" = SWS_BICUBLIN
1818
GAUSS: "Gaussian" = SWS_GAUSS
1919
SINC: "Sinc" = SWS_SINC
20-
LANCZOS: "Bicubic spline" = SWS_LANCZOS
20+
LANCZOS: "3-tap sinc/sinc" = SWS_LANCZOS
21+
SPLINE: "Cubic Keys spline" = SWS_SPLINE
2122

2223

2324
class Colorspace(IntEnum):

0 commit comments

Comments
 (0)