summaryrefslogtreecommitdiff
path: root/cmdutils.c
diff options
context:
space:
mode:
Diffstat (limited to 'cmdutils.c')
-rw-r--r--cmdutils.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/cmdutils.c b/cmdutils.c
index eb60ac487e..67bb66e9b5 100644
--- a/cmdutils.c
+++ b/cmdutils.c
@@ -555,6 +555,11 @@ int opt_default(void *optctx, const char *opt, const char *arg)
}
consumed = 1;
}
+#else
+ if (!consumed && !strcmp(opt, "sws_flags")) {
+ av_log(NULL, AV_LOG_WARNING, "Ignoring %s %s, due to disabled swscale\n", opt, arg);
+ consumed = 1;
+ }
#endif
#if CONFIG_SWRESAMPLE
swr_class = swr_get_class();