summaryrefslogtreecommitdiffstats
path: root/video/decode/vd_lavc.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2017-01-13 18:52:07 +0100
committerwm4 <wm4@nowhere>2017-01-13 18:52:07 +0100
commitddaab3349b2826acd6ca1fa82b5f1d7d5944cd72 (patch)
tree59845af61d9ae5b05ac71e493e1e724771ed8285 /video/decode/vd_lavc.c
parente48f1f31cb8928b66834104bb492ade3eeafc701 (diff)
downloadmpv-ddaab3349b2826acd6ca1fa82b5f1d7d5944cd72.tar.bz2
mpv-ddaab3349b2826acd6ca1fa82b5f1d7d5944cd72.tar.xz
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).
Diffstat (limited to 'video/decode/vd_lavc.c')
-rw-r--r--video/decode/vd_lavc.c2
1 files changed, 1 insertions, 1 deletions
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;
}