From 3984d2acca22465f8cbe7276134c1be1963af4fb Mon Sep 17 00:00:00 2001 From: wm4 Date: Wed, 30 Mar 2016 11:40:13 +0200 Subject: player: hide cache in status line by default again Commit 57506b27 accidentally broke this. The status (including the usually always active demuxer cache) should be shown only if the stream cache is actually enabled. --- player/osd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/player/osd.c b/player/osd.c index 8c6d8a3af1..7da4a038bf 100644 --- a/player/osd.c +++ b/player/osd.c @@ -259,7 +259,7 @@ static void print_status(struct MPContext *mpctx) if (mpctx->demuxer) { struct stream_cache_info info = {0}; demux_stream_control(mpctx->demuxer, STREAM_CTRL_GET_CACHE_INFO, &info); - if (info.fill >= 0) { + if (info.size > 0) { saddf(&line, " Cache: "); struct demux_ctrl_reader_state s = {.ts_duration = -1}; -- cgit v1.2.3