summaryrefslogtreecommitdiffstats
path: root/player/osd.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2016-02-01 22:14:32 +0100
committerwm4 <wm4@nowhere>2016-02-01 22:14:32 +0100
commit5c8378b71aaa4fbfda69ed9f50fe10f40cd124f2 (patch)
tree910c0840b089edbbae8a3cc1c6da60d4e06cb904 /player/osd.c
parentab318aeea84f51fa0adcfb09a8a43abc67dae1cd (diff)
downloadmpv-5c8378b71aaa4fbfda69ed9f50fe10f40cd124f2.tar.bz2
mpv-5c8378b71aaa4fbfda69ed9f50fe10f40cd124f2.tar.xz
player: use different variable to indicate coverart
Slightly better.
Diffstat (limited to 'player/osd.c')
-rw-r--r--player/osd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/player/osd.c b/player/osd.c
index b88feee9f6..41c483c0f5 100644
--- a/player/osd.c
+++ b/player/osd.c
@@ -217,7 +217,7 @@ static void print_status(struct MPContext *mpctx)
saddf(&line, " x%4.2f", opts->playback_speed);
// A-V sync
- if (mpctx->ao_chain && mpctx->vo_chain && mpctx->sync_audio_to_video) {
+ if (mpctx->ao_chain && mpctx->vo_chain && !mpctx->vo_chain->is_coverart) {
saddf(&line, " A-V:%7.3f", mpctx->last_av_difference);
if (fabs(mpctx->total_avsync_change) > 0.05)
saddf(&line, " ct:%7.3f", mpctx->total_avsync_change);