1
0
mirror of https://github.com/mpv-player/mpv synced 2025-01-18 04:51:52 +00:00

osc: check if demuxer cache has not reached eof

Avoids flickering stream cache status while filling the demuxer cache.
This commit is contained in:
Ricardo Constantino 2017-12-29 12:07:41 +00:00
parent 0da5688c84
commit 97816bbef0
No known key found for this signature in database
GPG Key ID: EFD16019AE4FF531

View File

@ -1839,15 +1839,15 @@ function osc_init()
ne.content = function ()
local dmx_cache = mp.get_property_number("demuxer-cache-duration")
local cache_used = mp.get_property_number("cache-used", 0) * 1024
local cache_used = mp.get_property_number("cache-used")
local dmx_cache_state = mp.get_property_native("demuxer-cache-state", {})
local is_network = mp.get_property_native("demuxer-via-network")
local show_cache = cache_used > 0
local show_cache = cache_used and not dmx_cache_state["eof"]
if dmx_cache then
dmx_cache = string.format("%3.0fs", dmx_cache)
end
if dmx_cache_state["fw-bytes"] then
cache_used = cache_used + dmx_cache_state["fw-bytes"]
cache_used = (cache_used or 0)*1024 + dmx_cache_state["fw-bytes"]
end
if (is_network and dmx_cache) or show_cache then
-- Only show dmx-cache-duration by itself if it's a network file.