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". --- video/decode/dec_video.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'video/decode/dec_video.c') diff --git a/video/decode/dec_video.c b/video/decode/dec_video.c index eb312edf4f..f69206ccfc 100644 --- a/video/decode/dec_video.c +++ b/video/decode/dec_video.c @@ -195,8 +195,7 @@ bool video_init_best_codec(struct dec_video *d_video, char* video_decoders) d_video->decoder_desc = talloc_asprintf(d_video, "%s [%s:%s]", decoder->desc, decoder->family, decoder->decoder); - MP_INFO(d_video, "Selected video codec: %s\n", - d_video->decoder_desc); + MP_VERBOSE(d_video, "Selected video codec: %s\n", d_video->decoder_desc); } else { MP_ERR(d_video, "Failed to initialize a video decoder for codec '%s'.\n", d_video->header->codec ? d_video->header->codec : ""); -- cgit v1.2.3