1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-28 01:52:19 +00:00

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.
This commit is contained in:
Niklas Haas 2023-09-20 14:59:11 +02:00 committed by Niklas Haas
parent c934391e07
commit 0cb4aa4ff7

View File

@ -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.