From 692f0519bbefbeac2004aba92c35a37c5f378eaf Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Fri, 10 Jan 2020 19:48:02 +0800 Subject: lavfi/spp: add "quality" option in runtime change path it's stranage to use option "level" in runtime change path but used "quality" in option, add "quality" in runtime change path, it's more intuitive and keep the "level" for compatibility. Reviewe-by: Michael Niedermayer Signed-off-by: Jun Zhao --- libavfilter/vf_spp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavfilter/vf_spp.c') diff --git a/libavfilter/vf_spp.c b/libavfilter/vf_spp.c index fe579cedb1..db381cdf30 100644 --- a/libavfilter/vf_spp.c +++ b/libavfilter/vf_spp.c @@ -444,7 +444,7 @@ static int process_command(AVFilterContext *ctx, const char *cmd, const char *ar { SPPContext *s = ctx->priv; - if (!strcmp(cmd, "level")) { + if (!strcmp(cmd, "level") || !strcmp(cmd, "quality")) { if (!strcmp(args, "max")) s->log2_count = MAX_LEVEL; else -- cgit v1.2.3