summaryrefslogtreecommitdiffstats
path: root/DOCS/man/options.rst
diff options
context:
space:
mode:
authorNiklas Haas <git@haasn.dev>2023-09-20 14:59:11 +0200
committerNiklas Haas <github-daiK1o@haasn.dev>2023-09-20 17:07:38 +0200
commit0cb4aa4ff71c5f42bbd02e772ae1c9ecfad37a43 (patch)
tree0096669ed5c87549bab644f22e1c8d7b06c5c1ac /DOCS/man/options.rst
parentc934391e0730584b6a5512860c1da61962c4006f (diff)
downloadmpv-0cb4aa4ff71c5f42bbd02e772ae1c9ecfad37a43.tar.bz2
mpv-0cb4aa4ff71c5f42bbd02e772ae1c9ecfad37a43.tar.xz
DOCS/options: remove potentially offensive language
It can hurt people's feelings to refer to scalers as "high quality" and "low quality", when it is so subjective. I decided to preserve the lanczos sections at least because it's mostly talking about the difference between EWA Lanczos and Lanczos, which is less controversial than the difference between, say, Lanczos and Catmull.
Diffstat (limited to 'DOCS/man/options.rst')
-rw-r--r--DOCS/man/options.rst13
1 files changed, 6 insertions, 7 deletions
diff --git a/DOCS/man/options.rst b/DOCS/man/options.rst
index 69f3e0ece6..ee70632fb9 100644
--- a/DOCS/man/options.rst
+++ b/DOCS/man/options.rst
@@ -5282,23 +5282,22 @@ them.
``mitchell``
Mitchell-Netravali. The ``B`` and ``C`` parameters can be set with
- ``--scale-param1`` and ``--scale-param2``. This filter is very good at
- downscaling. This is the default for ``--dscale``.
+ ``--scale-param1`` and ``--scale-param2``. This is the default for
+ ``--dscale``.
``catmull_rom``
Catmull-Rom. A Cubic filter in the same vein as ``mitchell``, where
the ``B`` and ``C`` parameters are ``0.0`` and ``0.5`` respectively.
- This filter is sharper than ``mitchell``, but it results in mild
- ringing. Like ``mitchell``, this filter is good at downscaling (see
- ``--dscale``).
+ This filter is sharper than ``mitchell``, but it results in more
+ ringing.
``oversample``
A version of nearest neighbour that (naively) oversamples pixels, so
that pixels overlapping edges get linearly interpolated instead of
rounded. This essentially removes the small imperfections and judder
artifacts caused by nearest-neighbour interpolation, in exchange for
- adding some blur. This filter is good at temporal interpolation, and
- also known as "smoothmotion" (see ``--tscale``).
+ adding some blur. This can also be used for frame mixing, where it
+ is commonly known as "smoothmotion" (see ``--tscale``).
``linear``
A ``--tscale`` filter.