sws_utils: make libswscale fallback a warning

Surely a user passing --sws-allow-zimg wants to know if zimg is actually
used.
This commit is contained in:
wm4 2019-10-20 16:15:16 +02:00
parent f23e663a21
commit 3568aed164
1 changed files with 1 additions and 1 deletions

View File

@ -203,7 +203,7 @@ int mp_sws_reinit(struct mp_sws_context *ctx)
MP_VERBOSE(ctx, "using zimg\n");
goto success;
}
MP_VERBOSE(ctx, "falling back to swscale\n");
MP_WARN(ctx, "falling back to swscale\n");
}
#endif