X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=cmdutils.c;h=aea02c0e5f3338f7194b3a1e99999abf54fc81cb;hb=3352fdb2920feef1983738088ddbf1ba019bf40e;hp=79870cedde567541e36fd2be85767f853894d32a;hpb=f31c36e552663b11c49431745b8e75a0d3000539;p=ffmpeg diff --git a/cmdutils.c b/cmdutils.c index 79870cedde5..aea02c0e5f3 100644 --- a/cmdutils.c +++ b/cmdutils.c @@ -1481,8 +1481,9 @@ int show_filters(void *optctx, const char *opt, const char *arg) const AVFilterPad *pad; printf("Filters:\n" - " T. = Timeline support\n" - " .S = Slice threading\n" + " T.. = Timeline support\n" + " .S. = Slice threading\n" + " ..C = Commmand support\n" " A = Audio input/output\n" " V = Video input/output\n" " N = Dynamic number and/or type of input/output\n" @@ -1506,9 +1507,10 @@ int show_filters(void *optctx, const char *opt, const char *arg) ( i && (filter->flags & AVFILTER_FLAG_DYNAMIC_OUTPUTS))) ? 'N' : '|'; } *descr_cur = 0; - printf(" %c%c %-16s %-10s %s\n", + printf(" %c%c%c %-16s %-10s %s\n", filter->flags & AVFILTER_FLAG_SUPPORT_TIMELINE ? 'T' : '.', filter->flags & AVFILTER_FLAG_SLICE_THREADS ? 'S' : '.', + filter->process_command ? 'C' : '.', filter->name, descr, filter->description); } #endif