summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-03-17 22:33:31 +0100
committerwm4 <wm4@nowhere>2015-03-17 22:33:31 +0100
commit37cb9a965aade4fc57fae833dd2da88d2c20c531 (patch)
treefce580dd9f7195c9e2bf0615772ba892e826529b
parent775a02aab56c8ca01e497517dad8a7526fe0c3ce (diff)
downloadmpv-37cb9a965aade4fc57fae833dd2da88d2c20c531.tar.bz2
mpv-37cb9a965aade4fc57fae833dd2da88d2c20c531.tar.xz
vd_lavc: change message about using hardware decoding
This was requested. Apparently some find the old mesage confusing.
-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 4bad7c51d9..eea8a5709b 100644
--- a/video/decode/vd_lavc.c
+++ b/video/decode/vd_lavc.c
@@ -302,7 +302,7 @@ static int init(struct dec_video *vd, const char *decoder)
if (hwdec) {
ctx->software_fallback_decoder = talloc_strdup(ctx, decoder);
- MP_INFO(vd, "Trying to use hardware decoding.\n");
+ MP_INFO(vd, "Using hardware decoding.\n");
} else if (vd->opts->hwdec_api != HWDEC_NONE) {
MP_INFO(vd, "Using software decoding.\n");
}