From f5fb1e915e87618f4fa844de4ea657ed0bd27ced Mon Sep 17 00:00:00 2001 From: wm4 Date: Fri, 19 Sep 2014 23:59:12 +0200 Subject: 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.) --- player/osd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- cgit v1.2.3