summaryrefslogtreecommitdiffstats
path: root/player/video.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-12-19 21:28:55 +0100
committerwm4 <wm4@nowhere>2013-12-19 21:31:18 +0100
commit5e0c4ec3e8f17064bf6837d33e3583afbd9214e2 (patch)
treef4b4a987c0c1464255d8d9a55c69eac9965f19d9 /player/video.c
parent7a8207a3fbb93ddd2f9954f6ff1aedad043c47f1 (diff)
downloadmpv-5e0c4ec3e8f17064bf6837d33e3583afbd9214e2.tar.bz2
mpv-5e0c4ec3e8f17064bf6837d33e3583afbd9214e2.tar.xz
player: replace some overlooked mp_msgs
There are still some using IDENTIFY, and some without context in configfiles.c.
Diffstat (limited to 'player/video.c')
-rw-r--r--player/video.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/player/video.c b/player/video.c
index 7f4f7a6795..0c7d399322 100644
--- a/player/video.c
+++ b/player/video.c
@@ -89,9 +89,9 @@ static void reconfig_video(struct MPContext *mpctx,
struct mp_image_params p = d_video->vfilter->output_params;
const struct vo_driver *info = mpctx->video_out->driver;
- mp_msg(MSGT_CPLAYER, MSGL_INFO, "VO: [%s] %dx%d => %dx%d %s\n",
- info->name, p.w, p.h, p.d_w, p.d_h, vo_format_name(p.imgfmt));
- mp_msg(MSGT_CPLAYER, MSGL_V, "VO: Description: %s\n", info->description);
+ MP_INFO(mpctx, "VO: [%s] %dx%d => %dx%d %s\n",
+ info->name, p.w, p.h, p.d_w, p.d_h, vo_format_name(p.imgfmt));
+ MP_VERBOSE(mpctx, "VO: Description: %s\n", info->description);
int r = vo_reconfig(mpctx->video_out, &p, 0);
if (r < 0)