summaryrefslogtreecommitdiffstats
path: root/DOCS
diff options
context:
space:
mode:
authorAnton Kindestam <antonki@kth.se>2019-09-28 10:26:23 +0200
committerJan Ekström <jeebjp@gmail.com>2019-09-28 14:10:01 +0300
commit62904203804afb614f4809495f1a1bb6e4006aaa (patch)
treeffeaceaebb78c664c9d183333836594b245ba1e1 /DOCS
parent9538fb5a7af951e220f26c87c80aaaa2a5cfbc67 (diff)
downloadmpv-62904203804afb614f4809495f1a1bb6e4006aaa.tar.bz2
mpv-62904203804afb614f4809495f1a1bb6e4006aaa.tar.xz
vo: make swapchain-depth option generic for all VOs
In preparation for making vo_drm able to use swapchain-depth
Diffstat (limited to 'DOCS')
-rw-r--r--DOCS/man/options.rst15
1 files changed, 7 insertions, 8 deletions
diff --git a/DOCS/man/options.rst b/DOCS/man/options.rst
index b833399a3a..0037f8e40a 100644
--- a/DOCS/man/options.rst
+++ b/DOCS/man/options.rst
@@ -1469,6 +1469,13 @@ Video
this can break on streams not encoded by x264, or if a stream encoded by a
newer x264 version contains no version info.
+``--swapchain-depth=<N>``
+ Allow up to N in-flight frames. This essentially controls the frame
+ latency. Increasing the swapchain depth can improve pipelining and prevent
+ missed vsyncs, but increases visible latency. This option only mandates an
+ upper limit, the implementation can use a lower latency than requested
+ internally. A setting of 1 means that the VO will wait for every frame to
+ become visible before starting to render the next frame. (Default: 3)
Audio
-----
@@ -5170,14 +5177,6 @@ The following video options are currently all specific to ``--vo=gpu`` and
Android with ``--gpu-context=android`` only.
-``--swapchain-depth=<N>``
- Allow up to N in-flight frames. This essentially controls the frame
- latency. Increasing the swapchain depth can improve pipelining and prevent
- missed vsyncs, but increases visible latency. This option only mandates an
- upper limit, the implementation can use a lower latency than requested
- internally. A setting of 1 means that the VO will wait for every frame to
- become visible before starting to render the next frame. (Default: 3)
-
``--gpu-sw``
Continue even if a software renderer is detected.