MCPcopy Create free account
hub / github.com/FFmpeg/FFmpeg / show_help_children

Function show_help_children

fftools/cmdutils.c:140–151  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

138}
139
140void show_help_children(const AVClass *class, int flags)
141{
142 void *iter = NULL;
143 const AVClass *child;
144 if (class->option) {
145 av_opt_show2(&class, NULL, flags, 0);
146 printf("\n");
147 }
148
149 while (child = av_opt_child_class_iterate(class, &iter))
150 show_help_children(child, flags);
151}
152
153static const OptionDef *find_option(const OptionDef *po, const char *name)
154{

Callers 9

show_help_defaultFunction · 0.85
show_help_defaultFunction · 0.85
print_codecFunction · 0.85
show_help_demuxerFunction · 0.85
show_help_protocolFunction · 0.85
show_help_muxerFunction · 0.85
show_help_filterFunction · 0.85
show_help_bsfFunction · 0.85
show_help_defaultFunction · 0.85

Calls 2

av_opt_show2Function · 0.85

Tested by

no test coverage detected