summaryrefslogtreecommitdiffstats
path: root/codec-cfg.c
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-11-15 09:09:29 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-11-15 09:09:29 +0000
commit3ebf6f0135d695289a0038ca0e46a8420e90b330 (patch)
treee57c72ba23b51a569a2df301d372d3726ff5b7a1 /codec-cfg.c
parentccc9c05e290349ed29bd44b9d5c37887ab85e7b3 (diff)
downloadmpv-3ebf6f0135d695289a0038ca0e46a8420e90b330.tar.bz2
mpv-3ebf6f0135d695289a0038ca0e46a8420e90b330.tar.xz
Reduce excessive verbosity.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13947 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'codec-cfg.c')
-rw-r--r--codec-cfg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/codec-cfg.c b/codec-cfg.c
index e53d17bca5..90a5ad2c55 100644
--- a/codec-cfg.c
+++ b/codec-cfg.c
@@ -503,10 +503,10 @@ int parse_codec_cfg(char *cfgfile)
#endif
}
- mp_msg(MSGT_CODECCFG,MSGL_INFO,MSGTR_ReadingFile, cfgfile);
+ mp_msg(MSGT_CODECCFG,MSGL_V,MSGTR_ReadingFile, cfgfile);
if ((fp = fopen(cfgfile, "r")) == NULL) {
- mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_CantOpenFileError, cfgfile, strerror(errno));
+ mp_msg(MSGT_CODECCFG,MSGL_V,MSGTR_CantOpenFileError, cfgfile, strerror(errno));
return 0;
}