summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2019-11-02 22:38:08 +0100
committerwm4 <wm4@nowhere>2019-11-02 22:38:08 +0100
commit7bf31c51f2bd5b0d95b12a503be47e930419cae9 (patch)
treea4ca17fb51ba6af4a4fe47918e72de27ad134cbe
parent1bb726dedce9ab0cd096bd524e869cf1899697cf (diff)
downloadmpv-7bf31c51f2bd5b0d95b12a503be47e930419cae9.tar.bz2
mpv-7bf31c51f2bd5b0d95b12a503be47e930419cae9.tar.xz
vd_lavc: mention hw decoding if decoding fails in hwdec mode
Just so the user knows. Provides some context.
-rw-r--r--video/decode/vd_lavc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/video/decode/vd_lavc.c b/video/decode/vd_lavc.c
index 014b81b3b1..58cdc01cdb 100644
--- a/video/decode/vd_lavc.c
+++ b/video/decode/vd_lavc.c
@@ -959,7 +959,8 @@ static void handle_err(struct mp_filter *vd)
vd_ffmpeg_ctx *ctx = vd->priv;
struct vd_lavc_params *opts = ctx->opts;
- MP_WARN(vd, "Error while decoding frame!\n");
+ MP_WARN(vd, "Error while decoding frame%s!\n",
+ ctx->use_hwdec ? " (hardware decoding)" : "");
if (ctx->use_hwdec) {
ctx->hwdec_fail_count += 1;