summaryrefslogtreecommitdiffstats
path: root/DOCS
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-01-27 19:06:59 +0100
committerwm4 <wm4@nowhere>2015-01-27 19:06:59 +0100
commit97f32fdb238aa7e8a38298935ea1f47cf8817adf (patch)
treec14f625b505e3bbab3c037a3286b905431c60cdb /DOCS
parent82e3d06f093188afdec1e549aed721b066521b6c (diff)
downloadmpv-97f32fdb238aa7e8a38298935ea1f47cf8817adf.tar.bz2
mpv-97f32fdb238aa7e8a38298935ea1f47cf8817adf.tar.xz
vf_phase: remove this filter
If you really want it, it's in libavfilter and can be used via vf_lavfi.
Diffstat (limited to 'DOCS')
-rw-r--r--DOCS/man/vf.rst52
1 files changed, 0 insertions, 52 deletions
diff --git a/DOCS/man/vf.rst b/DOCS/man/vf.rst
index 4e7302bbee..78eb5d16a2 100644
--- a/DOCS/man/vf.rst
+++ b/DOCS/man/vf.rst
@@ -468,58 +468,6 @@ Available filters are:
absolute value of the parameter. Specify this option for pass 2, it
makes no difference on pass 1.
-``phase[=t|b|p|a|u|T|B|A|U][:v]``
- Delay interlaced video by one field time so that the field order changes.
- The intended use is to fix PAL videos that have been captured with the
- opposite field order to the film-to-video transfer. The options are:
-
- ``t``
- Capture field order top-first, transfer bottom-first. Filter will
- delay the bottom field.
-
- ``b``
- Capture bottom-first, transfer top-first. Filter will delay the top
- field.
-
- ``p``
- Capture and transfer with the same field order. This mode only exists
- for the documentation of the other options to refer to, but if you
- actually select it, the filter will faithfully do nothing ;-)
-
- ``a``
- Capture field order determined automatically by field flags, transfer
- opposite. Filter selects among ``t`` and ``b`` modes on a frame by frame
- basis using field flags. If no field information is available, then this
- works just like ``u``.
-
- ``u``
- Capture unknown or varying, transfer opposite. Filter selects among
- ``t`` and ``b`` on a frame by frame basis by analyzing the images and
- selecting the alternative that produces best match between the fields.
-
- ``T``
- Capture top-first, transfer unknown or varying. Filter selects among
- ``t`` and ``p`` using image analysis.
-
- ``B``
- Capture bottom-first, transfer unknown or varying. Filter selects
- among ``b`` and ``p`` using image analysis.
-
- ``A``
- Capture determined by field flags, transfer unknown or varying. Filter
- selects among ``t``, ``b`` and ``p`` using field flags and image
- analysis. If no field information is available, then this works just
- like ``U``. This is the default mode.
-
- ``U``
- Both capture and transfer unknown or varying. Filter selects among
- ``t``, ``b`` and ``p`` using image analysis only.
-
- ``v``
- Verbose operation. Prints the selected mode for each frame and the
- average squared difference between fields for ``t``, ``b``, and ``p``
- alternatives. (Ignored when libavfilter is used.)
-
``yadif=[mode[:enabled=yes|no]]``
Yet another deinterlacing filter