mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
fftools/opt_common: stop accessing a private field
Stops printing the 'C' flag in -filters output, but it carries no actionable information anyway.
This commit is contained in:
parent
e79ac9312f
commit
6d6bd86f2b
@ -808,7 +808,6 @@ int show_filters(void *optctx, const char *opt, const char *arg)
|
|||||||
printf("Filters:\n"
|
printf("Filters:\n"
|
||||||
" T.. = Timeline support\n"
|
" T.. = Timeline support\n"
|
||||||
" .S. = Slice threading\n"
|
" .S. = Slice threading\n"
|
||||||
" ..C = Command support\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"
|
||||||
@ -833,10 +832,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%c%c %-17s %-10s %s\n",
|
printf(" %c%c %-17s %-10s %s\n",
|
||||||
filter->flags & AVFILTER_FLAG_SUPPORT_TIMELINE ? 'T' : '.',
|
filter->flags & AVFILTER_FLAG_SUPPORT_TIMELINE ? 'T' : '.',
|
||||||
filter->flags & AVFILTER_FLAG_SLICE_THREADS ? 'S' : '.',
|
filter->flags & AVFILTER_FLAG_SLICE_THREADS ? 'S' : '.',
|
||||||
filter->process_command ? 'C' : '.',
|
|
||||||
filter->name, descr, filter->description);
|
filter->name, descr, filter->description);
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
|
Loading…
Reference in New Issue
Block a user