1
0
mirror of https://github.com/mpv-player/mpv synced 2025-02-18 05:37:04 +00: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"); MP_VERBOSE(ctx, "using zimg\n");
goto success; goto success;
} }
MP_VERBOSE(ctx, "falling back to swscale\n"); MP_WARN(ctx, "falling back to swscale\n");
} }
#endif #endif