Instead use the new AVFILTER_FLAG_SUPPORT_COMMANDS for this.
Signed-off-by: Andreas Rheinhardt <[email protected]>
---
fftools/cmdutils.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fftools/cmdutils.c b/fftools/cmdutils.c
index 2c8e98982f..4b464a2f87 100644
--- a/fftools/cmdutils.c
+++ b/fftools/cmdutils.c
@@ -1721,7 +1721,7 @@ int show_filters(void *optctx, const char *opt, const
char *arg)
printf(" %c%c%c %-17s %-10s %s\n",
filter->flags & AVFILTER_FLAG_SUPPORT_TIMELINE ? 'T' : '.',
filter->flags & AVFILTER_FLAG_SLICE_THREADS ? 'S' : '.',
- filter->process_command ? 'C' : '.',
+ filter->flags & AVFILTER_FLAG_SUPPORT_COMMANDS ? 'C' : '.',
filter->name, descr, filter->description);
}
#else
--
2.30.2
_______________________________________________
ffmpeg-devel mailing list
[email protected]
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
[email protected] with subject "unsubscribe".