From 498c997474fcb68d1f2a0c3d6ee656889b8ae1cb Mon Sep 17 00:00:00 2001 From: wm4 Date: Sat, 31 May 2014 22:07:36 +0200 Subject: 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". --- audio/decode/dec_audio.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'audio/decode/dec_audio.c') 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)); -- cgit v1.2.3