summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2016-01-06 19:48:55 +0100
committerwm4 <wm4@nowhere>2016-01-06 19:48:55 +0100
commitb7e179f6d3dc13d76bfdf4d5712e23328219c603 (patch)
treeb342cb10d34759367069e63e34bbc797ede2cdb4
parent3909e4cdfcb982187f351ca928c0b89172b81885 (diff)
downloadmpv-b7e179f6d3dc13d76bfdf4d5712e23328219c603.tar.bz2
mpv-b7e179f6d3dc13d76bfdf4d5712e23328219c603.tar.xz
video: fix debug message
Should not be a warning, and the message text was also very useless.
-rw-r--r--player/video.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/player/video.c b/player/video.c
index 70c12e63c0..1005694abe 100644
--- a/player/video.c
+++ b/player/video.c
@@ -1205,7 +1205,7 @@ void write_video(struct MPContext *mpctx, double endpts)
update_avsync_before_frame(mpctx);
if (!update_subtitles(mpctx, mpctx->next_frames[0]->pts)) {
- MP_WARN(mpctx, "subt wait\n");
+ MP_VERBOSE(mpctx, "Video frame delayed due waiting on subtitles.\n");
return;
}