summaryrefslogtreecommitdiffstats
path: root/DOCS/man/en/options.rst
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-06-11 01:54:03 +0200
committerwm4 <wm4@nowhere>2014-06-11 01:54:03 +0200
commitbe5725ebc4813f9d5c582fd0f30fe1ebc661e3e1 (patch)
tree18102331bfc7e9adc824b082721e6319bc5decca /DOCS/man/en/options.rst
parent654930aa47e10c07aa0399f515a8dd04d34efa3a (diff)
downloadmpv-be5725ebc4813f9d5c582fd0f30fe1ebc661e3e1.tar.bz2
mpv-be5725ebc4813f9d5c582fd0f30fe1ebc661e3e1.tar.xz
input: make option struct local
Similar to previous commits. This also renames --doubleclick-time to --input-doubleclick-time, and --key-fifo-size to --input-key-fifo-size. We could keep the old names, but these options are very obscure, and renaming them seems better for consistency.
Diffstat (limited to 'DOCS/man/en/options.rst')
-rw-r--r--DOCS/man/en/options.rst22
1 files changed, 11 insertions, 11 deletions
diff --git a/DOCS/man/en/options.rst b/DOCS/man/en/options.rst
index d2ae257d91..d121fe2adc 100644
--- a/DOCS/man/en/options.rst
+++ b/DOCS/man/en/options.rst
@@ -723,10 +723,6 @@ OPTIONS
``--demuxer-rawvideo-size=<value>``
Frame size in bytes when using ``--demuxer=rawvideo``.
-``--doubleclick-time=<milliseconds>``
- Time in milliseconds to recognize two consecutive button presses as a
- double-click (default: 300).
-
``--dump-stats=<filename>``
Write certain statistics to the given file. The file is truncated on
opening. The file will contain raw samples, each with a timestamp. To
@@ -1166,9 +1162,20 @@ OPTIONS
``--input-cmdlist``
Prints all commands that can be bound to keys.
+``--input-doubleclick-time=<milliseconds>``
+ Time in milliseconds to recognize two consecutive button presses as a
+ double-click (default: 300).
+
``--input-keylist``
Prints all keys that can be bound to commands.
+``--input-key-fifo-size=<2-65000>``
+ Specify the size of the FIFO that buffers key events (default: 7). If it
+ is too small some events may be lost. The main disadvantage of setting it
+ to a very large value is that if you hold down a key triggering some
+ particularly slow command then the player may be unresponsive while it
+ processes all the queued commands.
+
``--input-test``
Input test mode. Instead of executing commands on key presses, mpv
will show the keys and the bound commands on the OSD. Has to be used
@@ -1248,13 +1255,6 @@ OPTIONS
chapter will terminate playback as well, even if ``--keep-open`` is
given.
-``--key-fifo-size=<2-65000>``
- Specify the size of the FIFO that buffers key events (default: 7). If it
- is too small some events may be lost. The main disadvantage of setting it
- to a very large value is that if you hold down a key triggering some
- particularly slow command then the player may be unresponsive while it
- processes all the queued commands.
-
``--length=<relative time>``
Stop after a given time relative to the start time.
See ``--start`` for valid option values and examples.