summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/vd.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2012-07-29 22:08:04 +0200
committerwm4 <wm4@nowhere>2012-07-30 01:46:04 +0200
commitcc0c0ef9b768755ab2e418e447c04605dc5312e3 (patch)
tree926044a3165183254eeea0c484e5fda6b44426e9 /libmpcodecs/vd.c
parent6d6ae638fa0a6f00c8e964be5b966546b8f77834 (diff)
downloadmpv-cc0c0ef9b768755ab2e418e447c04605dc5312e3.tar.bz2
mpv-cc0c0ef9b768755ab2e418e447c04605dc5312e3.tar.xz
libmpcodecs: silence lines reading "AUDIO:" and "VIDEO:"
Both of these are not very interesting, and redundant with the corresponding VO/AO initialization messages.
Diffstat (limited to 'libmpcodecs/vd.c')
-rw-r--r--libmpcodecs/vd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmpcodecs/vd.c b/libmpcodecs/vd.c
index 78748c521a..c01796ac78 100644
--- a/libmpcodecs/vd.c
+++ b/libmpcodecs/vd.c
@@ -125,7 +125,7 @@ int mpcodecs_config_vo2(sh_video_t *sh, int w, int h,
if (h)
sh->disp_h = h;
- mp_msg(MSGT_DECVIDEO, MSGL_INFO,
+ mp_msg(MSGT_DECVIDEO, MSGL_V,
"VIDEO: %dx%d %5.3f fps %5.1f kbps (%4.1f kB/s)\n",
sh->disp_w, sh->disp_h, sh->fps, sh->i_bps * 0.008,
sh->i_bps / 1000.0);