From 975e98b3fe003cb8d93d9eadc14d82e72c0f4e27 Mon Sep 17 00:00:00 2001 From: wm4 Date: Sun, 2 Nov 2014 17:34:02 +0100 Subject: player: print anamorphic size only if video is anamorphic Has been annoying me since forever. --- player/video.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'player/video.c') diff --git a/player/video.c b/player/video.c index 0a5fe521e8..f74bd4d9f5 100644 --- a/player/video.c +++ b/player/video.c @@ -761,8 +761,11 @@ void write_video(struct MPContext *mpctx, double endpts) return; const struct vo_driver *info = mpctx->video_out->driver; - 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)); + char extra[20] = {0}; + if (p.w != p.d_w || p.h != p.d_h) + snprintf(extra, sizeof(extra), " => %dx%d", p.d_w, p.d_h); + MP_INFO(mpctx, "VO: [%s] %dx%d%s %s\n", + info->name, p.w, p.h, extra, vo_format_name(p.imgfmt)); MP_VERBOSE(mpctx, "VO: Description: %s\n", info->description); int vo_r = vo_reconfig(vo, &p, 0); -- cgit v1.2.3