summaryrefslogtreecommitdiffstats
path: root/player/osd.c
diff options
context:
space:
mode:
Diffstat (limited to 'player/osd.c')
-rw-r--r--player/osd.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/player/osd.c b/player/osd.c
index 0bdb368f7e..ace465b18d 100644
--- a/player/osd.c
+++ b/player/osd.c
@@ -225,6 +225,12 @@ static void print_status(struct MPContext *mpctx)
{
// VO stats
if (mpctx->d_video) {
+ if (mpctx->display_sync_active) {
+ saddf(&line, " DS: %f", mpctx->speed_factor_a);
+ int64_t m = vo_get_missed_count(mpctx->video_out);
+ if (m > 0)
+ saddf(&line, " Missed: %"PRId64, m);
+ }
int64_t c = vo_get_drop_count(mpctx->video_out);
if (c > 0 || mpctx->dropped_frames_total > 0) {
saddf(&line, " Dropped: %"PRId64, c);