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

Function show_opts

tools/enum_options.c:78–87  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

76}
77
78static void show_opts(const AVClass *class)
79{
80 const AVOption *o = NULL;
81
82 printf("@table @option\n");
83 while ((o = av_opt_next(&class, o)))
84 if (o->type != AV_OPT_TYPE_CONST)
85 print_option(class, o);
86 printf("@end table\n");
87}
88
89static void show_format_opts(void)
90{

Callers 2

show_format_optsFunction · 0.70
show_codec_optsFunction · 0.70

Calls 2

av_opt_nextFunction · 0.85
print_optionFunction · 0.70

Tested by

no test coverage detected