cmdutils: print slice threading flag in -filters.
This commit is contained in:
parent
a2abd58a09
commit
9c50e52005
1 changed files with 5 additions and 2 deletions
|
@ -1454,7 +1454,8 @@ int show_filters(void *optctx, const char *opt, const char *arg)
|
||||||
const AVFilterPad *pad;
|
const AVFilterPad *pad;
|
||||||
|
|
||||||
printf("Filters:\n"
|
printf("Filters:\n"
|
||||||
" T = Timeline support\n"
|
" T. = Timeline support\n"
|
||||||
|
" .S = Slice threading\n"
|
||||||
" A = Audio input/output\n"
|
" A = Audio input/output\n"
|
||||||
" V = Video input/output\n"
|
" V = Video input/output\n"
|
||||||
" N = Dynamic number and/or type of 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' : '|';
|
( i && (filter->flags & AVFILTER_FLAG_DYNAMIC_OUTPUTS))) ? 'N' : '|';
|
||||||
}
|
}
|
||||||
*descr_cur = 0;
|
*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);
|
filter->name, descr, filter->description);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue