diff options
author | wm4 <wm4@nowhere> | 2015-03-17 22:33:31 +0100 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2015-03-17 22:33:31 +0100 |
commit | 37cb9a965aade4fc57fae833dd2da88d2c20c531 (patch) | |
tree | fce580dd9f7195c9e2bf0615772ba892e826529b /video/decode | |
parent | 775a02aab56c8ca01e497517dad8a7526fe0c3ce (diff) | |
download | mpv-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.
Diffstat (limited to 'video/decode')
-rw-r--r-- | video/decode/vd_lavc.c | 2 |
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"); } |