summaryrefslogtreecommitdiffstats
path: root/video
diff options
context:
space:
mode:
Diffstat (limited to 'video')
-rw-r--r--video/sws_utils.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/video/sws_utils.c b/video/sws_utils.c
index 9f1d0fd950..b667390eca 100644
--- a/video/sws_utils.c
+++ b/video/sws_utils.c
@@ -215,10 +215,10 @@ int mp_sws_reinit(struct mp_sws_context *ctx)
ctx->zimg->dst = *dst;
if (mp_zimg_config(ctx->zimg)) {
ctx->zimg_ok = true;
- MP_VERBOSE(ctx, "using zimg\n");
+ MP_VERBOSE(ctx, "Using zimg.\n");
goto success;
}
- MP_WARN(ctx, "falling back to swscale\n");
+ MP_WARN(ctx, "Not using zimg, falling back to swscale.\n");
}
#endif