summaryrefslogtreecommitdiffstats
path: root/audio
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-05-31 22:07:36 +0200
committerwm4 <wm4@nowhere>2014-05-31 22:07:36 +0200
commit498c997474fcb68d1f2a0c3d6ee656889b8ae1cb (patch)
tree1584857ab8d6c4d41fcfae984e2a3102f1075e3f /audio
parent5567aa131b3b55867c374074c6bc3f0e7f7b3647 (diff)
downloadmpv-498c997474fcb68d1f2a0c3d6ee656889b8ae1cb.tar.bz2
mpv-498c997474fcb68d1f2a0c3d6ee656889b8ae1cb.tar.xz
player: hide audio/video codec and file format messages
None of these are very important usually. For error analysis, the plain log is useless anyway, and this information is still printed with "-v".
Diffstat (limited to 'audio')
-rw-r--r--audio/decode/dec_audio.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/audio/decode/dec_audio.c b/audio/decode/dec_audio.c
index 70476a940d..b8d83e899c 100644
--- a/audio/decode/dec_audio.c
+++ b/audio/decode/dec_audio.c
@@ -163,8 +163,7 @@ int audio_init_best_codec(struct dec_audio *d_audio, char *audio_decoders)
d_audio->decoder_desc =
talloc_asprintf(d_audio, "%s [%s:%s]", decoder->desc, decoder->family,
decoder->decoder);
- MP_INFO(d_audio, "Selected audio codec: %s\n",
- d_audio->decoder_desc);
+ MP_VERBOSE(d_audio, "Selected audio codec: %s\n", d_audio->decoder_desc);
MP_VERBOSE(d_audio, "AUDIO: %d Hz, %d ch, %s\n",
d_audio->decoded.rate, d_audio->decoded.channels.num,
af_fmt_to_str(d_audio->decoded.format));