From ce0bf5e7dd211fdf03c8091edc70c83773ade63d Mon Sep 17 00:00:00 2001 From: wm4 Date: Mon, 9 Jun 2014 00:09:14 +0200 Subject: player: hide some messages in verbose mode This started getting annoying. --- player/playloop.c | 6 +++--- 1 file 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; -- cgit v1.2.3