diff options
author | Paul B Mahol <onemda@gmail.com> | 2013-09-30 10:15:22 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2013-09-30 10:15:22 +0000 |
commit | f4ab723a79fd4f93318385603ec2f3de37785e08 (patch) | |
tree | 27ffd9715a78b12a78f0225c1c1309f556f7409f /cmdutils.c | |
parent | 0a0b7267b21cefe66aad9ebbe03b642121e8aa56 (diff) | |
download | ffmpeg-f4ab723a79fd4f93318385603ec2f3de37785e08.tar.gz |
cmdutils: print command support in -filters.
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'cmdutils.c')
-rw-r--r-- | cmdutils.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/cmdutils.c b/cmdutils.c index 79870cedde..aea02c0e5f 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 |