From d8a0356b3bf8751938da7696b49da25bce5cd791 Mon Sep 17 00:00:00 2001 From: wm4 Date: Tue, 14 Apr 2015 14:36:15 +0200 Subject: player: silence spam in verbose mode when playing audio with cover art When playing cover art, it conceptually reaches EOF as soon as the image was put on the VO, causing the EOF message to be repeated every time new audio was decoded. Just silence the message. --- player/video.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'player') diff --git a/player/video.c b/player/video.c index 6c41593c72..2d3840b6b3 100644 --- a/player/video.c +++ b/player/video.c @@ -784,7 +784,7 @@ void write_video(struct MPContext *mpctx, double endpts) vo_still_displaying(vo) ? STATUS_DRAINING : STATUS_EOF; mpctx->delay = 0; mpctx->last_av_difference = 0; - MP_VERBOSE(mpctx, "video EOF (status=%d)\n", mpctx->video_status); + MP_DBG(mpctx, "video EOF (status=%d)\n", mpctx->video_status); return; } -- cgit v1.2.3