1
mirror of https://github.com/mpv-player/mpv synced 2024-11-18 21:16:10 +01:00

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

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