summaryrefslogtreecommitdiffstats
path: root/mpvcore/player/osd.c
diff options
context:
space:
mode:
Diffstat (limited to 'mpvcore/player/osd.c')
-rw-r--r--mpvcore/player/osd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mpvcore/player/osd.c b/mpvcore/player/osd.c
index 03c7c339b7..04052c359e 100644
--- a/mpvcore/player/osd.c
+++ b/mpvcore/player/osd.c
@@ -108,7 +108,7 @@ void print_status(struct MPContext *mpctx)
saddf(&line, "(Paused) ");
}
- if (mpctx->sh_audio)
+ if (mpctx->d_audio)
saddf(&line, "A");
if (mpctx->sh_video)
saddf(&line, "V");
@@ -131,7 +131,7 @@ void print_status(struct MPContext *mpctx)
saddf(&line, " x%4.2f", opts->playback_speed);
// A-V sync
- if (mpctx->sh_audio && sh_video && mpctx->sync_audio_to_video) {
+ if (mpctx->d_audio && sh_video && mpctx->sync_audio_to_video) {
if (mpctx->last_av_difference != MP_NOPTS_VALUE)
saddf(&line, " A-V:%7.3f", mpctx->last_av_difference);
else