summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-06-09 00:09:14 +0200
committerwm4 <wm4@nowhere>2014-06-09 01:21:13 +0200
commitce0bf5e7dd211fdf03c8091edc70c83773ade63d (patch)
tree8f78649ab677138969cccc4e6dd0fab96e3f5717
parente1d846263ae65bc22b82b4011bcaaaa57645357d (diff)
downloadmpv-ce0bf5e7dd211fdf03c8091edc70c83773ade63d.tar.bz2
mpv-ce0bf5e7dd211fdf03c8091edc70c83773ade63d.tar.xz
player: hide some messages in verbose mode
This started getting annoying.
-rw-r--r--player/playloop.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/player/playloop.c b/player/playloop.c
index 964f112b6d..c06c40bd73 100644
--- a/player/playloop.c
+++ b/player/playloop.c
@@ -1000,7 +1000,7 @@ void run_playloop(struct MPContext *mpctx)
double frame_time = 0;
int r = update_video(mpctx, endpts, !still_playing, &frame_time);
- MP_VERBOSE(mpctx, "update_video: %d\n", r);
+ MP_TRACE(mpctx, "update_video: %d\n", r);
if (r < 0) {
MP_FATAL(mpctx, "Could not initialize video chain.\n");
int uninit = INITIALIZED_VCODEC;
@@ -1023,14 +1023,14 @@ void run_playloop(struct MPContext *mpctx)
}
if (mpctx->playing_last_frame) {
r = 1; // don't stop playback yet
- MP_VERBOSE(mpctx, "still showing last frame\n");
+ MP_TRACE(mpctx, "still showing last frame\n");
}
}
video_left = r > 0;
if (r == 2)
- MP_VERBOSE(mpctx, "frametime=%5.3f\n", frame_time);
+ MP_TRACE(mpctx, "frametime=%5.3f\n", frame_time);
if (r == 2 && !mpctx->restart_playback) {
mpctx->time_frame += frame_time / opts->playback_speed;