summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--DOCS/man/mpv.rst8
-rw-r--r--player/osd.c4
2 files changed, 5 insertions, 7 deletions
diff --git a/DOCS/man/mpv.rst b/DOCS/man/mpv.rst
index 0fe7dc78b5..861ae17ef1 100644
--- a/DOCS/man/mpv.rst
+++ b/DOCS/man/mpv.rst
@@ -719,12 +719,10 @@ listed.
to the display as well, e.g.: ``Dropped: 4/34``. This happens only if
decoder frame dropping is enabled with the ``--framedrop`` options.
(``drop-frame-count`` property.)
-- Cache state, e.g. ``Cache: 2s+134KB``. Visible if the stream cache is enabled.
+- Cache state, e.g. ``Cache: 2s/134KB``. Visible if the stream cache is enabled.
The first value shows the amount of video buffered in the demuxer in seconds,
- the second value shows the sum of the demuxer forward cache size and the
- *additional* data buffered in the stream cache in kilobytes.
- (``demuxer-cache-duration``, ``demuxer-cache-state``, ``cache-used``
- properties.)
+ the second value shows the estimated size of the buffered amount in kilobytes.
+ (``demuxer-cache-duration`` and ``demuxer-cache-state`` properties.)
LOW LATENCY PLAYBACK
diff --git a/player/osd.c b/player/osd.c
index a12ccaa8b1..c2af83b08c 100644
--- a/player/osd.c
+++ b/player/osd.c
@@ -243,9 +243,9 @@ static char *get_term_status_msg(struct MPContext *mpctx)
int64_t cache_size = s.fw_bytes;
if (cache_size > 0) {
if (cache_size >= 1024 * 1024) {
- saddf(&line, "+%lldMB", (long long)(cache_size / 1024 / 1024));
+ saddf(&line, "/%lldMB", (long long)(cache_size / 1024 / 1024));
} else {
- saddf(&line, "+%lldKB", (long long)(cache_size / 1024));
+ saddf(&line, "/%lldKB", (long long)(cache_size / 1024));
}
}
}