diff options
author | Kevin Mitchell <kevmitch@gmail.com> | 2015-11-25 17:57:52 -0800 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2017-10-09 20:40:31 +0200 |
commit | 1f41c729bbf2b118b91eecea514eca5cbd333ed1 (patch) | |
tree | d1d9796f1a419ad18331965a347197b806a9836d | |
parent | 41246c8a34164bd7bcbd0e2edde445f87fba482a (diff) | |
download | mpv-1f41c729bbf2b118b91eecea514eca5cbd333ed1.tar.bz2 mpv-1f41c729bbf2b118b91eecea514eca5cbd333ed1.tar.xz |
stats: update frame drop diagnostics
-rw-r--r-- | player/lua/stats.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/player/lua/stats.lua b/player/lua/stats.lua index 4073661184..ea0c88e3f9 100644 --- a/player/lua/stats.lua +++ b/player/lua/stats.lua @@ -112,7 +112,8 @@ function add_video(s) append_property(s, sec, "avsync", {prefix="A-V:"}) if append_property(s, sec, "drop-frame-count", {prefix="Dropped:"}) then append_property(s, sec, "vo-drop-frame-count", {prefix="VO:", nl=""}) - append_property(s, sec, "vo-missed-frame-count", {prefix="Missed:", nl=""}) + append_property(s, sec, "mistimed-frame-count", {prefix="Mistimed:", nl=""}) + append_property(s, sec, "vo-delayed-frame-count", {prefix="Delayed:", nl=""}) end if append_property(s, sec, "display-fps", {prefix="Display FPS:", suffix=" (specified)"}) then append_property(s, sec, "estimated-display-fps", |