summaryrefslogtreecommitdiffstats
path: root/DOCS
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-01-13 22:52:20 +0100
committerwm4 <wm4@nowhere>2013-01-13 23:29:30 +0100
commit8e172afc8f11e16673154e8c6bf013046c3bd043 (patch)
tree33ccd9c4da43d56aea29937ceef185e196ab12f1 /DOCS
parentaaa27ead86b907a52e5e1e2856f61d18d16f077c (diff)
downloadmpv-8e172afc8f11e16673154e8c6bf013046c3bd043.tar.bz2
mpv-8e172afc8f11e16673154e8c6bf013046c3bd043.tar.xz
vd_lavc: remove lowres decoding
This was a "broken misfeature" according to Libav developers. It wasn't implemented for modern codecs (like h264), and has been removed from Libav a while ago (the AVCodecContext field has been marked as deprecated and its value is ignored). FFmpeg still supports it, but isn't much useful due to aforementioned reasons. Remove the code to enable it.
Diffstat (limited to 'DOCS')
-rw-r--r--DOCS/man/en/options.rst13
1 files changed, 0 insertions, 13 deletions
diff --git a/DOCS/man/en/options.rst b/DOCS/man/en/options.rst
index 162c8a560e..b8fb051495 100644
--- a/DOCS/man/en/options.rst
+++ b/DOCS/man/en/options.rst
@@ -989,19 +989,6 @@
For best decoding quality use the same IDCT algorithm for decoding and
encoding. This may come at a price in accuracy, though.
- lowres=<number>[,<w>]
- Decode at lower resolutions. Low resolution decoding is not supported
- by all codecs, and it will often result in ugly artifacts. This is not
- a bug, but a side effect of not decoding at full resolution.
-
- :0: disabled
- :1: 1/2 resolution
- :2: 1/4 resolution
- :3: 1/8 resolution
-
- If <w> is specified lowres decoding will be used only if the width of
- the video is major than or equal to <w>.
-
o=<key>=<value>[,<key>=<value>[,...]]
Pass AVOptions to libavcodec decoder. Note, a patch to make the o=
unneeded and pass all unknown options through the AVOption system is