summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-09-19 23:59:12 +0200
committerwm4 <wm4@nowhere>2014-09-20 00:48:30 +0200
commitf5fb1e915e87618f4fa844de4ea657ed0bd27ced (patch)
treef5419e55eb7b07531783830758ce4b7dbdfc689a
parent771583c285fd2d7da2d739fdcdfe5cb15624f6b8 (diff)
downloadmpv-f5fb1e915e87618f4fa844de4ea657ed0bd27ced.tar.bz2
mpv-f5fb1e915e87618f4fa844de4ea657ed0bd27ced.tar.xz
player: rename "Late:" field to "SD:"
Follow up to previous commit. This is probably confusing from a user point of view, since this field shouldn't show up normally anymore. (Before this commit, it could show up sporadically when a slow operation was performed during playback, such as switching fullscreen.)
-rw-r--r--player/osd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/player/osd.c b/player/osd.c
index 810e3f5514..55ddbf8708 100644
--- a/player/osd.c
+++ b/player/osd.c
@@ -226,7 +226,7 @@ static void print_status(struct MPContext *mpctx)
// VO stats
if (mpctx->d_video) {
if (mpctx->drop_frame_cnt)
- saddf(&line, " Late: %d", mpctx->drop_frame_cnt);
+ saddf(&line, " SD: %d", mpctx->drop_frame_cnt);
int64_t c = vo_get_drop_count(mpctx->video_out);
if (c > 0)
saddf(&line, " D: %"PRId64, c);