summaryrefslogtreecommitdiffstats
path: root/player
diff options
context:
space:
mode:
authorJulian <MyFakeAcc.4@googlemail.com>2016-07-15 22:04:16 +0900
committerwm4 <wm4@nowhere>2017-10-09 20:40:31 +0200
commit4ee669e4db8f026c26286c2ad9e463b2bd63c8c2 (patch)
tree88760985d9a834d1ed87313ef6a774a64268a659 /player
parent7dcebb016c24aaaf103c4a18c9b67cfe0a1007f6 (diff)
downloadmpv-4ee669e4db8f026c26286c2ad9e463b2bd63c8c2.tar.bz2
mpv-4ee669e4db8f026c26286c2ad9e463b2bd63c8c2.tar.xz
stats: clearify a few descriptions/labels
Diffstat (limited to 'player')
-rw-r--r--player/lua/stats.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/player/lua/stats.lua b/player/lua/stats.lua
index 03fc0107f7..de1ecf9d77 100644
--- a/player/lua/stats.lua
+++ b/player/lua/stats.lua
@@ -19,7 +19,7 @@ local o = {
redraw_delay = 1, -- acts as duration in the toggling case
ass_formatting = true,
timing_warning = true,
- timing_warning_th = 0.85, -- *no* warning threshold (warning when > dfps * timing_warning_th)
+ timing_warning_th = 0.85, -- *no* warning threshold (warning when > dfps * timing_warning_th)
timing_total = false,
debug = false,
@@ -214,7 +214,7 @@ local function append_perfdata(s)
usuffix = generate_graph(plast[3], max[3], 0.8)
s[#s+1] = format("%s%s%s%s{\\fs%s}%s%s%s{\\fs%s}", o.nl, o.indent,
- b("Timings:"), o.prefix_sep, o.font_size * 0.66,
+ b("Frame Timings:"), o.prefix_sep, o.font_size * 0.66,
"Render ⏎ Present ⏎ Upload", o.prefix_sep,
"(last/average/peak μs)", o.font_size)
else
@@ -223,7 +223,7 @@ local function append_perfdata(s)
usuffix = o.prefix_sep .. "Upload"
s[#s+1] = format("%s%s%s%s{\\fs%s}%s{\\fs%s}", o.nl, o.indent,
- b("Timings:"), o.prefix_sep, o.font_size * 0.66,
+ b("Frame Timings:"), o.prefix_sep, o.font_size * 0.66,
"(last/average/peak μs)", o.font_size)
end