aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2024-10-14 12:50:19 +0200
committerAnton Khirnov <anton@khirnov.net>2024-10-17 10:56:33 +0200
commit6d6bd86f2b977b415fb46bd9232290499edbb167 (patch)
tree8f1d1c8843486cd5546407b5106c81511d774347
parente79ac9312f02292566f116f656ae67948a9c5d81 (diff)
downloadffmpeg-6d6bd86f2b977b415fb46bd9232290499edbb167.tar.gz
fftools/opt_common: stop accessing a private field
Stops printing the 'C' flag in -filters output, but it carries no actionable information anyway.
-rw-r--r--fftools/opt_common.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/fftools/opt_common.c b/fftools/opt_common.c
index 021ed75272..34da2cee7d 100644
--- a/fftools/opt_common.c
+++ b/fftools/opt_common.c
@@ -808,7 +808,6 @@ int show_filters(void *optctx, const char *opt, const char *arg)
printf("Filters:\n"
" T.. = Timeline support\n"
" .S. = Slice threading\n"
- " ..C = Command support\n"
" A = Audio input/output\n"
" V = Video 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' : '|';
}
*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_SLICE_THREADS ? 'S' : '.',
- filter->process_command ? 'C' : '.',
filter->name, descr, filter->description);
}
#else