diff options
author | wm4 <wm4@nowhere> | 2014-08-09 00:13:16 +0200 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2014-08-09 00:13:16 +0200 |
commit | 91be5e5c3163efe185fa4883887a60a0db16728b (patch) | |
tree | 4954e448ac4a891f2a6fcf984fd2e853843db60e /etc/example.conf | |
parent | 26d69758f67b631a266474a51123cf58be48af35 (diff) | |
download | mpv-91be5e5c3163efe185fa4883887a60a0db16728b.tar.bz2 mpv-91be5e5c3163efe185fa4883887a60a0db16728b.tar.xz |
etc/example.conf: update cache options
Some of them changed semantics or got renamed.
Note that the replacements in the example.conf are not necessarily the
equivalents of the replaced options.
Diffstat (limited to 'etc/example.conf')
-rw-r--r-- | etc/example.conf | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/etc/example.conf b/etc/example.conf index d23491566f..cf9089f299 100644 --- a/etc/example.conf +++ b/etc/example.conf @@ -80,11 +80,17 @@ # Use 8MB input cache for everything, even local files. #cache=8192 # -# Prefill 20% of the cache before starting playback. -#cache-min=20.0 +# If a seek is issued, and the target is 1024KB past the cached range, then +# keep reading until the seek target is hit, instead of doing a real seek. +#cache-seek-min=1024 # -# Prefill 50% of the cache before restarting playback after the cache emptied. -#cache-seek-min=50 +# Disable the behavior that the player will pause if the cache goes below a +# certain fill size. +#cache-pause-below=no +# +# Enable demuxer-based cache. This reads ahead a number of packets, and the +# player won't freeze completely if network is slow during playback. +#demuxer-thread=yes # Display English subtitles if available. #slang=en |