From ddaab3349b2826acd6ca1fa82b5f1d7d5944cd72 Mon Sep 17 00:00:00 2001 From: wm4 Date: Fri, 13 Jan 2017 18:52:07 +0100 Subject: vd_lavc: demote software decoding message to verbose log level If hardware decoding is enabled (via --hwdec anything), the player was printing an informational message that software decdoing is used. Basically, this confuses users, because they think there is a problem or such. Just disable the message, it's semi-useless anyway. This was suggested on IRC, after yet another user was asking why this message was shown (with a follow up discussion which CPUs can decode what kind of video codecs). --- video/decode/vd_lavc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/video/decode/vd_lavc.c b/video/decode/vd_lavc.c index d53513ad55..10f9723db0 100644 --- a/video/decode/vd_lavc.c +++ b/video/decode/vd_lavc.c @@ -938,7 +938,7 @@ static bool receive_frame(struct dec_video *vd, struct mp_image **out_image) MP_INFO(vd, "Using hardware decoding (%s).\n", m_opt_choice_str(mp_hwdec_names, ctx->hwdec->type)); } else { - MP_INFO(vd, "Using software decoding.\n"); + MP_VERBOSE(vd, "Using software decoding.\n"); } ctx->hwdec_notified = true; } -- cgit v1.2.3