MCPcopy Create free account
hub / github.com/byhook/ffmpeg4android / show_help_children

Function show_help_children

ffmpeg-single-cmd/src/main/cpp/cmdutils.c:206–216  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

204}
205
206void show_help_children(const AVClass *class, int flags)
207{
208 const AVClass *child = NULL;
209 if (class->option) {
210 av_opt_show2(&class, NULL, flags, 0);
211 printf("\n");
212 }
213
214 while (child = av_opt_child_class_next(class, child))
215 show_help_children(child, flags);
216}
217
218static const OptionDef *find_option(const OptionDef *po, const char *name)
219{

Callers 5

show_help_defaultFunction · 0.85
print_codecFunction · 0.85
show_help_demuxerFunction · 0.85
show_help_muxerFunction · 0.85
show_help_filterFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected