diff options
author | Clément Bœsch <ubitux@gmail.com> | 2013-05-24 15:15:49 +0200 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2013-05-24 15:34:37 +0200 |
commit | 9c50e520054c15da935196cf2c5d9a90297ae6c8 (patch) | |
tree | 9c8d8031627dfc75b8184dbaae6ed466bf02bcd5 /cmdutils.c | |
parent | a2abd58a090216ebd2a02fa27ae3068c141b5e5e (diff) | |
download | ffmpeg-9c50e520054c15da935196cf2c5d9a90297ae6c8.tar.gz |
cmdutils: print slice threading flag in -filters.
Diffstat (limited to 'cmdutils.c')
-rw-r--r-- | cmdutils.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/cmdutils.c b/cmdutils.c index abe0fdf6c3..ffe8d77e4b 100644 --- a/cmdutils.c +++ b/cmdutils.c @@ -1454,7 +1454,8 @@ int show_filters(void *optctx, const char *opt, const char *arg) const AVFilterPad *pad; printf("Filters:\n" - " T = Timeline support\n" + " T. = Timeline support\n" + " .S = Slice threading\n" " A = Audio input/output\n" " V = Video input/output\n" " N = Dynamic number and/or type of input/output\n" @@ -1478,7 +1479,9 @@ int show_filters(void *optctx, const char *opt, const char *arg) ( i && (filter->flags & AVFILTER_FLAG_DYNAMIC_OUTPUTS))) ? 'N' : '|'; } *descr_cur = 0; - printf(" %c %-16s %-10s %s\n", filter->flags & AVFILTER_FLAG_SUPPORT_TIMELINE ? 'T' : '.', + printf(" %c%c %-16s %-10s %s\n", + filter->flags & AVFILTER_FLAG_SUPPORT_TIMELINE ? 'T' : '.', + filter->flags & AVFILTER_FLAG_SLICE_THREADS ? 'S' : '.', filter->name, descr, filter->description); } #endif |