From e5b04517d077e10a8bb85d4ec028a8a86bdc3b22 Mon Sep 17 00:00:00 2001 From: WyattBlue Date: Sat, 14 Mar 2026 14:40:31 -0400 Subject: [PATCH] Update Interpolation descs with FFmpeg master --- av/video/reformatter.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/av/video/reformatter.py b/av/video/reformatter.py index 96c1b1742..67f4bd0ad 100644 --- a/av/video/reformatter.py +++ b/av/video/reformatter.py @@ -10,15 +10,15 @@ class Interpolation(IntEnum): FAST_BILINEAR: "Fast bilinear" = SWS_FAST_BILINEAR BILINEAR: "Bilinear" = SWS_BILINEAR - BICUBIC: "Bicubic" = SWS_BICUBIC + BICUBIC: "2-tap cubic B-spline" = SWS_BICUBIC X: "Experimental" = SWS_X POINT: "Nearest neighbor / point" = SWS_POINT AREA: "Area averaging" = SWS_AREA - BICUBLIN: "Luma bicubic / chroma bilinear" = SWS_BICUBLIN - GAUSS: "Gaussian" = SWS_GAUSS - SINC: "Sinc" = SWS_SINC + BICUBLIN: "Bicubic luma / Bilinear chroma" = SWS_BICUBLIN + GAUSS: "Gaussian approximation" = SWS_GAUSS + SINC: "Unwindowed Sinc" = SWS_SINC LANCZOS: "3-tap sinc/sinc" = SWS_LANCZOS - SPLINE: "Cubic Keys spline" = SWS_SPLINE + SPLINE: "Unwindowed natural cubic spline" = SWS_SPLINE class Colorspace(IntEnum):