From d92395d205dc9638c354c4bc7e58a969f889ebec Mon Sep 17 00:00:00 2001 From: wm4 Date: Sun, 17 Nov 2019 01:39:54 +0100 Subject: player: remove some unnecessary coverart special cases These should not be needed, since video is in EOF mode in this case anyway. Not too sure about the video.c case to be honest, well, here goes nothing. --- player/audio.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'player/audio.c') diff --git a/player/audio.c b/player/audio.c index 529902b535..e8e129dc49 100644 --- a/player/audio.c +++ b/player/audio.c @@ -626,8 +626,7 @@ static bool get_sync_samples(struct MPContext *mpctx, int *skip) !mp_audio_buffer_samples(mpctx->ao_chain->ao_buffer)) return false; // no audio read yet - bool sync_to_video = mpctx->vo_chain && !mpctx->vo_chain->is_coverart && - mpctx->video_status != STATUS_EOF; + bool sync_to_video = mpctx->vo_chain && mpctx->video_status != STATUS_EOF; double sync_pts = MP_NOPTS_VALUE; if (sync_to_video) { -- cgit v1.2.3