summaryrefslogtreecommitdiffstats
path: root/DOCS/man
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-08-05 23:41:29 +0200
committerwm4 <wm4@nowhere>2015-08-05 23:41:29 +0200
commitbeb4f8316aca2f206ce1ea743498b4241670c37d (patch)
treeda40098d6ea48641c6e3cf375971e2a66488984b /DOCS/man
parent775d81609627e4c6e091ae3761cdb1235f789276 (diff)
downloadmpv-beb4f8316aca2f206ce1ea743498b4241670c37d.tar.bz2
mpv-beb4f8316aca2f206ce1ea743498b4241670c37d.tar.xz
demux: add options to control maximum queue size
Add --demuxer-max-packets and --demuxer-max-bytes, which control the maximum size of the packet queue. These can be helpful to avoid excessive memory usage. Memory usage is the reason why there's a limit in the first place. If a file is more or less broken, and audio and video don't line up, the decoders will fill up the packet queue trying to read more audio or video, and the maximum sizes are required to avoid unbounded memory allocation. Being able to override the maximum sizes is useful; either for restricting memory usage further, or enlarging the sizes when attempting to play various broken files.
Diffstat (limited to 'DOCS/man')
-rw-r--r--DOCS/man/options.rst14
1 files changed, 14 insertions, 0 deletions
diff --git a/DOCS/man/options.rst b/DOCS/man/options.rst
index f86e489db1..b5587ccfe6 100644
--- a/DOCS/man/options.rst
+++ b/DOCS/man/options.rst
@@ -2229,6 +2229,20 @@ Demuxer
``--demuxer-rawvideo-size=<value>``
Frame size in bytes when using ``--demuxer=rawvideo``.
+``--demuxer-max-packets=<packets>``, ``--demuxer-max-bytes=<bytes>``
+ This controls how much the demuxer is allowed to buffer ahead. The demuxer
+ will normally try to read ahead as much as necessary, or as much is
+ requested with ``--demuxer-readahead-secs``. The ``--demuxer-max-...``
+ options can be used to restrict the maximum readahead. This limits excessive
+ readahead in case of broken files or desynced playback. The demuxer will
+ stop reading additional packets as soon as one of the limits is reached.
+ (The limits still can be slightly overstepped due to technical reasons.)
+
+ Set these limits highher if you get a packet queue overflow warning, and
+ you think normal playback would be possible with a larger packet queue.
+
+ See ``--list-options`` for defaults and value range.
+
``--demuxer-thread=<yes|no>``
Run the demuxer in a separate thread, and let it prefetch a certain amount
of packets (default: yes). Having this enabled may lead to smoother