summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2012-07-29 21:28:43 +0200
committerwm4 <wm4@nowhere>2012-07-30 01:45:08 +0200
commit5b9d01bd496e6143ce64b4de9a3d0340eb699301 (patch)
tree0c2775ff14cbae56e0ae5e9aba60683678a547a7
parent93de744a2bf97590eab5ae57425962f8635c483c (diff)
downloadmpv-5b9d01bd496e6143ce64b4de9a3d0340eb699301.tar.bz2
mpv-5b9d01bd496e6143ce64b4de9a3d0340eb699301.tar.xz
vd: silence output about aspect ratio
Uninteresting.
-rw-r--r--libmpcodecs/vd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmpcodecs/vd.c b/libmpcodecs/vd.c
index e756c2d53e..78748c521a 100644
--- a/libmpcodecs/vd.c
+++ b/libmpcodecs/vd.c
@@ -310,7 +310,7 @@ int mpcodecs_config_vo2(sh_video_t *sh, int w, int h,
if (abs(screen_size_x - w) >= 4 || abs(screen_size_y - h) >= 4) {
screen_size_x = w;
screen_size_y = h;
- mp_tmsg(MSGT_CPLAYER, MSGL_INFO, "Aspect ratio is %.2f:1 - "
+ mp_tmsg(MSGT_CPLAYER, MSGL_V, "Aspect ratio is %.2f:1 - "
"scaling to correct movie aspect.\n", sh->aspect);
}
} else {