summaryrefslogtreecommitdiffstats
path: root/DOCS/man/options.rst
diff options
context:
space:
mode:
authorNiklas Haas <git@haasn.dev>2023-09-20 02:09:05 +0200
committerNiklas Haas <github-daiK1o@haasn.dev>2023-09-20 17:07:38 +0200
commitc172a650c41a28d77d14de4af398cfd90caaa805 (patch)
tree856a05303f6c315cf7ba2f4921edec0de12eeb77 /DOCS/man/options.rst
parent87baed0b0f774940fbcc2a8d0298b525e2a28faf (diff)
downloadmpv-c172a650c41a28d77d14de4af398cfd90caaa805.tar.bz2
mpv-c172a650c41a28d77d14de4af398cfd90caaa805.tar.xz
vo_gpu: default to dscale=hermite
This new filter is slightly sharper, and significantly faster, than mitchell. It also tends to preserve detail better. All in all, there is no reason not to use it by default, especially from a performance PoV. (In vo_gpu_next, hermite is implemented efficiently using hardware accelerated bilinear interpolation) See-Also: https://code.videolan.org/videolan/libplacebo/-/commit/75b3947b2c07803456483ec6976c037bad91b5dd
Diffstat (limited to 'DOCS/man/options.rst')
-rw-r--r--DOCS/man/options.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/DOCS/man/options.rst b/DOCS/man/options.rst
index 49c42f37d7..d3effe79d2 100644
--- a/DOCS/man/options.rst
+++ b/DOCS/man/options.rst
@@ -5282,13 +5282,13 @@ them.
``mitchell``
Mitchell-Netravali. The ``B`` and ``C`` parameters can be set with
- ``--scale-param1`` and ``--scale-param2``. This is the default for
- ``--dscale``.
+ ``--scale-param1`` and ``--scale-param2``.
``hermite``
Hermite spline. Similar to ``bicubic`` but with ``B`` set to ``0.0``.
This filter has the special property of having a support of radius 1.0,
- making it very fast in comparison, but prone to blocking.
+ making it very fast in comparison, but prone to blocking. This is the
+ default for ``--dscale``.
``catmull_rom``
Catmull-Rom. A Cubic filter in the same vein as ``mitchell``, where