summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--DOCS/man/options.rst4
-rw-r--r--stream/cache.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/DOCS/man/options.rst b/DOCS/man/options.rst
index 3759540207..17495d64cb 100644
--- a/DOCS/man/options.rst
+++ b/DOCS/man/options.rst
@@ -3756,7 +3756,7 @@ Cache
between readahead and backbuffer sizes.
``--cache-default=<kBytes|no>``
- Set the size of the cache in kilobytes (default: 75000 KB). Using ``no``
+ Set the size of the cache in kilobytes (default: 10000 KB). Using ``no``
will not automatically enable the cache e.g. when playing from a network
stream. Note that using ``--cache`` will always override this option.
@@ -3777,7 +3777,7 @@ Cache
This option allows control over this.
``--cache-backbuffer=<kBytes>``
- Size of the cache back buffer (default: 75000 KB). This will add to the total
+ Size of the cache back buffer (default: 10000 KB). This will add to the total
cache size, and reserved the amount for seeking back. The reserved amount
will not be used for readahead, and instead preserves already read data to
enable fast seeking back.
diff --git a/stream/cache.c b/stream/cache.c
index d897fec665..e64aaf87ad 100644
--- a/stream/cache.c
+++ b/stream/cache.c
@@ -79,10 +79,10 @@ const struct m_sub_options stream_cache_conf = {
.size = sizeof(struct mp_cache_opts),
.defaults = &(const struct mp_cache_opts){
.size = -1,
- .def_size = 75000,
+ .def_size = 10000,
.initial = 0,
.seek_min = 500,
- .back_buffer = 75000,
+ .back_buffer = 10000,
.file_max = 1024 * 1024,
},
};