From 11d223228cbaa22cbd42f2e8e2b7f5b6c12989a9 Mon Sep 17 00:00:00 2001 From: wm4 Date: Fri, 7 Feb 2020 16:15:55 +0100 Subject: command: add cache-duration to cache state property Convenience; see following commit. --- player/command.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'player') diff --git a/player/command.c b/player/command.c index 26438c06f6..3f13c39a02 100644 --- a/player/command.c +++ b/player/command.c @@ -1450,6 +1450,9 @@ static int mp_property_demuxer_cache_state(void *ctx, struct m_property *prop, if (s.ts_reader != MP_NOPTS_VALUE) node_map_add_double(r, "reader-pts", s.ts_reader); + if (s.ts_duration >= 0) + node_map_add_double(r, "cache-duration", s.ts_duration); + node_map_add_flag(r, "eof", s.eof); node_map_add_flag(r, "underrun", s.underrun); node_map_add_flag(r, "idle", s.idle); -- cgit v1.2.3