Skip to content

Commit 9833d02

Browse files
committed
Update Interpolation descs with FFmpeg master
1 parent 764fed1 commit 9833d02

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

av/video/reformatter.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@
1010
class Interpolation(IntEnum):
1111
FAST_BILINEAR: "Fast bilinear" = SWS_FAST_BILINEAR
1212
BILINEAR: "Bilinear" = SWS_BILINEAR
13-
BICUBIC: "Bicubic" = SWS_BICUBIC
13+
BICUBIC: "2-tap cubic B-spline" = SWS_BICUBIC
1414
X: "Experimental" = SWS_X
1515
POINT: "Nearest neighbor / point" = SWS_POINT
1616
AREA: "Area averaging" = SWS_AREA
17-
BICUBLIN: "Luma bicubic / chroma bilinear" = SWS_BICUBLIN
18-
GAUSS: "Gaussian" = SWS_GAUSS
19-
SINC: "Sinc" = SWS_SINC
17+
BICUBLIN: "Bicubic luma / Bilinear chroma" = SWS_BICUBLIN
18+
GAUSS: "Gaussian approximation" = SWS_GAUSS
19+
SINC: "Unwindowed Sinc" = SWS_SINC
2020
LANCZOS: "3-tap sinc/sinc" = SWS_LANCZOS
21-
SPLINE: "Cubic Keys spline" = SWS_SPLINE
21+
SPLINE: "Unwindowed natural cubic spline" = SWS_SPLINE
2222

2323

2424
class Colorspace(IntEnum):

0 commit comments

Comments
 (0)