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

Function show_codec_opts

tools/enum_options.c:114–129  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

112}
113
114static void show_codec_opts(void)
115{
116 void *iter = NULL;
117 const AVCodec *c;
118
119 printf("@section Generic codec AVOptions\n");
120 show_opts(avcodec_get_class());
121
122 printf("@section Codec-specific AVOptions\n");
123 while ((c = av_codec_iterate(&iter))) {
124 if (!c->priv_class)
125 continue;
126 printf("@subsection %s AVOptions\n", c->priv_class->class_name);
127 show_opts(c->priv_class);
128 }
129}
130
131int main(int argc, char **argv)
132{

Callers 1

mainFunction · 0.70

Calls 3

avcodec_get_classFunction · 0.85
av_codec_iterateFunction · 0.85
show_optsFunction · 0.70

Tested by

no test coverage detected